2016-03-11 00:48:53 +00:00
|
|
|
.switcher {
|
|
|
|
position: relative;
|
|
|
|
width: 25px;
|
|
|
|
height: 15px;
|
|
|
|
background-color: transparent;
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
.sw-left {
|
|
|
|
display: inline-block;
|
|
|
|
height: 100%;
|
2020-12-17 08:16:45 +00:00
|
|
|
background-color: var(--highlight-button-pressed);
|
2016-03-11 00:48:53 +00:00
|
|
|
border-top-left-radius: 2px;
|
|
|
|
border-bottom-left-radius: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sw-right {
|
|
|
|
display: inline-block;
|
|
|
|
height: 100%;
|
2020-12-17 08:16:45 +00:00
|
|
|
background-color: var(--border-regular-control);
|
2016-03-11 00:48:53 +00:00
|
|
|
border-top-right-radius: 2px;
|
|
|
|
border-bottom-right-radius: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thumb {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: auto;
|
|
|
|
top: 0;
|
|
|
|
height: 100%;
|
2020-12-17 08:16:45 +00:00
|
|
|
background-color: var(--background-normal);
|
|
|
|
border: 1px solid var(--highlight-button-pressed);
|
2016-03-11 00:48:53 +00:00
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.on {
|
|
|
|
.thumb {
|
|
|
|
right: 0;
|
|
|
|
left: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
cursor: default;
|
|
|
|
|
|
|
|
.sw-left {
|
2020-12-17 08:16:45 +00:00
|
|
|
background-color: var(--border-regular-control);
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.thumb {
|
2020-12-17 08:16:45 +00:00
|
|
|
border-color: var(--border-regular-control);
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|