react-rater
Version:
A star rater in react.js
24 lines (22 loc) • 518 B
CSS
.react-rater {
display: inline-block;
line-height: normal; }
.react-rater > * {
display: inline-block; }
.react-rater-star {
cursor: pointer;
color: #ccc;
position: relative; }
.react-rater-star.will-be-active {
color: #666; }
.react-rater-star.is-active {
color: #000; }
.react-rater-star.is-active-half:before {
color: #000;
content: '\2605';
position: absolute;
left: 0;
width: 50%;
overflow: hidden; }
.react-rater-star.is-disabled {
cursor: default; }