mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-12 19:03:47 +00:00
cb8ba776e2
* refactor: remove info panel * feat: editor panel * wip: event info in drawer * chore: update tests * chore: add scss to processor
25 lines
355 B
SCSS
25 lines
355 B
SCSS
.progressBar {
|
|
height: 100%;
|
|
width: 0;
|
|
border-radius: 1px 0 0 1px;
|
|
|
|
transition: 1s linear;
|
|
transition-property: width;
|
|
|
|
&.play {
|
|
background-color: $playback-start;
|
|
}
|
|
|
|
&.overtime {
|
|
background-color: $playback-negative;
|
|
}
|
|
|
|
&.pause {
|
|
background-color: $ontime-paused;
|
|
}
|
|
|
|
&.roll {
|
|
background-color: $ontime-roll;
|
|
}
|
|
}
|