diff options
author | rvelices <rv-github@modusoptimus.com> | 2006-12-15 04:57:45 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2006-12-15 04:57:45 +0000 |
commit | eae01904a5369eb6422bd118c1519914aee9efd0 (patch) | |
tree | 41b462de68bf8d31a18eb7a81d64aa8863cdd639 /template/yoga/picture.css | |
parent | c012c22df671dce2f5d29adfda6063baf5401a8f (diff) |
feature 603: rating buttons presented with stars (full Javascript
on compatible browsers, otherwise default presentation)
git-svn-id: http://piwigo.org/svn/trunk@1657 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/picture.css')
-rw-r--r-- | template/yoga/picture.css | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/template/yoga/picture.css b/template/yoga/picture.css index 153a98b41..692aefcba 100644 --- a/template/yoga/picture.css +++ b/template/yoga/picture.css @@ -95,12 +95,12 @@ TABLE.infoTable TD.value UL { list-style-type: square; } -.rateButton, .rateButtonSelected { +.rateButton, .rateButtonSelected, .rateButtonStarFull, .rateButtonStarEmpty { padding:0; border:0; } -.rateButton { +.rateButton, .rateButtonStarFull, .rateButtonStarEmpty { cursor: pointer; } @@ -109,6 +109,16 @@ TABLE.infoTable TD.value UL { font-size:120%; } +.rateButtonStarFull { + background: url('icon/star_f.gif') no-repeat center; + width: 16px; +} + +.rateButtonStarEmpty { + background: url('icon/star_e.gif') no-repeat center; + width: 16px; +} + #comments { text-align: left; } |