Radarr/frontend/src/Movie/Index/ProgressBar/MovieIndexProgressBar.css

23 lines
450 B
CSS
Raw Normal View History

2018-11-23 07:04:42 +00:00
.progress {
composes: container from '~Components/ProgressBar.css';
2018-11-23 07:04:42 +00:00
border-radius: 0;
background-color: #5b5b5b;
color: var(--white);
2018-11-23 07:04:42 +00:00
}
2022-03-08 02:03:00 +00:00
.progressRadius {
composes: container from '~Components/ProgressBar.css';
border-radius: 0 0 5px 5px;
background-color: #5b5b5b;
color: var(--white);
2022-03-08 02:03:00 +00:00
transition: width 200ms ease;
}
2018-11-23 07:04:42 +00:00
.progressBar {
composes: progressBar from '~Components/ProgressBar.css';
2018-11-23 07:04:42 +00:00
transition: width 200ms ease;
}