From bc37696f08597aa802ad1f0c189ad87debaaab74 Mon Sep 17 00:00:00 2001 From: Repellent Date: Fri, 10 Jun 2016 22:59:29 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20=D1=84=D0=B0=D0=B9=D0=BB=20=D0=B2=20=D1=80=D0=B5=D0=BF?= =?UTF-8?q?=D0=BE=D0=B7=D0=B8=D1=82=D0=BE=D1=80=D0=B8=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- rating/css/rating.css | 68 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 rating/css/rating.css diff --git a/rating/css/rating.css b/rating/css/rating.css new file mode 100644 index 0000000..999ecd9 --- /dev/null +++ b/rating/css/rating.css @@ -0,0 +1,68 @@ +.rating { + position: relative; + display: block; + float: left; + height: 16px; +} + +.rating_name, .rating_total, .rating_summary { + position: relative; + float: left; + height: 16px; + line-height: 16px; +} + +.rating_total, .rating_summary { + margin: 0 0 0 5px; + font-size: 12px; +} + +.rating_vote { + position: relative; + float: left; + margin: 0; + height: 16px; + background: url(../images/skin.png) left top repeat-x; + cursor: pointer; +} + +.rating_not_vote { + cursor: default; +} + +.rating_hover, .rating_percent { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 0; + background: url(../images/skin.png) repeat-x; +} + +.rating_percent { + background-position: left center; +} + +.rating_hover { + background-position: left bottom; +} + +.rating_mark { + position: relative; + float: left; + width: 18px; + height: 16px; +} + +.rating_status { + position: absolute; + top: 16px; + right: 0; + left: 0; + display: none; + height: 16px; + color: #aaa; + text-align: left; + font-size: 11px; + line-height: 20px; +} \ No newline at end of file