From 57fbd2c8be9838fe71ccb09cbfed07004003e021 Mon Sep 17 00:00:00 2001 From: Akhil Date: Tue, 31 Mar 2026 15:34:22 +0530 Subject: [PATCH 1/4] fix: remove mask for search icon --- core/css/server.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index 81057b3..cf32c95 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -465,8 +465,9 @@ input.primary, background: var(--notification-icon) no-repeat center; background-size: 17px; } -#header #unified-search svg{ - color: var(--color-main-text); +#header #unified-search svg { + color: var(--icon-inactive-color); + mask: none; } .notifications-button.hasNotifications { -- GitLab From a16ef56d61200a1759687bc9aa0555b8dfbbd543 Mon Sep 17 00:00:00 2001 From: Akhil Date: Tue, 31 Mar 2026 15:40:33 +0530 Subject: [PATCH 2/4] fix: adjust for dark theme also --- core/css/server.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/css/server.css b/core/css/server.css index cf32c95..a235992 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -465,9 +465,14 @@ input.primary, background: var(--notification-icon) no-repeat center; background-size: 17px; } + #header #unified-search svg { + color: var(--color-main-text); + mask: unset; +} + +[data-theme-dark] #header #unified-search svg { color: var(--icon-inactive-color); - mask: none; } .notifications-button.hasNotifications { -- GitLab From fe6e5f7ade3201de2b7aaa2aaa2806a3e6dbd16d Mon Sep 17 00:00:00 2001 From: Akhil Date: Tue, 31 Mar 2026 15:48:57 +0530 Subject: [PATCH 3/4] fix: apply inactive icon color for data theme light --- core/css/server.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/css/server.css b/core/css/server.css index a235992..c7c5976 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -471,7 +471,7 @@ input.primary, mask: unset; } -[data-theme-dark] #header #unified-search svg { +[data-theme-light] #header #unified-search svg { color: var(--icon-inactive-color); } -- GitLab From 115b19529428cf77b16c05e63a13e9a0842736fa Mon Sep 17 00:00:00 2001 From: Akhil Date: Tue, 31 Mar 2026 15:53:12 +0530 Subject: [PATCH 4/4] fix: keep color of text to avoid default theme regression --- core/css/server.css | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/css/server.css b/core/css/server.css index c7c5976..4764eac 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -471,9 +471,6 @@ input.primary, mask: unset; } -[data-theme-light] #header #unified-search svg { - color: var(--icon-inactive-color); -} .notifications-button.hasNotifications { opacity: 0.6 !important; -- GitLab