Fix: Prevented dither mask from being applied to the video player

This commit is contained in:
lscambo13
2025-05-10 11:01:07 -07:00
parent 39d1bc7d28
commit 70cb269ada

View File

@@ -655,17 +655,18 @@ html {
background: var(--backgroundGradient) background: var(--backgroundGradient)
} }
.backgroundContainer:not(.withBackdrop) { .backgroundContainer:not(.withBackdrop, .backgroundContainer-transparent) {
background: var(--lighterGradientPoint); background: var(--lighterGradientPoint);
} }
.backgroundContainer:not(.withBackdrop):after { .backgroundContainer:not(.withBackdrop,
.backgroundContainer-transparent):after {
content: ''; content: '';
background: linear-gradient(0deg, var(--darkerGradientPoint) 35%, transparent 100%); background: linear-gradient(0deg, var(--darkerGradientPoint) 35%, transparent 100%);
position: absolute; position: absolute;
inset: 0%; inset: 0%;
filter: contrast(1.25); filter: contrast(1.25);
-webkit-mask: var(--ditheringMask); mask: var(--ditheringMask);
} }
.backgroundContainer.withBackdrop { .backgroundContainer.withBackdrop {
@@ -697,7 +698,7 @@ html {
position: absolute; position: absolute;
inset: 0%; inset: 0%;
background: var(--darkerGradientPointAlpha); background: var(--darkerGradientPointAlpha);
-webkit-mask: var(--ditheringMask); mask: var(--ditheringMask);
} }
.appfooter { .appfooter {