diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2025-02-05 10:03:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-05 10:03:34 +0100 |
commit | 1407a1d1d261d244895d0c6e1a7011c086e15148 (patch) | |
tree | 54a4c3291712831cf87e0953de848bce570ad16f | |
parent | 31b40aba25f0f1e87b5e8b3cb06a622a1aed86b5 (diff) | |
parent | 6679c428f6b22bc69638b3e8c6a8f67b24728a16 (diff) | |
download | nextcloud-server-1407a1d1d261d244895d0c6e1a7011c086e15148.tar.gz nextcloud-server-1407a1d1d261d244895d0c6e1a7011c086e15148.zip |
Merge pull request #50657 from nextcloud/fix/highcontras-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', |