mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-25 02:41:46 +08:00
77 lines
1.4 KiB
CSS
77 lines
1.4 KiB
CSS
@import './common/var.css';
|
|
|
|
$van-checkbox-size: 18px;
|
|
|
|
.van-checkbox {
|
|
overflow: hidden;
|
|
|
|
.van-icon-success {
|
|
color: #fff;
|
|
display: block;
|
|
line-height: 1;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
pointer-events: none;
|
|
border: 1px solid #aaa;
|
|
width: $van-checkbox-size;
|
|
height: $van-checkbox-size;
|
|
|
|
&::before {
|
|
margin: 0 auto;
|
|
line-height: $van-checkbox-size;
|
|
transition: all .2s cubic-bezier(.12,.4,.29,1.46) .1s;
|
|
transform: scale(0);
|
|
}
|
|
}
|
|
|
|
&__input {
|
|
position: relative;
|
|
height: calc($van-checkbox-size + 2px);
|
|
margin-right: 15px;
|
|
float: left;
|
|
}
|
|
|
|
&__control {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
opacity: 0;
|
|
margin: 0;
|
|
width: calc($van-checkbox-size + 2px);
|
|
height: calc($van-checkbox-size + 2px);
|
|
}
|
|
|
|
&__label {
|
|
display: block;
|
|
margin-left: 37px;
|
|
line-height: calc($van-checkbox-size + 2px);
|
|
}
|
|
|
|
&--round {
|
|
.van-icon-success {
|
|
border-radius: 100%;
|
|
}
|
|
}
|
|
|
|
&__control:checked + .van-icon-success {
|
|
border-color: $green;
|
|
background-color: $green;
|
|
|
|
&::before {
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
&--disabled {
|
|
.van-icon-success {
|
|
border-color: #d1dbe5;
|
|
background-color: transparent;
|
|
}
|
|
|
|
.van-checkbox__control:checked + .van-icon-success {
|
|
border-color: #d1dbe5;
|
|
background-color: #d1dbe5;
|
|
}
|
|
}
|
|
}
|