diff options
Diffstat (limited to 'apps')
-rw-r--r-- | apps/theming/css/default.css | 1 | ||||
-rw-r--r-- | apps/theming/lib/Themes/DarkHighContrastTheme.php | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/apps/theming/css/default.css b/apps/theming/css/default.css index 5c0b3ec337c..ad5b27530c3 100644 --- a/apps/theming/css/default.css +++ b/apps/theming/css/default.css @@ -22,6 +22,7 @@ --color-text-light: var(--color-main-text); /** @deprecated use `--color-text-maxcontrast` instead */ --color-text-lighter: var(--color-text-maxcontrast); + --color-scrollbar: var(--color-border-maxcontrast) transparent; --color-error: #DB0606; --color-error-rgb: 219,6,6; --color-error-hover: #df2525; diff --git a/apps/theming/lib/Themes/DarkHighContrastTheme.php b/apps/theming/lib/Themes/DarkHighContrastTheme.php index cff1f1f9a14..127a0bd464c 100644 --- a/apps/theming/lib/Themes/DarkHighContrastTheme.php +++ b/apps/theming/lib/Themes/DarkHighContrastTheme.php @@ -89,6 +89,8 @@ 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', + // used for the icon loading animation '--color-loading-light' => '#000000', '--color-loading-dark' => '#dddddd', |