Fix progress bar for miniplayer on mobile

This commit is contained in:
loof2736 2025-05-17 12:52:21 -04:00
parent 569894124c
commit f7ae6d2dab

View File

@ -429,11 +429,21 @@ html,
top: 25px !important; top: 25px !important;
backdrop-filter: unset !important; backdrop-filter: unset !important;
} }
.mdl-slider-background-flex { @supports selector(div:not(.parent .child)) {
height: 10px !important; .mdl-slider-background-flex:not(.layout-mobile .nowPlayingBar .mdl-slider-background-flex) {
margin-top: -5px !important; height: 10px !important;
border-radius: 100px !important; margin-top: -5px !important;
background: hsla(0,0%,100%,.2) !important; border-radius: 100px !important;
background: hsla(0,0%,100%,.2) !important;
}
}
@supports not selector(div:not(.parent .child)) {
.mdl-slider-background-flex {
height: 10px !important;
margin-top: -5px !important;
border-radius: 100px !important;
background: hsla(0,0%,100%,.2) !important;
}
} }
.mdl-slider-background-lower { .mdl-slider-background-lower {
border-radius: 100px !important; border-radius: 100px !important;
@ -1005,7 +1015,13 @@ html,
background-size: contain !important; background-size: contain !important;
border-radius: var(--rounded-cards); border-radius: var(--rounded-cards);
} }
/* Move up content if no backdrop image is present
@supports selector(:has(*)) {
.layout-desktop:not(:has(.backdropContainer .backdropImage)) #itemBackdrop {
height: 20vh !important;
}
}
*/
/* Live TV */ /* Live TV */