amis/scss/components/form/_rating.scss

35 lines
507 B
SCSS
Raw Normal View History

2019-04-30 11:11:25 +08:00
.#{$ns}Rating {
2019-12-06 09:58:08 +08:00
position: relative;
overflow: hidden;
display: block;
float: left;
font-size: px2rem(24px);
color: $dark;
cursor: pointer;
2019-04-30 11:11:25 +08:00
2019-12-06 09:58:08 +08:00
&.is-active {
color: $info;
}
2019-04-30 11:11:25 +08:00
2019-12-06 09:58:08 +08:00
&.is-disabled {
cursor: not-allowed;
}
2019-04-30 11:11:25 +08:00
2019-12-06 09:58:08 +08:00
&-half:before {
position: absolute;
overflow: hidden;
display: block;
z-index: 1;
top: 0;
left: 0;
width: 50%;
content: attr(data-forhalf);
color: $info;
}
2019-04-30 11:11:25 +08:00
}
.#{$ns}RatingControl {
2019-12-06 09:58:08 +08:00
position: relative;
overflow: hidden;
2019-04-30 11:11:25 +08:00
}