mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
46 lines
962 B
Plaintext
46 lines
962 B
Plaintext
@import '../style/var';
|
|
|
|
.van-switch {
|
|
display: inline-block;
|
|
position: relative;
|
|
width: @switch-width;
|
|
height: @switch-height;
|
|
border: @switch-border;
|
|
border-radius: @switch-node-size;
|
|
box-sizing: content-box;
|
|
background-color: @switch-background-color;
|
|
transition: background-color @switch-transition-duration;
|
|
|
|
&__node {
|
|
top: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
border-radius: 100%;
|
|
width: @switch-node-size;
|
|
height: @switch-node-size;
|
|
z-index: @switch-node-z-index;
|
|
transition: @switch-transition-duration;
|
|
box-shadow: @switch-node-box-shadow;
|
|
background-color: @switch-node-background-color;
|
|
}
|
|
|
|
&__loading {
|
|
top: 25%;
|
|
left: 25%;
|
|
width: 50%;
|
|
height: 50%;
|
|
}
|
|
|
|
&--on {
|
|
background-color: @switch-on-background-color;
|
|
|
|
.van-switch__node {
|
|
transform: translateX(@switch-width - @switch-node-size);
|
|
}
|
|
}
|
|
|
|
&--disabled {
|
|
opacity: @switch-disabled-opacity;
|
|
}
|
|
}
|