diff options
author | Andy Scherzinger <info@andy-scherzinger.de> | 2025-02-05 11:04:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-05 11:04:50 +0100 |
commit | a0cd4d7396ab610769739f65b546a53d9a54d064 (patch) | |
tree | 66b47de4391ea3cf5a1a7ec9fe118df42952a6bc | |
parent | 1688edc222b5f46b5e58f9b9d8df285ae7d3d3c6 (diff) | |
parent | 38a65b00063641328b180164b01b6557d3b4da14 (diff) | |
download | nextcloud-server-a0cd4d7396ab610769739f65b546a53d9a54d064.tar.gz nextcloud-server-a0cd4d7396ab610769739f65b546a53d9a54d064.zip |
Merge pull request #50659 from nextcloud/backport/50657/stable31
[stable31] fix(theming): high contrast themes scrollbar
-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', |