diff options
author | rvelices <rv-github@modusoptimus.com> | 2010-12-26 06:21:26 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2010-12-26 06:21:26 +0000 |
commit | ad09493926b6067f316ffdbf2220fb17be2308da (patch) | |
tree | b0caaf4409bf03820e28d20facd901656d5c8f2f /themes/default/fix-ie5-ie6.css | |
parent | 61d07ecd8e6ca35b0c852540df97589ba8c27530 (diff) |
simplify inefficient CSS rules according to pagespeed
git-svn-id: http://piwigo.org/svn/trunk@8306 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/default/fix-ie5-ie6.css')
-rw-r--r-- | themes/default/fix-ie5-ie6.css | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/themes/default/fix-ie5-ie6.css b/themes/default/fix-ie5-ie6.css index bd0862a71..f73bb4ad8 100644 --- a/themes/default/fix-ie5-ie6.css +++ b/themes/default/fix-ie5-ie6.css @@ -9,20 +9,20 @@ } /* fix IE with another layout for thumbnails */ -UL.thumbnails SPAN.wrap2 { +.thumbnails .wrap2 { display: block; position: relative; text-align: left; } -UL.thumbnails SPAN.wrap2 A, -UL.thumbnails SPAN.wrap2 SPAN { +.thumbnails .wrap2 A, +.thumbnails .wrap2 SPAN { overflow: visible; position: absolute; top: 50%; text-align: center; } -UL.thumbnails IMG.thumbnail { +.thumbnails IMG.thumbnail { position: relative; top: -50%; /*\*//*/ @@ -39,7 +39,7 @@ H1, #theHeader { } /* fix category thumbnails on main page */ -.content UL.thumbnailCategories { +.content .thumbnailCategories { width: 99%; /* buggy IE box model */ } |