Closed (fixed)
Project:
Printer, email and PDF versions
Version:
5.x-4.3
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
26 Feb 2009 at 07:56 UTC
Updated:
19 Mar 2009 at 01:00 UTC
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.
| Comment | File | Size | Author |
|---|---|---|---|
| correct-links.png | 2.43 KB | sgdev | |
| broken-links.png | 2.68 KB | sgdev |
Comments
Comment #1
jcnventuraThanks,
I will take a look at it soon.
João
Comment #2
jcnventuraJust committed your code to CVS.
João