From 772eac252410dcc9bcd448e6f3780d4e02f9ddef Mon Sep 17 00:00:00 2001 From: sgfost Date: Thu, 29 Aug 2024 12:46:17 -0700 Subject: [PATCH] fix: disable overriding of custom search banner background --- common/common.scss | 3 ++- scss/custom.scss | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/common/common.scss b/common/common.scss index f4e91ca..1e208a8 100644 --- a/common/common.scss +++ b/common/common.scss @@ -1,7 +1,6 @@ @import "variables"; @import "sidebar"; @import "chat"; -@import "custom"; .d-editor-textarea-wrapper, .select-kit-header { @@ -390,3 +389,5 @@ summary.select-kit-header.single-select-header.dropdown-select-box-header { display: flex; } } + +@import "custom"; diff --git a/scss/custom.scss b/scss/custom.scss index e47920c..3fbc15c 100644 --- a/scss/custom.scss +++ b/scss/custom.scss @@ -32,3 +32,8 @@ h1, h2, h3, h4 { text-decoration: underline; } } + +// use custom search banner image instead of theme setting +.custom-search-banner-wrap { + background: none; +}