-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path_input-toggle.scss
55 lines (55 loc) · 1.33 KB
/
_input-toggle.scss
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
.__dummy {
content: "";
display: block;
position: absolute;
top: 3px;
left: 3px;
}
.input-toggle {
display: inline-flex;
align-items: center;
.info-text {
display: inline-block;
margin-left: 15px;
margin-top: -5px;
}
input[type="checkbox"] {
position: absolute;
visibility: hidden;
& + label {
position: relative;
cursor: pointer;
outline: none;
user-select: none;
width: $input-toggle-track-width;
height: $input-toggle-track-height;
background-color: $input-toggle-track-background;
border-radius: $input-toggle-border-radius;
overflow: hidden;
margin-bottom: 0;
@include transition(background);
&:before {
@extend .__dummy;
right: 1px;
background-color: $input-toggle-handle-background;
border-radius: $input-toggle-border-radius;
}
&:after {
@extend .__dummy;
width: $input-toggle-handle-width;
height: $input-toggle-handle-height;
background-color: $input-toggle-handle-background;
border-radius: $input-toggle-border-radius;
@include transition(margin);
}
}
&:checked {
& + label {
background-color: $primary-color;
&:after {
margin-left: $input-toggle-handle-margin-left;
}
}
}
}
}