2018-04-12 00:23:35 +01:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-03-05 14:14:43 -07:00
|
|
|
Copyright 2020, 2021 The Matrix.org Foundation C.I.C.
|
2018-04-12 00:23:35 +01:00
|
|
|
|
2025-01-06 11:18:54 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-09 14:57:16 +01:00
|
|
|
Please see LICENSE files in the repository root for full details.
|
2018-04-12 00:23:35 +01:00
|
|
|
*/
|
|
|
|
|
|
2020-06-26 14:02:36 +01:00
|
|
|
progress.mx_ProgressBar {
|
2021-03-05 14:14:43 -07:00
|
|
|
height: 6px;
|
2020-06-26 14:02:36 +01:00
|
|
|
width: 60px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
appearance: none;
|
2024-03-04 23:25:47 -05:00
|
|
|
border: var(--cpd-border-width-1) solid var(--cpd-color-gray-400);
|
2020-06-26 14:02:36 +01:00
|
|
|
|
2021-05-05 11:50:55 +01:00
|
|
|
@mixin ProgressBarBorderRadius 6px;
|
2024-03-04 23:25:47 -05:00
|
|
|
@mixin ProgressBarColour var(--cpd-color-icon-accent-tertiary);
|
2021-03-05 14:14:43 -07:00
|
|
|
@mixin ProgressBarBgColour $progressbar-bg-color;
|
2024-11-18 09:56:22 +00:00
|
|
|
&::-webkit-progress-value {
|
2020-06-26 14:02:36 +01:00
|
|
|
transition: width 1s;
|
|
|
|
|
}
|
2018-04-12 00:23:35 +01:00
|
|
|
}
|