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/Sylvia/theme.css | |
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 '')
-rw-r--r-- | themes/Sylvia/theme.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/themes/Sylvia/theme.css b/themes/Sylvia/theme.css index 3e2708c1d..532b3357c 100644 --- a/themes/Sylvia/theme.css +++ b/themes/Sylvia/theme.css @@ -7,7 +7,7 @@ #comments .thumbnailCategories hr {display:none;} #comments form.filter input[type="submit"] { margin-top:1.8em; } /* Sylvia Theme is close to the Roma Admin theme */ -BODY, H1, H3, DT, INPUT.rateButtonSelected, H2, #menubar DT { +BODY, H1, H3, DT, .rateButtonSelected, H2, #menubar DT { color:#666; } #imageHeaderBar, #imageToolBar A:hover { @@ -175,10 +175,10 @@ BODY { min-height:466px; } -.content { +#theCategoryPage .content { border: 1px solid #000; border-top: 0; - margin:21px 7px 0 290px; + margin:21px 7px 0 290px !important; padding-top:7px; } .content h2 { @@ -292,11 +292,11 @@ input[type="radio"], input[type="checkbox"], input[type="button"].rateButtonStar background-color:#444; color:#999; } -.content UL.thumbnails SPAN.wrap2 { +UL.thumbnails SPAN.wrap2 { border: 1px solid #666; /* thumbnails border color and style */ border-radius: 4px 4px; /* round corners with CSS3 compliant browsers */ } -.content UL.thumbnails SPAN.wrap2:hover { +UL.thumbnails SPAN.wrap2:hover { color:#666; background-color:#111; border:1px solid #ff3363; /* thumbnails border color when mouse cursor is over it */ @@ -315,7 +315,7 @@ input[type="radio"], input[type="checkbox"], input[type="button"].rateButtonStar .calItemEmpty, td.calDayCellEmpty, td.calDayCellFull { border:1px solid #666; } -A, INPUT.rateButton { +A, .rateButton { color:#f70; border-width: 0; } |