Fix: Backdrops were too bright/visible on TVs, causing difficulty in text legibility

This commit is contained in:
lscambo13
2025-08-22 12:47:20 -07:00
parent 9d1c26e798
commit 07fcd74ccd

View File

@@ -1351,8 +1351,8 @@ html,
background: var(--backgroundGradient);
}
.backdropImage:after,
.backdropImage:before {
.layout-desktop .backdropImage:after,
.layout-desktop .backdropImage:before {
content: "";
position: absolute;
top: 0;
@@ -1383,6 +1383,10 @@ html,
background: linear-gradient(0deg, var(--darkerGradientPoint), 45%, rgba(17, 24, 39, .25));
}
.layout-tv .backgroundContainer.withBackdrop {
background: linear-gradient(0deg, var(--darkerGradientPoint), 45%, rgba(17, 24, 39, .95));
}
.layout-mobile .withSectionTabs .backgroundContainer.withBackdrop {
opacity: .9;
}