diff options
author | Joas Schilling <coding@schilljs.com> | 2019-01-17 15:15:37 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2019-01-23 12:55:19 +0100 |
commit | 71e394d9cf0dbcdba1875edbb53aedc6a326c514 (patch) | |
tree | f7d783a3c010b072e373499d048163023f43a2f7 /apps/accessibility | |
parent | d59de22525a44ad413e1a57c3e4f6d91434d53a9 (diff) | |
download | nextcloud-server-71e394d9cf0dbcdba1875edbb53aedc6a326c514.tar.gz nextcloud-server-71e394d9cf0dbcdba1875edbb53aedc6a326c514.zip |
Fix empty content icons on darktheme
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/accessibility')
-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%); } } |