From edbb4e8fa849b3f85d90cf36285684cf8d1d909d Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 3 Sep 2025 12:58:33 +0200 Subject: [PATCH] fix(theming): Remove header icon mask in dark mode high contrast as well Signed-off-by: Joas Schilling --- apps/theming/lib/Themes/DarkHighContrastTheme.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/theming/lib/Themes/DarkHighContrastTheme.php b/apps/theming/lib/Themes/DarkHighContrastTheme.php index afa324d2eca..27794d56d89 100644 --- a/apps/theming/lib/Themes/DarkHighContrastTheme.php +++ b/apps/theming/lib/Themes/DarkHighContrastTheme.php @@ -107,6 +107,9 @@ class DarkHighContrastTheme extends DarkTheme implements ITheme { '--color-box-shadow-rgb' => $colorMainText, '--color-box-shadow' => $colorMainText, + + // remove the gradient from the app icons + '--header-menu-icon-mask' => 'none', ] ); }