diff options
author | rvelices <rv-github@modusoptimus.com> | 2010-11-24 20:42:56 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2010-11-24 20:42:56 +0000 |
commit | c3df7f2705140e3830438db7a0dc24eaa1b5cf28 (patch) | |
tree | d4bbd180a0811dfca10b4cb37051a868088f5986 /themes/dark | |
parent | 73b83574b99d37f1718d57bf4290d51333655b27 (diff) |
css rules simplification
- merged rules
- remove overly qualified inefficient selectors
etc...
git-svn-id: http://piwigo.org/svn/trunk@7869 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/dark')
-rw-r--r-- | themes/dark/theme.css | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/themes/dark/theme.css b/themes/dark/theme.css index 49ba57ce9..e65b26264 100644 --- a/themes/dark/theme.css +++ b/themes/dark/theme.css @@ -1,7 +1,7 @@ /* text color */ BODY, H1, H3, -INPUT.rateButtonSelected /* <= why IE doesn't inherit this ? */ { +.rateButtonSelected /* <= why IE doesn't inherit this ? */ { color:#d0d0d0; } @@ -51,11 +51,11 @@ FIELDSET, INPUT, SELECT, TEXTAREA, border: 1px solid gray; } -.content UL.thumbnails SPAN.wrap2 { +UL.thumbnails SPAN.wrap2 { border: 1px solid #aaaaaa; /* thumbnails border color and style */ } -.content UL.thumbnails SPAN.wrap2:hover, +UL.thumbnails SPAN.wrap2:hover, .content UL.thumbnailCategories DIV.thumbnailCategory:hover, .content UL.thumbnailCategories DIV.thumbnailCategory:hover A { background-color: #faebd7; @@ -65,9 +65,9 @@ FIELDSET, INPUT, SELECT, TEXTAREA, /* links */ -A, INPUT.rateButton { +A, .rateButton { color: #fff; - border: none; + border: 0; } A:hover { |