more theming for jellyfin

This commit is contained in:
Alexander Bocken 2023-10-27 16:10:46 +02:00
parent 53fc4fee04
commit e88b3d307c
Signed by: Alexander
GPG Key ID: 1D237BE83F9B05E8

View File

@ -50,7 +50,11 @@ input[type="range"]::-webkit-slider-thumb{
.listItemIcon:not(.listItemIcon-transparent),
.navMenuOption-selected,
.button-submit,
.defaultCardBackground1,
.defaultCardBackground2,
.defaultCardBackground3,
.defaultCardBackground4,
.defaultCardBackground5,
.emby-checkbox:checked + span + .checkboxOutline, .itemProgressBarForeground
{
background-color: var(--blue) !important;
@ -66,3 +70,39 @@ border-color: var(--blue);
.cardOverlayButton:has(.favorite):hover{
color: #BF616A !important;
}
.emby-input:focus, .emby-textarea:focus{
border-color: var(--blue);
}
.emby-select-withcolor:focus{
border-color: var(--blue) !important;
}
.listItemIcon:not(.listItemIcon-transparent),
.navMenuOption-selected,
.button-submit,
.defaultCardBackground1,
.defaultCardBackground2,
.defaultCardBackground3,
.defaultCardBackground4,
.defaultCardBackground5,
.emby-checkbox:checked + span + .checkboxOutline, .itemProgressBarForeground,
.taskProgressInner
{
background-color: var(--blue) !important;
}
#divRunningTasks > p > progress + span,
div.taskProgressOuter + span{
color: var(--blue) !important;
}
progress[value] {
background-color: var(--blue);
}
progress[value]::-webkit-progress-value {
background-color: var(--blue);
}
/* For Mozilla-based browsers (Firefox) */
progress[value]::-moz-progress-bar {
background-color: var(--blue);
}