This images come from the following block in baseStyles.css:
/*
* 4. STYLIZED LINKS
* includes icon to represent the type of link
*/
/*external link*/
a.external {
background: url(../images/img-link-external.png) no-repeat right top;
padding-right: 1em;
}
/*links to ical data*/
/*see 'data-ical' in resources*/
a.ical {
background: url(../images/img-link-ical.png) no-repeat right top;
padding-right: 1em;
}
a[href^="mailto:"] {
background: url(../images/img-link-email.png) no-repeat right top;
padding-right: 1em;
}
a[href^="tel:"] {
background: url(../images/img-link-tel.png) no-repeat right top;
padding-right: 1em;
}
a[href^="sms:"] {
background: url(../images/img-link-sms.png) no-repeat right top;
padding-right: 1em;
}
To disable effect of this definitions, add the following lines to css/custom.css (hope you upgraded to
recent 1.0RC4):
a.external, a.ical, a[href^="mailto:"], a[href^="tel:"], a[href^="sms:"] {
background: none;
padding-right: 0;
}