mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
6936599aef
* rename .stylelintrc to .stylelintrc.json for explicit file type * add new npm script lint-fix:style * fix pseudo-element with double colon * function name should be lower except ignored functions * support stylelint declaration-block-no-ignored-properties rule * support sorted CSS properties order for readability and consistency * autofix order of all styles by lint-fix:style script * remove double slash comments after selector * replace .stylelintignore with ignoreFiles in .stylelintrc.json
82 lines
1.3 KiB
Plaintext
82 lines
1.3 KiB
Plaintext
@import '../../style/themes/default';
|
|
@import '../../style/mixins/index';
|
|
|
|
@rate-prefix-cls: ~'@{ant-prefix}-rate';
|
|
|
|
.@{rate-prefix-cls} {
|
|
.reset-component;
|
|
display: inline-block;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: @rate-star-color;
|
|
font-size: 20px;
|
|
line-height: unset;
|
|
list-style: none;
|
|
outline: none;
|
|
|
|
&-disabled &-star {
|
|
cursor: default;
|
|
&:hover {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
&-star {
|
|
position: relative;
|
|
display: inline-block;
|
|
margin: 0;
|
|
margin-right: 8px;
|
|
padding: 0;
|
|
color: inherit;
|
|
cursor: pointer;
|
|
transition: all 0.3s;
|
|
|
|
> div {
|
|
&:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus {
|
|
transform: scale(1.1);
|
|
}
|
|
}
|
|
|
|
&-first,
|
|
&-second {
|
|
color: @rate-star-bg;
|
|
transition: all 0.3s;
|
|
user-select: none;
|
|
.@{iconfont-css-prefix} {
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
|
|
&-first {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 50%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
opacity: 0;
|
|
}
|
|
|
|
&-half &-first,
|
|
&-half &-second {
|
|
opacity: 1;
|
|
}
|
|
|
|
&-half &-first,
|
|
&-full &-second {
|
|
color: inherit;
|
|
}
|
|
}
|
|
|
|
&-text {
|
|
display: inline-block;
|
|
margin-left: 8px;
|
|
font-size: @font-size-base;
|
|
}
|
|
}
|