mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
9abb2f5ff4
* $accent-color -> $accent Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $accent-bg-color Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * $notice-primary-color -> $alert Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $notice-primary-bg-color Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $accent-50pct Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * $warning-color -> $alert Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $accent-darker Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $orange-warning-color Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $warning-bg-color Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com> * Remove $info-bg-color Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
108 lines
2.3 KiB
SCSS
108 lines
2.3 KiB
SCSS
/*
|
|
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;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.mx_Slider_dotContainer {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.mx_Slider_bar {
|
|
display: flex;
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
height: 1em;
|
|
width: 100%;
|
|
padding: 0 0.5em; // half the width of a dot.
|
|
align-items: center;
|
|
}
|
|
|
|
.mx_Slider_bar > hr {
|
|
width: 100%;
|
|
height: 0.4em;
|
|
background-color: $slider-background-color;
|
|
border: 0;
|
|
}
|
|
|
|
.mx_Slider_selection {
|
|
display: flex;
|
|
align-items: center;
|
|
width: calc(100% - 1em); // 2 * half the width of a dot
|
|
height: 1em;
|
|
position: absolute;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.mx_Slider_selectionDot {
|
|
position: absolute;
|
|
width: $slider-selection-dot-size;
|
|
height: $slider-selection-dot-size;
|
|
background-color: $accent;
|
|
border-radius: 50%;
|
|
z-index: 10;
|
|
}
|
|
|
|
.mx_Slider_selectionText {
|
|
color: $muted-fg-color;
|
|
font-size: $font-14px;
|
|
position: relative;
|
|
text-align: center;
|
|
top: 30px;
|
|
width: 100%;
|
|
}
|
|
|
|
.mx_Slider_selection > hr {
|
|
margin: 0;
|
|
border: 0.2em solid $accent;
|
|
}
|
|
|
|
.mx_Slider_dot {
|
|
height: $slider-dot-size;
|
|
width: $slider-dot-size;
|
|
border-radius: 50%;
|
|
background-color: $slider-background-color;
|
|
z-index: 0;
|
|
}
|
|
|
|
.mx_Slider_dotActive {
|
|
background-color: $accent;
|
|
}
|
|
|
|
.mx_Slider_dotValue {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
color: $slider-background-color;
|
|
}
|
|
|
|
// The following is a hack to center the labels without adding
|
|
// any width to the slider's dots.
|
|
.mx_Slider_labelContainer {
|
|
width: 1em;
|
|
}
|
|
|
|
.mx_Slider_label {
|
|
position: relative;
|
|
width: fit-content;
|
|
left: -50%;
|
|
}
|