diff options
author | rvelices <rv-github@modusoptimus.com> | 2010-12-23 20:47:33 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2010-12-23 20:47:33 +0000 |
commit | a79f593e1369eba7de9c1bdd84e272fd9613e4dd (patch) | |
tree | 637458bbf03d9b7d745bbe54f1367b030529e202 /themes | |
parent | 7d7544476103fe66b65ba544452280c2bf6de0e7 (diff) |
css sprites attempt to fix ie6 display
git-svn-id: http://piwigo.org/svn/trunk@8264 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes')
-rw-r--r-- | themes/default/fix-ie5-ie6.css | 4 | ||||
-rw-r--r-- | themes/default/iconset.css | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/themes/default/fix-ie5-ie6.css b/themes/default/fix-ie5-ie6.css index 305de404d..55c3e3444 100644 --- a/themes/default/fix-ie5-ie6.css +++ b/themes/default/fix-ie5-ie6.css @@ -48,3 +48,7 @@ H1, #theHeader { FORM#quickconnect FIELDSET { width: 99%; /* correct an ugly 1 or 2 px misalignement with IE */ } + +.pwg-icon { + display: inline; +} diff --git a/themes/default/iconset.css b/themes/default/iconset.css index 9e8c9043e..b0452256e 100644 --- a/themes/default/iconset.css +++ b/themes/default/iconset.css @@ -1,6 +1,5 @@ .pwg-icon { - display: block; /*IE6*/ - display: inline-block; /*IE6 does not get it*/ + display: inline-block; /*IE6 does not get this correctly*/ text-indent: -9999px; overflow: hidden; background-repeat: no-repeat; width: 26px; height: 26px; background-image: url(s26/outline_808080.png); } |