mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
72 lines
1.5 KiB
Plaintext
72 lines
1.5 KiB
Plaintext
@import '../common/style/var.less';
|
|
@import '../common/style/theme.less';
|
|
|
|
.van-radio {
|
|
display: flex;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
user-select: none;
|
|
|
|
&__icon-wrap {
|
|
flex: none;
|
|
}
|
|
|
|
&--horizontal {
|
|
.theme(margin-right, '@padding-sm');
|
|
}
|
|
|
|
&__icon {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-sizing: border-box;
|
|
width: 1em;
|
|
height: 1em;
|
|
color: transparent;
|
|
text-align: center;
|
|
transition-property: color, border-color, background-color;
|
|
.theme(border, '1px solid @radio-border-color');
|
|
.theme(font-size, '@radio-size');
|
|
.theme(transition-duration, '@radio-transition-duration');
|
|
|
|
&--round {
|
|
border-radius: 100%;
|
|
}
|
|
|
|
&--checked {
|
|
.theme(color, '@white');
|
|
.theme(background-color, '@radio-checked-icon-color');
|
|
.theme(border-color, '@radio-checked-icon-color');
|
|
}
|
|
|
|
&--disabled {
|
|
.theme(background-color, '@radio-disabled-background-color');
|
|
.theme(border-color, '@radio-disabled-icon-color');
|
|
}
|
|
|
|
&--disabled&--checked {
|
|
.theme(color, '@radio-disabled-icon-color');
|
|
}
|
|
}
|
|
|
|
&__label {
|
|
word-wrap: break-word;
|
|
.theme(margin-left, '@radio-label-margin');
|
|
.theme(color, '@radio-label-color');
|
|
.theme(line-height, '@radio-size');
|
|
|
|
&--left {
|
|
float: left;
|
|
.theme(margin, '0 @radio-label-margin 0 0');
|
|
}
|
|
|
|
&--disabled {
|
|
.theme(color, '@radio-disabled-label-color');
|
|
}
|
|
|
|
&:empty {
|
|
margin: 0;
|
|
}
|
|
}
|
|
}
|