From 04cc13a7b313bae6495073f8d77a1a8cc872a6b9 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Tue, 27 Jun 2023 11:59:49 +0530 Subject: [PATCH 1/2] logo and avatar fix --- core/css/server.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/css/server.css b/core/css/server.css index c8a20e75..0aab8158 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -60,6 +60,9 @@ --search-icon: var(--original-icon-search-dark); --body-container-radius: 0px; --app-icon-filter: brightness(0.5); + --image-logoheader-custom:true; + --background-image-invert-if-bright:no; + --image-background:none; } /* Force a few variables to right values for dark theme */ @@ -72,6 +75,9 @@ body[data-themes="dark"] , body[data-themes="dark-highcontrast"]{ --notification-icon-has-notification: var(--icon-has-notification-light); --search-icon: var(--original-icon-search-white); --app-icon-filter: brightness(1); + --image-logoheader-custom:true; + --background-image-invert-if-bright:no; + --image-background:none; } body.theme--highcontrast { -- GitLab From 19afe2f183ccc9e4ad5565e3632571d9f6e39f49 Mon Sep 17 00:00:00 2001 From: Avinash Gusain Date: Tue, 27 Jun 2023 12:03:03 +0530 Subject: [PATCH 2/2] logo and avatar fix --- core/css/server.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index 0aab8158..cb19c885 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -60,9 +60,9 @@ --search-icon: var(--original-icon-search-dark); --body-container-radius: 0px; --app-icon-filter: brightness(0.5); - --image-logoheader-custom:true; - --background-image-invert-if-bright:no; - --image-background:none; + --image-logoheader-custom:true !important; + --background-image-invert-if-bright:no !important; + --image-background:none !important; } /* Force a few variables to right values for dark theme */ @@ -76,8 +76,8 @@ body[data-themes="dark"] , body[data-themes="dark-highcontrast"]{ --search-icon: var(--original-icon-search-white); --app-icon-filter: brightness(1); --image-logoheader-custom:true; - --background-image-invert-if-bright:no; - --image-background:none; + --background-image-invert-if-bright:no !important; + --image-background:none !important; } body.theme--highcontrast { -- GitLab