Browse Source

fix(theming): high contrast themes scrollbar

Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
pull/50657/head
skjnldsv 9 months ago
parent
commit
6679c428f6
  1. 2
      apps/theming/lib/Themes/DarkHighContrastTheme.php
  2. 2
      apps/theming/lib/Themes/HighContrastTheme.php

2
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',

2
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',

Loading…
Cancel
Save