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/clear/theme.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 '')
-rw-r--r-- | themes/clear/theme.css | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/themes/clear/theme.css b/themes/clear/theme.css index 966a7344c..838f33980 100644 --- a/themes/clear/theme.css +++ b/themes/clear/theme.css @@ -27,6 +27,7 @@ H2, #menubar DT, #imageHeaderBar, #imageToolBar A:hover { border: 3px solid #d3d3d3; } +/*I think this rule is never used*/ .content UL.thumbnail IMG { border: 1px solid #a0a0a0; } @@ -36,13 +37,13 @@ FIELDSET, INPUT, SELECT, TEXTAREA, border: 1px solid gray; } -UL.thumbnails SPAN.wrap2 { +.thumbnails .wrap2 { border: 1px solid #aaaaaa; /* thumbnails border color and style */ } -UL.thumbnails SPAN.wrap2:hover, -.content UL.thumbnailCategories .thumbnailCategory:hover, -.content UL.thumbnailCategories .thumbnailCategory:hover A { +.thumbnails .wrap2:hover, +.content .thumbnailCategories .thumbnailCategory:hover, +.content .thumbnailCategories .thumbnailCategory:hover A { background-color: #faebd7; border-color: yellow; /* thumbnails border color when mouse cursor is over it */ color: black; |