diff options
author | Joas Schilling <coding@schilljs.com> | 2021-02-12 13:18:39 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-02-12 13:18:39 +0100 |
commit | 9c1983b7144007af16a450d344020e17b87f3568 (patch) | |
tree | 563bf23a50eb5f3847253ca439f0bc26d1d40bad | |
parent | 361f160d0daa4c3baf84c801118c0d85886aa6d9 (diff) | |
download | nextcloud-server-9c1983b7144007af16a450d344020e17b87f3568.tar.gz nextcloud-server-9c1983b7144007af16a450d344020e17b87f3568.zip |
Fix hover background for dark mode
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r-- | apps/accessibility/css/dark.scss | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/accessibility/css/dark.scss b/apps/accessibility/css/dark.scss index 90f9e80f51f..564ba8be507 100644 --- a/apps/accessibility/css/dark.scss +++ b/apps/accessibility/css/dark.scss @@ -2,8 +2,9 @@ $color-main-text: #d8d8d8; $color-main-background: #181818; -$color-background-dark: lighten($color-main-background, 4%); -$color-background-darker: lighten($color-main-background, 8%); +$color-background-hover: lighten($color-main-background, 4%); +$color-background-dark: lighten($color-main-background, 7%); +$color-background-darker: lighten($color-main-background, 14%); $color-placeholder-light: lighten($color-main-background, 10%); $color-placeholder-dark: lighten($color-main-background, 20%); |