Fix: Backdrops should be visible now if a user has them enabled

This commit is contained in:
lscambo13
2024-12-05 07:23:29 -08:00
parent 6650c40291
commit f1d2f14a30

View File

@@ -218,13 +218,21 @@ h2 {
margin-bottom: 0; margin-bottom: 0;
} }
.backgroundContainer,
.nowPlayingPlaylist, .nowPlayingPlaylist,
.nowPlayingContextMenu, .nowPlayingContextMenu,
html { html {
background: linear-gradient(0deg, var(--darkerGradientPoint), var(--lighterGradientPoint)); background: linear-gradient(0deg, var(--darkerGradientPoint), var(--lighterGradientPoint));
} }
.backgroundContainer:not(.withBackdrop) {
background: linear-gradient(0deg, var(--darkerGradientPoint), var(--lighterGradientPoint));
}
.backgroundContainer.withBackdrop {
opacity: .9375;
background: linear-gradient(0deg, var(--darkerGradientPoint), var(--lighterGradientPoint));
}
.skinHeader-blurred:not(.osdHeader) { .skinHeader-blurred:not(.osdHeader) {
background-color: var(--headerColor) !important; background-color: var(--headerColor) !important;
backdrop-filter: blur(5px) !important; backdrop-filter: blur(5px) !important;