diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2019-01-23 23:44:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-23 23:44:46 +0100 |
commit | f0ea6961f9b3fddb68001dfe136dde92267a565e (patch) | |
tree | e497cdeb42ba977eaa56aa05d332e0d8bd1e0543 | |
parent | 425edf88d781b39565ff8f7ac160459e1b1efb40 (diff) | |
parent | 71e394d9cf0dbcdba1875edbb53aedc6a326c514 (diff) | |
download | nextcloud-server-f0ea6961f9b3fddb68001dfe136dde92267a565e.tar.gz nextcloud-server-f0ea6961f9b3fddb68001dfe136dde92267a565e.zip |
Merge pull request #13652 from nextcloud/bugfix/noid/darktheme-black-icon-on-empty-content
Fix empty content icons in header on darktheme
-rw-r--r-- | apps/accessibility/css/themedark.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/accessibility/css/themedark.scss b/apps/accessibility/css/themedark.scss index 8bd5be949ce..84f3d99c595 100644 --- a/apps/accessibility/css/themedark.scss +++ b/apps/accessibility/css/themedark.scss @@ -42,7 +42,8 @@ $color-border-dark: lighten($color-main-background, 14%); // since svg icons are inverted, revert to white for the header .header-right > * { - [class^='icon-'], [class*=' icon-'] { + >[class^='icon-'], + >[class*=' icon-'] { filter: invert(100%); } } |