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