diff options
author | pb1dft <pb1dft@ampache> | 2007-01-07 22:53:35 +0000 |
---|---|---|
committer | pb1dft <pb1dft@ampache> | 2007-01-07 22:53:35 +0000 |
commit | 5f84a669c4ab6b1f16df6eaf52a85ad6f221f6e8 (patch) | |
tree | 4dc4ff95ee5cdabb305d402a42169dbbdaa29a90 /contrib/themes | |
parent | b6cfe134badb2d4393e9081b13b2dfca011ed736 (diff) | |
download | ampache-5f84a669c4ab6b1f16df6eaf52a85ad6f221f6e8.tar.gz ampache-5f84a669c4ab6b1f16df6eaf52a85ad6f221f6e8.tar.bz2 ampache-5f84a669c4ab6b1f16df6eaf52a85ad6f221f6e8.zip |
modified css Scheme
Diffstat (limited to 'contrib/themes')
-rw-r--r-- | contrib/themes/INHOLLAND/templates/default.css | 83 | ||||
-rw-r--r-- | contrib/themes/INHOLLAND/theme.cfg.php | 2 |
2 files changed, 83 insertions, 2 deletions
diff --git a/contrib/themes/INHOLLAND/templates/default.css b/contrib/themes/INHOLLAND/templates/default.css index 523303f0..3170b720 100644 --- a/contrib/themes/INHOLLAND/templates/default.css +++ b/contrib/themes/INHOLLAND/templates/default.css @@ -225,7 +225,7 @@ body{ position: absolute; clear:both; float: left; - top: 150px; + top: 160px; margin-left:15px; /* float:left; use for horizontal menu; comment out otherwise */ /* background:#fff url("../themes/classic/images/bg_content.gif") repeat-y right top; */ @@ -633,3 +633,84 @@ td.user_disabled { border:0px; background-color: gray; } +/* styles for the star ratings */ +.star-rating{ + list-style:none; + margin: 0px; + padding:0px; + width: 80px; + height: 15px; + position: relative; + background: url(../../../images/ratings/star_rating.gif) top left repeat-x; +} +.star-rating li{ + padding:0px; + margin:0px; + float: right; +} +.star-rating li span{ + display:block; + width:16px; + height: 15px; + text-decoration: none; + text-indent: -9000px; + z-index: 20; + position: absolute; + padding: 0px; +} +.star-rating li span:hover{ + background: url(../../../images/ratings/star_rating.gif) left center; + z-index: 2; + left: 0px; +} +li.zero-stars span:hover { + background: url(../../../images/ratings/x.gif); + height: 15px; + left: 80px; + display: block; +} +span.zero-stars { + background: url(../../../images/ratings/x_off.gif); + height: 15px; + left: 80px; + display: block; +} +span.one-stars{ + left: 0px; +} +span.one-stars:hover{ + width:16px; +} +span.two-stars{ + left:16px; +} +span.two-stars:hover{ + width: 32px; +} +span.three-stars{ + left: 32px; +} +span.three-stars:hover{ + width: 48px; +} +span.four-stars{ + left: 48px; +} +span.four-stars:hover{ + width: 64px; +} +span.five-stars{ + left: 64px; +} +span.five-stars:hover{ + width: 80px; +} +li.current-rating{ + background: url(../../../images/ratings/star_rating.gif) left bottom; + position: absolute; + height: 15px; + display: block; + text-indent: -9000px; + z-index: 1; +} + diff --git a/contrib/themes/INHOLLAND/theme.cfg.php b/contrib/themes/INHOLLAND/theme.cfg.php index d4c8015d..be10c105 100644 --- a/contrib/themes/INHOLLAND/theme.cfg.php +++ b/contrib/themes/INHOLLAND/theme.cfg.php @@ -28,7 +28,7 @@ maintainer = "Terence Theijn <terence.theijn@gmail.com>" # Version # This is the revision for this theme, It's up to the maintainer # or author to decide how they want to format this -version = "1.0a" +version = "1.1" # Orientation # This was added as of 3.3.2-Alpha4, this tells Ampache if this theme |