Move slider themes

This commit is contained in:
Jorik Schellekens 2020-04-21 12:06:10 +01:00
parent 315a272cb4
commit 9a585fee0a
2 changed files with 2 additions and 1 deletions

View file

@ -1,89 +0,0 @@
/*
Copyright 2020 The Matrix.org Foundation C.I.C.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
.mx_Slider {
position: relative;
margin: 0px;
@mixin mx_Settings_fullWidthField;
}
.mx_Slider_dotContainer {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.mx_Slider_bar {
display: flex;
box-sizing: border-box;
position: absolute;
height: 1rem;
width: 100%;
padding: 0 1.1rem;
align-items: center;
}
.mx_Slider_bar > hr {
width: 100%;
border: 0.2rem solid $Slider-background-color;
}
.mx_Slider_selection {
display: flex;
align-items: center;
width: calc(100% - 2.2rem);
height: 1rem;
position: absolute;
}
.mx_Slider_selectionDot {
transition: left 0.25s;
position: absolute;
width: 1.1rem;
height: 1.1rem;
background-color: $Slider-selection-color;
border-radius: 50%;
box-shadow: 0 0 6px lightgrey;
z-index: 10;
}
.mx_Slider_selection > hr {
transition: width 0.25s;
margin: 0;
border: 0.2rem solid $Slider-selection-color;
}
.mx_Slider_dot {
transition: background-color 0.2s ease-in;
height: 1rem;
width: 1rem;
border-radius: 50%;
background-color: $Slider-background-color;
margin-bottom: 5px;
z-index: 0;
}
.mx_Slider_dotActive {
background-color: $Slider-selection-color;
}
.mx_Slider_dotValue {
display: flex;
flex-direction: column;
align-items: center;
color: $Slider-background-color;
}