diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-18 13:43:30 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-18 13:44:11 +0200 |
commit | e51d1867c38f287d5e8115980b11cc749e7b0b21 (patch) | |
tree | 6c5491601c18fbf892fa09201b23b86e63d38f7e /core | |
parent | 0f299d1077ea1b0fd4b2d7809026cc9e0fe7bec0 (diff) | |
download | nextcloud-server-e51d1867c38f287d5e8115980b11cc749e7b0b21.tar.gz nextcloud-server-e51d1867c38f287d5e8115980b11cc749e7b0b21.zip |
Fix translucent controls bar for dark themes
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core')
-rw-r--r-- | core/css/variables.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/css/variables.scss b/core/css/variables.scss index 55eac440db6..3914389a53e 100644 --- a/core/css/variables.scss +++ b/core/css/variables.scss @@ -33,7 +33,7 @@ // DEPRECATED, please use CSS4 vars $color-main-text: #000 !default; $color-main-background: #fff !default; -$color-main-background-translucent: hsla(0, 100%, 100%, .97) !default; +$color-main-background-translucent: rgba($color-main-background, .97) !default; // used for different active/disabled states $color-background-dark: nc-darken($color-main-background, 7%) !default; |