Files
element-web/res/css/views/elements/_ProgressBar.pcss
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
655 B
Plaintext
Raw Normal View History

/*
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.
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.
*/
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;
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;
@mixin ProgressBarColour var(--cpd-color-icon-accent-tertiary);
2021-03-05 14:14:43 -07:00
@mixin ProgressBarBgColour $progressbar-bg-color;
&::-webkit-progress-value {
2020-06-26 14:02:36 +01:00
transition: width 1s;
}
}