forked from WebbyLab/react-components
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSwitcher.less
55 lines (39 loc) · 857 Bytes
/
Switcher.less
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
48
49
50
51
52
53
54
55
@disabled-color: #ececec;
@main-color: #79174a;
.WLC-Switcher {
font-size: 8px;
position: relative;
width: 46px;
height: 22px;
border-radius: 1px;
background-color: @main-color;
cursor: pointer;
.WLC-on,
.WLC-off {
line-height: 25px;
display: inline-block;
width: 50%;
height: 100%;
text-align: center;
}
.WLC-on,
.WLC-off {
color: #fff;
}
.WLC-curtain {
position: absolute;
width: 21px;
height: 20px;
margin: 1px 1px 0px 1px;
-webkit-transition: left .2s;
-moz-transition: left .2s;
transition: left .2s;
background-color: #fff;
}
&.WLC-off {
background-color: #999;
}
&.WLC-disabled {
background-color: @disabled-color;
}
}