mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-26 18:38:41 +08:00
c05c429803
Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Florian Duros <florian.duros@ormaz.fr> Co-authored-by: Kim Brose <kim.brose@nordeck.net> Co-authored-by: Florian Duros <florianduros@element.io> Co-authored-by: R Midhun Suresh <hi@midhun.dev> Co-authored-by: dbkr <986903+dbkr@users.noreply.github.com> Co-authored-by: ElementRobot <releases@riot.im> Co-authored-by: dbkr <dbkr@users.noreply.github.com> Co-authored-by: David Baker <dbkr@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com> Co-authored-by: David Langley <davidl@element.io> Co-authored-by: Michael Weimann <michaelw@matrix.org> Co-authored-by: Timshel <Timshel@users.noreply.github.com> Co-authored-by: Sahil Silare <32628578+sahil9001@users.noreply.github.com> Co-authored-by: Will Hunt <will@half-shot.uk> Co-authored-by: Hubert Chathi <hubert@uhoreg.ca> Co-authored-by: Andrew Ferrazzutti <andrewf@element.io> Co-authored-by: Robin <robin@robin.town> Co-authored-by: Tulir Asokan <tulir@maunium.net>
97 lines
3.0 KiB
Plaintext
97 lines
3.0 KiB
Plaintext
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
/* 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/ */
|
|
|
|
.mx_SeekBar {
|
|
/* Dev note: we deliberately do not have the -ms-track (and friends) selectors because we don't */
|
|
/* need to support IE. */
|
|
|
|
appearance: none; /* default style override */
|
|
|
|
width: 100%;
|
|
height: 1px;
|
|
background: $quaternary-content;
|
|
outline: none; /* remove blue selection border */
|
|
position: relative; /* for before+after pseudo elements later on */
|
|
|
|
cursor: pointer;
|
|
|
|
&::-webkit-slider-thumb {
|
|
appearance: none; /* default style override */
|
|
|
|
/* 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. */
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 8px;
|
|
background-color: $tertiary-content;
|
|
cursor: pointer;
|
|
}
|
|
|
|
&::-moz-range-thumb {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 8px;
|
|
background-color: $tertiary-content;
|
|
cursor: pointer;
|
|
|
|
/* Firefox adds a border on the thumb */
|
|
border: none;
|
|
}
|
|
|
|
/* 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 */
|
|
content: "";
|
|
background-color: $tertiary-content;
|
|
|
|
/* Absolute positioning to ensure it overlaps with the existing bar */
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
|
|
/* Sizing to match the bar */
|
|
width: 100%;
|
|
height: 1px;
|
|
|
|
/* And finally dynamic width without overly hurting the rendering engine. */
|
|
transform-origin: 0 100%;
|
|
transform: scaleX(var(--fillTo));
|
|
}
|
|
|
|
/* This is firefox's built-in support for the above, with 100% less hacks. */
|
|
&::-moz-range-progress {
|
|
background-color: $tertiary-content;
|
|
height: 1px;
|
|
}
|
|
|
|
&:disabled {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
/* 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/ */
|
|
&::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: -6px;
|
|
bottom: -6px;
|
|
left: 0;
|
|
right: 0;
|
|
}
|
|
}
|