1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update components

This commit is contained in:
Luke Pulverenti 2016-03-17 22:18:11 -04:00
parent ee120181ee
commit 438755e048
24 changed files with 2465 additions and 185 deletions

View file

@ -108,7 +108,7 @@ Custom property | Description
#progressContainer,
.indeterminate::after {
background-color: var(--paper-progress-container-color, --google-grey-300);
background: var(--paper-progress-container-color, --google-grey-300);
}
:host(.transiting) #primaryProgress,
@ -140,20 +140,19 @@ Custom property | Description
}
#primaryProgress {
background-color: var(--paper-progress-active-color, --google-green-500);
background: var(--paper-progress-active-color, --google-green-500);
}
#secondaryProgress {
position: relative;
background-color: var(--paper-progress-secondary-color, --google-green-100);
background: var(--paper-progress-secondary-color, --google-green-100);
}
:host([disabled]) #primaryProgress {
background-color: var(--paper-progress-disabled-active-color, --google-grey-500);
background: var(--paper-progress-disabled-active-color, --google-grey-500);
}
:host([disabled]) #secondaryProgress {
background-color: var(--paper-progress-disabled-secondary-color, --google-grey-300);
background: var(--paper-progress-disabled-secondary-color, --google-grey-300);
}
:host(:not([disabled])) #primaryProgress.indeterminate {