diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-10-12 01:34:18 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-10-12 01:34:18 +0000 |
commit | 2a8cbedade6d2d7e7e71e5dbb8c562a84cfe6c80 (patch) | |
tree | 1c4b2060e96fcf4a92f0ab52dbe3894d3797bebd /templates/default.css | |
parent | 80d226853c000229cdcd3690885aea2116f8e2cc (diff) | |
download | ampache-2a8cbedade6d2d7e7e71e5dbb8c562a84cfe6c80.tar.gz ampache-2a8cbedade6d2d7e7e71e5dbb8c562a84cfe6c80.tar.bz2 ampache-2a8cbedade6d2d7e7e71e5dbb8c562a84cfe6c80.zip |
new rating hotness, has some bugs will continue to hash them out
Diffstat (limited to 'templates/default.css')
-rw-r--r-- | templates/default.css | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/templates/default.css b/templates/default.css index 12506f70..9594a02d 100644 --- a/templates/default.css +++ b/templates/default.css @@ -445,7 +445,7 @@ margin-right:5em; margin:0px; float: right; } -.star-rating li a{ +.star-rating li span{ display:block; width:16px; height: 15px; @@ -455,51 +455,51 @@ margin-right:5em; position: absolute; padding: 0px; } -.star-rating li a:hover{ +.star-rating li span:hover{ background: url(../images/ratings/star_rating.gif) left center; z-index: 2; left: 0px; } -li.zero-stars a:hover { +li.zero-stars span:hover { background: url(../images/ratings/x.gif); height: 15px; left: 80px; display: block; } -a.zero-stars { +span.zero-stars { background: url(../images/ratings/x_off.gif); height: 15px; left: 80px; display: block; } -a.one-stars{ +span.one-stars{ left: 0px; } -a.one-stars:hover{ +span.one-stars:hover{ width:16px; } -a.two-stars{ +span.two-stars{ left:16px; } -a.two-stars:hover{ +span.two-stars:hover{ width: 32px; } -a.three-stars{ +span.three-stars{ left: 32px; } -a.three-stars:hover{ +span.three-stars:hover{ width: 48px; } -a.four-stars{ +span.four-stars{ left: 48px; } -a.four-stars:hover{ +span.four-stars:hover{ width: 64px; } -a.five-stars{ +span.five-stars{ left: 64px; } -a.five-stars:hover{ +span.five-stars:hover{ width: 80px; } li.current-rating{ |