mirror of
https://gitee.com/baidu/amis.git
synced 2024-12-01 03:18:16 +08:00
35 lines
507 B
SCSS
35 lines
507 B
SCSS
.#{$ns}Rating {
|
|
position: relative;
|
|
overflow: hidden;
|
|
display: block;
|
|
float: left;
|
|
font-size: px2rem(24px);
|
|
color: $dark;
|
|
cursor: pointer;
|
|
|
|
&.is-active {
|
|
color: $info;
|
|
}
|
|
|
|
&.is-disabled {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
&-half:before {
|
|
position: absolute;
|
|
overflow: hidden;
|
|
display: block;
|
|
z-index: 1;
|
|
top: 0;
|
|
left: 0;
|
|
width: 50%;
|
|
content: attr(data-forhalf);
|
|
color: $info;
|
|
}
|
|
}
|
|
|
|
.#{$ns}RatingControl {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|