Fix banner on homepage - add more specific selectors and remove gradient overlay

This commit is contained in:
2026-02-15 21:09:23 +03:00
parent fbb3cb122f
commit bdc3ec722e

View File

@@ -619,13 +619,25 @@ progress {
.homeBackdropContainer, .homeBackdropContainer,
.backgroundContainer.withBackdrop, .backgroundContainer.withBackdrop,
.itemBackdrop, .itemBackdrop,
.backdropImage { .backdropImage,
#indexPage .backgroundContainer,
#indexPage .backdropImage {
background-image: var(--banner-url) !important; background-image: var(--banner-url) !important;
background-size: cover !important; background-size: cover !important;
background-position: center !important; background-position: center !important;
background-repeat: no-repeat !important; background-repeat: no-repeat !important;
} }
/* Убрать градиентный оверлей на главной странице */
#indexPage .itemBackdrop::before {
display: none !important;
}
#indexPage .darkenContent {
background: none !important;
backdrop-filter: none !important;
}
/* Размытие фонового изображения */ /* Размытие фонового изображения */
.layout-desktop .backdropImage { .layout-desktop .backdropImage {
filter: blur(5px); filter: blur(5px);