forked from youzan/vant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.less
More file actions
47 lines (41 loc) · 1.03 KB
/
index.less
File metadata and controls
47 lines (41 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
@import '../style/var';
.van-switch {
position: relative;
display: inline-block;
box-sizing: content-box;
width: @switch-width;
height: @switch-height;
font-size: @switch-size;
background-color: @switch-background-color;
border: @switch-border;
border-radius: @switch-node-size;
transition: background-color @switch-transition-duration;
&__node {
position: absolute;
top: 0;
left: 0;
z-index: @switch-node-z-index;
width: @switch-node-size;
height: @switch-node-size;
background-color: @switch-node-background-color;
border-radius: 100%;
box-shadow: @switch-node-box-shadow;
transition: transform @switch-transition-duration cubic-bezier(.3, 1.05, .4, 1.05);
}
&__loading {
top: 25%;
left: 25%;
width: 50%;
height: 50%;
line-height: 1;
}
&--on {
background-color: @switch-on-background-color;
.van-switch__node {
transform: translateX(@switch-width - @switch-node-size);
}
}
&--disabled {
opacity: @switch-disabled-opacity;
}
}