-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRadioButtonGroup.less
61 lines (47 loc) · 1.14 KB
/
RadioButtonGroup.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
56
57
58
59
60
61
@main-color: #FFFFFF;
.WLC-RadioButtonGroup {
.active {
color: #fff;
border: 1px solid @main-color;
background-color: @main-color;
}
.RadioBtnWithLabel {
display: inline-block;
margin-right: 15px;
&:active {
.active;
}
&.WLC-disabled span,
&.WLC-disabled .Icon {
cursor: default;
}
span,
.Icon {
cursor: pointer;
}
}
&.WLC-rectangle .WLC-RadioBtnWithLabel {
display: inline-block;
margin-right: -3px;
padding: 5px 10px;
cursor: pointer;
color: @main-color;
border: 1px solid @main-color;
border-radius: 1px;
background-color: #fff;
&:active {
.active;
}
}
&.WLC-rectangle.WLC-disabled {
opacity: .5;
}
&.WLC-rectangle .WLC-RadioBtnWithLabel.active {
-webkit-animation-duration: .2s;
-moz-animation-duration: .2s;
-ms-animation-duration: .2s;
-o-animation-duration: .2s;
animation-duration: .2s;
.active;
}
}