2015-09-25 15:17:39 +02:00
|
|
|
.progress {
|
2015-11-03 18:12:12 +01:00
|
|
|
border-radius: 1.2em;
|
2023-04-19 07:58:14 +02:00
|
|
|
background-color: theme('colors.surface-button-hover');
|
|
|
|
border: 1px solid theme('colors.surface-button-default');
|
2015-09-25 15:17:39 +02:00
|
|
|
opacity: 0;
|
2014-07-04 18:07:35 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
&.active {
|
2014-07-07 11:14:23 +02:00
|
|
|
@include transition(opacity 0.3s ease);
|
2015-11-03 13:15:33 +01:00
|
|
|
opacity: 1;
|
2017-08-11 01:13:57 +02:00
|
|
|
}
|
2014-06-18 17:54:31 +02:00
|
|
|
|
2015-09-25 15:17:39 +02:00
|
|
|
.bar {
|
2014-07-04 18:07:35 +02:00
|
|
|
@include transition(width 0.3s ease);
|
2015-11-03 18:12:12 +01:00
|
|
|
border-radius: 1.5em;
|
2015-09-25 15:17:39 +02:00
|
|
|
overflow: hidden;
|
2022-03-15 14:21:06 +01:00
|
|
|
text-align: end;
|
2015-09-25 15:17:39 +02:00
|
|
|
line-height: 1.2em;
|
2023-04-19 07:58:14 +02:00
|
|
|
color: theme('colors.text-button');
|
2015-09-25 15:17:39 +02:00
|
|
|
font-size: 0.85em;
|
2023-04-19 07:58:14 +02:00
|
|
|
background-color: theme('colors.surface-button-default');
|
2015-09-25 15:17:39 +02:00
|
|
|
height: 1.2em;
|
2022-03-15 14:21:06 +01:00
|
|
|
padding-inline-end: 1em;
|
2022-07-10 01:18:39 +02:00
|
|
|
|
|
|
|
@media (forced-colors: active) {
|
|
|
|
background-color: ButtonText;
|
|
|
|
}
|
2014-06-18 17:54:31 +02:00
|
|
|
}
|
2015-11-03 13:15:33 +01:00
|
|
|
}
|