diff options
author | skjnldsv <skjnldsv@protonmail.com> | 2025-02-05 08:36:14 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2025-02-05 09:04:27 +0000 |
commit | 8b14c72fbfba649fb233f0b4f0e7d07fbee7cf06 (patch) | |
tree | 5ed06c20398c903ef44955c1bafa94d4991c87dd | |
parent | 32e23c48169a267f68614023bcc4349f67ddc3c1 (diff) | |
download | nextcloud-server-backport/50657/stable30.tar.gz nextcloud-server-backport/50657/stable30.zip |
fix(theming): high contrast themes scrollbarbackport/50657/stable30
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
-rw-r--r-- | apps/theming/lib/Themes/DarkHighContrastTheme.php | 2 | ||||
-rw-r--r-- | apps/theming/lib/Themes/HighContrastTheme.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/theming/lib/Themes/DarkHighContrastTheme.php b/apps/theming/lib/Themes/DarkHighContrastTheme.php index 127a0bd464c..0c8b436d660 100644 --- a/apps/theming/lib/Themes/DarkHighContrastTheme.php +++ b/apps/theming/lib/Themes/DarkHighContrastTheme.php @@ -89,7 +89,7 @@ class DarkHighContrastTheme extends DarkTheme implements ITheme { '--color-info-hover' => $this->util->lighten($colorInfo, 10), '--color-info-text' => $this->util->lighten($colorInfo, 20), - '--color-scrollbar' => 'auto', + '--color-scrollbar' => 'auto transparent', // used for the icon loading animation '--color-loading-light' => '#000000', diff --git a/apps/theming/lib/Themes/HighContrastTheme.php b/apps/theming/lib/Themes/HighContrastTheme.php index 3eee51630ba..1d20ae251df 100644 --- a/apps/theming/lib/Themes/HighContrastTheme.php +++ b/apps/theming/lib/Themes/HighContrastTheme.php @@ -94,7 +94,7 @@ class HighContrastTheme extends DefaultTheme implements ITheme { '--color-favorite' => '#936B06', - '--color-scrollbar' => 'auto', + '--color-scrollbar' => 'auto transparent', // used for the icon loading animation '--color-loading-light' => '#dddddd', |