mirror of
https://github.com/FrankerFaceZ/FrankerFaceZ.git
synced 2025-08-03 16:38:31 +00:00
4.22.4
* Fixed: Duplicate more CSS that Twitch is removing in favor of styled components. * Fixed: Do not display theater metadata when viewing a video.
This commit is contained in:
parent
c286e6cf93
commit
ff4bb24a9a
6 changed files with 42 additions and 5 deletions
30
styles/native/progress.scss
Normal file
30
styles/native/progress.scss
Normal file
|
@ -0,0 +1,30 @@
|
|||
.ffz-progress-bar {
|
||||
&--default {
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
height: 1rem;
|
||||
background: var(--color-background-progress);
|
||||
}
|
||||
|
||||
&__fill {
|
||||
max-width: 100%;
|
||||
height: 100%;
|
||||
background: var(--color-background-progress-status);
|
||||
animation-timing-function: linear;
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
||||
&--countdown &__fill {
|
||||
animation-name: ffz-progress-down;
|
||||
}
|
||||
|
||||
.thingy {
|
||||
bottom: -4px;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes ffz-progress-down {
|
||||
100% {
|
||||
width: 0%;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue