123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- /*!
- * @copyright © Kartik Visweswaran, Krajee.com, 2014
- * @version 2.5.0
- *
- * A simple yet powerful JQuery star rating plugin that allows rendering
- * fractional star ratings and supports Right to Left (RTL) input.
- *
- * For more JQuery/Bootstrap plugins and demos visit http://plugins.krajee.com
- * For more Yii related demos visit http://demos.krajee.com
- */
- /*
- * Stars
- */
- .rating-gly {
- font-family: 'Glyphicons Halflings';
- }
- .rating-gly-star {
- font-family: 'Glyphicons Halflings';
- padding-left: 2px;
- }
- .rating-gly-star .rating-stars:before {
- padding-left: 2px;
- }
- .rating-lg .rating-gly-star, .rating-lg .rating-gly-star .rating-stars:before {
- padding-left: 4px;
- }
- .rating-xl .rating-gly-star, .rating-xl .rating-gly-star .rating-stars:before {
- padding-left: 2px;
- }
- .rating-active {
- cursor: default;
- }
- .rating-disabled {
- cursor: not-allowed;
- }
- .rating-uni {
- font-size: 1.2em;
- margin-top: -5px;
- }
- .rating-container {
- position: relative;
- vertical-align: middle;
- display: inline-block;
- color: #e3e3e3;
- overflow: hidden;
- }
- .rating-container:before {
- content: attr(data-content);
- }
- .rating-container .rating-stars {
- position: absolute;
- left: 0;
- top: 0;
- white-space: nowrap;
- overflow: hidden;
- color: #fde16d;
- transition: all 0.25s ease-out;
- -o-transition: all 0.25s ease-out;
- -moz-transition: all 0.25s ease-out;
- -webkit-transition: all 0.25s ease-out;
- }
- .rating-container .rating-stars:before {
- content: attr(data-content);
- text-shadow: 0 0 1px rgba(0, 0, 0, 0.7);
- }
- .rating-container-rtl {
- position: relative;
- vertical-align: middle;
- display: inline-block;
- overflow: hidden;
- color: #fde16d;
- }
- .rating-container-rtl:before {
- content: attr(data-content);
- text-shadow: 0 0 1px rgba(0, 0, 0, 0.7);
- }
- .rating-container-rtl .rating-stars {
- position: absolute;
- left: 0;
- top: 0;
- white-space: nowrap;
- overflow: hidden;
- color: #e3e3e3;
- transition: all 0.25s ease-out;
- -o-transition: all 0.25s ease-out;
- -moz-transition: all 0.25s ease-out;
- -webkit-transition: all 0.25s ease-out;
- }
- .rating-container-rtl .rating-stars:before {
- content: attr(data-content);
- }
- /**
- * Rating sizes
- */
- .rating-xl {
- font-size: 4.89em;
- }
- .rating-lg {
- font-size: 3.91em;
- }
- .rating-md {
- font-size: 3.13em;
- }
- .rating-sm {
- font-size: 2.5em;
- }
- .rating-xs {
- font-size: 2em;
- }
- /**
- * Clear rating button
- */
- .star-rating .clear-rating, .star-rating-rtl .clear-rating {
- color: #aaa;
- cursor: not-allowed;
- display: inline-block;
- vertical-align: middle;
- font-size: 60%;
- }
- .clear-rating-active {
- cursor: pointer !important;
- }
- .clear-rating-active:hover {
- color: #843534;
- }
- .star-rating .clear-rating {
- padding-right: 5px;
- }
- /**
- * Caption
- */
- .star-rating .caption, .star-rating-rtl .caption {
- color: #999;
- display: inline-block;
- vertical-align: middle;
- font-size: 55%;
- }
- .star-rating .caption {
- padding-left: 5px;
- }
- .star-rating-rtl .caption {
- padding-right: 5px;
- }
|