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%;
|
2021-02-16 07:21:22 +00:00
|
|
|
background-color: @highlight-button-pressed-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
background-color: @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%;
|
2021-02-16 07:21:22 +00:00
|
|
|
background-color: @border-regular-control-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
background-color: @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%;
|
2021-02-16 07:21:22 +00:00
|
|
|
background-color: @background-normal-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
background-color: @background-normal;
|
2021-02-16 07:21:22 +00:00
|
|
|
border: 1px solid @highlight-button-pressed-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
border: 1px solid @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 {
|
2021-02-16 07:21:22 +00:00
|
|
|
background-color: @border-regular-control-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
background-color: @border-regular-control;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.thumb {
|
2021-02-16 07:21:22 +00:00
|
|
|
border-color: @border-regular-control-ie;
|
2020-12-19 19:43:19 +00:00
|
|
|
border-color: @border-regular-control;
|
2016-03-11 00:48:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|