On line 18 in printlinks.css, there is the following line:

img.print-icon-margin {
   margin-right:4px;
}

This is a minor change, but I would recommend instead to make it as follows:

img.print-icon-margin {
   padding-right:4px;
}

The issue is due to how Internet Explorer renders margins versus padding. If a developer attempts to style the icons as a button, it will always be displayed in IE as broken (see attached pictures). However if padding is used, this problem doesn't occur.

The change from "margin" to "padding" has no effect in Firefox, Safari, or Opera.

CommentFileSizeAuthor
correct-links.png2.43 KBsgdev
broken-links.png2.68 KBsgdev

Comments

jcnventura’s picture

Status: Active » Needs review

Thanks,

I will take a look at it soon.

João

jcnventura’s picture

Status: Needs review » Fixed

Just committed your code to CVS.

João

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.