diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-06 04:22:19 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-08-06 04:22:19 +0000 |
commit | fe077220bf08ac7ad466e6fdfe88197c6d4ed56e (patch) | |
tree | 1e8d8eab876246fc57a1e6c414fe763570690bf6 /themes | |
parent | add90bc902ce762626fe72d408f42d705d3f9de7 (diff) | |
download | ampache-fe077220bf08ac7ad466e6fdfe88197c6d4ed56e.tar.gz ampache-fe077220bf08ac7ad466e6fdfe88197c6d4ed56e.tar.bz2 ampache-fe077220bf08ac7ad466e6fdfe88197c6d4ed56e.zip |
broke a ton of stuff, but added some hotness... yes that is an excuse
Diffstat (limited to 'themes')
-rw-r--r-- | themes/classic/templates/default.css | 79 |
1 files changed, 43 insertions, 36 deletions
diff --git a/themes/classic/templates/default.css b/themes/classic/templates/default.css index 6fd6c4c6..f7f0ffb0 100644 --- a/themes/classic/templates/default.css +++ b/themes/classic/templates/default.css @@ -353,6 +353,7 @@ h3#content_title span { .star-rating li{ float: right; } + li.current-rating{ display: block; position: absolute; @@ -398,13 +399,43 @@ span.four-stars:hover { width: 64px; } span.five-stars { left: 64px; } span.five-stars:hover { width: 80px; } +/************************************************/ +/* Styles for the static star ratings */ +/************************************************/ +.static-star-rating li span:hover { + /* Kill the mouseovers */ +} +.static-star-rating li span{ + position: absolute; + display:block; + width:16px; + height: 15px; + text-decoration: none; + text-indent: -9000px; + z-index: 20; +} +.static-star-rating li { + float: right; +} +.static-star-rating { + position: relative; + list-style:none; + width: 80px; + height: 15px; + background: url(../../../images/ratings/star_rating.gif) top left repeat-x; +} /************************************************/ /* Box Related Styles */ /************************************************/ .box { background: #f7f7f7; + clear:both; } +.info-box { + background: #f7f7f7; + float:left; +} .box-title { border-bottom: solid 1px #000; font-size: 1.05em; @@ -420,7 +451,7 @@ span.five-stars:hover { width: 80px; } height:16px; } .box-left-bottom { - background: url(../images/bottomleft.gif) no-repeat; + background: url(../images/bottomleft.gif) no-repeat; height:18px; } .box-left { @@ -477,41 +508,6 @@ span.five-stars:hover { width: 80px; } /************************************************/ -/* Tabs (for preferences) */ -/************************************************/ -#tablist { - padding: 3px 0; - margin: 12px 0 0 0; - font: bold 12px Verdana, sans-serif; -} -#tablist li { - list-style: none; - display: inline; -} -#tablist li a { - padding: 3px 0.5em; - margin-left: 3px; - border: 1px solid #ccc; - border-bottom: none; - background: #ddd; - text-decoration: none; -} -#tablist li a:link { color: #222; } -#tablist li a:visited { color: #000; } -#tablist li a:hover { - color: #000; - background: #bbb; - border-color: #000; -} -#tablist li a#current { - color: #000; - background: #bbb; - border-color: #000; - border-bottom: 1px solid #000; -} - - -/************************************************/ /* Styles for Header */ /*(for ampache admin : installation, update...) */ /************************************************/ @@ -623,6 +619,17 @@ td.user_disabled { /************************************************/ +/* Additional Information Boxes */ +/************************************************/ +#information_actions { + margin-left:5px; +} +#additional_information { + float:left; +} + + +/************************************************/ /* Misc */ /************************************************/ .text-box, .confirmation-box { |