blob: 814da91afb08e29e7fa55f88e4d227679f03fc91 [file] [log] [blame]
Michael Davis5a752b22017-03-09 09:41:08 -06001@mixin marginTransition {
Dixsie Wolmersc652ed12019-07-19 13:03:28 -05002 transition: margin $duration--moderate-01, background $duration--moderate-01;
Michael Davis5a752b22017-03-09 09:41:08 -06003}
4
5@mixin borderRadius {
6 -webkit-border-radius: 60px;
7 -moz-border-radius: 60px;
Michael Davis5a752b22017-03-09 09:41:08 -06008 border-radius: 60px;
9}
10
Dixsie Wolmersc652ed12019-07-19 13:03:28 -050011.toggle-container {
12 display: flex;
13}
14
Michael Davis5a752b22017-03-09 09:41:08 -060015.toggle-switch {
16 position: absolute;
Dixsie Wolmersc652ed12019-07-19 13:03:28 -050017 top: 0;
Michael Davis9e00ce92017-03-09 18:31:02 -060018 opacity: 0;
Michael Davis5a752b22017-03-09 09:41:08 -060019}
Michael Davisc5626182017-03-10 15:48:05 -060020
Michael Davis5a752b22017-03-09 09:41:08 -060021.toggle-switch + label {
22 display: block;
23 position: relative;
24 cursor: pointer;
25 outline: none;
26 -webkit-user-select: none;
27 -moz-user-select: none;
28 -ms-user-select: none;
29 user-select: none;
30}
31
Michael Davisc5626182017-03-10 15:48:05 -060032.toggle label {
33 text-indent: -9999px;
Dixsie Wolmersc652ed12019-07-19 13:03:28 -050034 margin-right: 0.3rem;
35}
36
37input.toggle-switch__round-flat:focus + label {
38 outline: 1px solid $primary-accent;
39 outline-offset: 3px;
Michael Davisc5626182017-03-10 15:48:05 -060040}
41
Michael Davis5a752b22017-03-09 09:41:08 -060042input.toggle-switch__round-flat + label {
43 padding: 2px;
Dixsie Wolmersc652ed12019-07-19 13:03:28 -050044 width: 43px;
45 height: 22px;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050046 background-color: $border-color-02;
Michael Davis5a752b22017-03-09 09:41:08 -060047 @include borderRadius;
48 @include marginTransition;
49}
Michael Davis9e00ce92017-03-09 18:31:02 -060050
Dixsie Wolmersc652ed12019-07-19 13:03:28 -050051input.toggle-switch__round-flat + label:before,
52input.toggle-switch__round-flat + label:after {
Michael Davis5a752b22017-03-09 09:41:08 -060053 display: block;
54 position: absolute;
55 content: "";
56}
57input.toggle-switch__round-flat + label:before {
58 top: 2px;
59 left: 2px;
60 bottom: 2px;
61 right: 2px;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050062 background-color: $primary-light;
Michael Davis5a752b22017-03-09 09:41:08 -060063 @include borderRadius;
64 @include marginTransition;
65}
66input.toggle-switch__round-flat + label:after {
67 top: 4px;
68 left: 4px;
69 bottom: 4px;
Dixsie Wolmersc652ed12019-07-19 13:03:28 -050070 width: 15px;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050071 background-color: $border-color-02;
Michael Davis5a752b22017-03-09 09:41:08 -060072 -webkit-border-radius: 52px;
73 -moz-border-radius: 52px;
Michael Davis5a752b22017-03-09 09:41:08 -060074 border-radius: 52px;
75 @include marginTransition;
76}
77input.toggle-switch__round-flat:checked + label {
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050078 background-color: $primary-accent;
Michael Davis5a752b22017-03-09 09:41:08 -060079}
80input.toggle-switch__round-flat:checked + label:before {
Dixsie Wolmersc652ed12019-07-19 13:03:28 -050081 background-color: $primary-accent;
Michael Davis5a752b22017-03-09 09:41:08 -060082}
83input.toggle-switch__round-flat:checked + label:after {
84 margin-left: 20px;
Dixsie Wolmersc652ed12019-07-19 13:03:28 -050085 background-color: $primary-light;
86}