2021-06-24 09:34:34 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-06-24 09:34:34 +08:00
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2021-06-24 09:34:34 +08:00
|
|
|
*/
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* CSS inspiration from: */
|
|
|
|
/* * https://www.w3schools.com/howto/howto_js_rangeslider.asp */
|
|
|
|
/* * https://stackoverflow.com/a/28283806 */
|
|
|
|
/* * https://css-tricks.com/styling-cross-browser-compatible-range-inputs-css/ */
|
2021-06-24 09:34:34 +08:00
|
|
|
|
|
|
|
.mx_SeekBar {
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Dev note: we deliberately do not have the -ms-track (and friends) selectors because we don't */
|
|
|
|
/* need to support IE. */
|
2021-06-24 09:34:34 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
appearance: none; /* default style override */
|
2021-06-24 09:34:34 +08:00
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
height: 1px;
|
2021-08-12 17:20:30 +08:00
|
|
|
background: $quaternary-content;
|
2022-07-27 21:39:29 +08:00
|
|
|
outline: none; /* remove blue selection border */
|
|
|
|
position: relative; /* for before+after pseudo elements later on */
|
2021-06-24 09:34:34 +08:00
|
|
|
|
2021-06-25 10:18:50 +08:00
|
|
|
cursor: pointer;
|
|
|
|
|
2021-06-24 09:34:34 +08:00
|
|
|
&::-webkit-slider-thumb {
|
2022-07-27 21:39:29 +08:00
|
|
|
appearance: none; /* default style override */
|
2021-06-24 09:34:34 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Dev note: This needs to be duplicated with the -moz-range-thumb selector */
|
|
|
|
/* because otherwise Edge (webkit) will fail to see the styles and just refuse */
|
|
|
|
/* to apply them. */
|
2021-06-24 09:34:34 +08:00
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
border-radius: 8px;
|
2021-08-12 17:53:54 +08:00
|
|
|
background-color: $tertiary-content;
|
2021-06-24 09:34:34 +08:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
&::-moz-range-thumb {
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
border-radius: 8px;
|
2021-08-12 17:53:54 +08:00
|
|
|
background-color: $tertiary-content;
|
2021-06-24 09:34:34 +08:00
|
|
|
cursor: pointer;
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Firefox adds a border on the thumb */
|
2021-06-24 09:34:34 +08:00
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* This is for webkit support, but we can't limit the functionality of it to just webkit */
|
|
|
|
/* browsers. Firefox responds to webkit-prefixed values now, which means we can't use media */
|
|
|
|
/* or support queries to selectively apply the rule. An upside is that this CSS doesn't work */
|
|
|
|
/* in firefox, so it's just wasted CPU/GPU time. */
|
|
|
|
&::before {
|
|
|
|
/* ::before to ensure it ends up under the thumb */
|
2021-06-24 09:34:34 +08:00
|
|
|
content: "";
|
2021-08-12 17:53:54 +08:00
|
|
|
background-color: $tertiary-content;
|
2021-06-24 09:34:34 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Absolute positioning to ensure it overlaps with the existing bar */
|
2021-06-24 09:34:34 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Sizing to match the bar */
|
2021-06-24 09:34:34 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 1px;
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* And finally dynamic width without overly hurting the rendering engine. */
|
2021-06-24 09:34:34 +08:00
|
|
|
transform-origin: 0 100%;
|
|
|
|
transform: scaleX(var(--fillTo));
|
|
|
|
}
|
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* This is firefox's built-in support for the above, with 100% less hacks. */
|
2021-06-24 09:34:34 +08:00
|
|
|
&::-moz-range-progress {
|
2021-08-12 17:53:54 +08:00
|
|
|
background-color: $tertiary-content;
|
2021-06-24 09:34:34 +08:00
|
|
|
height: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
2021-06-25 14:19:57 +08:00
|
|
|
|
2022-07-27 21:39:29 +08:00
|
|
|
/* Increase clickable area for the slider (approximately same size as browser default) */
|
|
|
|
/* We do it this way to keep the same padding and margins of the element, avoiding margin math. */
|
|
|
|
/* Source: https://front-back.com/expand-clickable-areas-for-a-better-touch-experience/ */
|
2021-06-25 14:22:05 +08:00
|
|
|
&::after {
|
2021-06-25 14:19:57 +08:00
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: -6px;
|
|
|
|
bottom: -6px;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
}
|
2021-06-24 09:34:34 +08:00
|
|
|
}
|