diff options
author | szaimen <szaimen@e.mail.de> | 2022-09-07 22:45:21 +0200 |
---|---|---|
committer | szaimen <szaimen@e.mail.de> | 2022-09-07 23:21:35 +0200 |
commit | 4636524b7ed27f5a79ad337101379dd4101517d9 (patch) | |
tree | fc9fec0cc6179da805e34ed9a14913185985a499 /apps/theming/lib/Themes/DarkTheme.php | |
parent | 9e0a524a203c3eee696fcb7bef3ca82ebced1c14 (diff) | |
download | nextcloud-server-4636524b7ed27f5a79ad337101379dd4101517d9.tar.gz nextcloud-server-4636524b7ed27f5a79ad337101379dd4101517d9.zip |
fix scrollbar visiblity
Signed-off-by: szaimen <szaimen@e.mail.de>
Diffstat (limited to 'apps/theming/lib/Themes/DarkTheme.php')
-rw-r--r-- | apps/theming/lib/Themes/DarkTheme.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/theming/lib/Themes/DarkTheme.php b/apps/theming/lib/Themes/DarkTheme.php index dd894635751..6a9fc531a3b 100644 --- a/apps/theming/lib/Themes/DarkTheme.php +++ b/apps/theming/lib/Themes/DarkTheme.php @@ -63,6 +63,8 @@ class DarkTheme extends DefaultTheme implements ITheme { '--color-main-background' => $colorMainBackground, '--color-main-background-rgb' => $colorMainBackgroundRGB, + '--color-scrollbar' => $this->util->lighten($colorMainBackground, 15), + '--color-background-hover' => $this->util->lighten($colorMainBackground, 4), '--color-background-dark' => $this->util->lighten($colorMainBackground, 7), '--color-background-darker' => $this->util->lighten($colorMainBackground, 14), |