vant-weapp/packages/rate/index.less
nemo-shen c416ff16b6
feat(Rate): css variables (#4297)
* 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
2021-06-27 16:37:04 +08:00

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');
}
}
}