0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-29 09:33:54 +01:00
wagtail/client/scss/components/_progressbar.scss
Thibaud Colas 5c362bf831 Refactor all stylesheets to use CSS variables
Co-authored-by: Scott Cranfill <scott@scottcranfill.com>
2022-07-20 12:08:47 +01:00

30 lines
591 B
SCSS

.progress {
border-radius: 1.2em;
background-color: $color-teal-darker;
border: 1px solid $color-teal;
opacity: 0;
&.active {
@include transition(opacity 0.3s ease);
opacity: 1;
}
.bar {
@include transition(width 0.3s ease);
border-radius: 1.5em;
overflow: hidden;
box-sizing: border-box;
text-align: end;
line-height: 1.2em;
color: $color-white;
font-size: 0.85em;
background-color: $color-teal;
height: 1.2em;
padding-inline-end: 1em;
@media (forced-colors: active) {
background-color: ButtonText;
}
}
}