mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* feat(Rate): css variables * fix(Rate): adjust less variables name * fix(Rate): adjust less variables name * docs(Rate): adjust doc - 示例与文档对应 - 对照vant文档做了一些调整 - 增加 `监听 change 事件` - 删除 `props` 中的版本列 * fix(Rate): adjust demo
41 lines
789 B
Plaintext
41 lines
789 B
Plaintext
@import '../common/style/var.less';
|
|
@import '../common/style/theme.less';
|
|
|
|
.van-rate {
|
|
display: inline-flex;
|
|
user-select: none;
|
|
|
|
&__item {
|
|
position: relative;
|
|
.theme(padding, '0 @rate-horizontal-padding');
|
|
|
|
&:not(:last-child) {
|
|
.theme(padding-right, '@rate-icon-gutter');
|
|
}
|
|
}
|
|
|
|
&__icon {
|
|
display: block;
|
|
height: 1em;
|
|
.theme(color, '@rate-icon-void-color');
|
|
.theme(font-size, '@rate-icon-size');
|
|
|
|
&--half {
|
|
position: absolute;
|
|
top: 0;
|
|
width: 0.5em;
|
|
overflow: hidden;
|
|
.theme(left, '@rate-horizontal-padding');
|
|
.theme(color, '@rate-icon-full-color');
|
|
}
|
|
|
|
&--full {
|
|
.theme(color, '@rate-icon-full-color');
|
|
}
|
|
|
|
&--disabled {
|
|
.theme(color, '@rate-icon-disabled-color');
|
|
}
|
|
}
|
|
}
|