From 71e394d9cf0dbcdba1875edbb53aedc6a326c514 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 17 Jan 2019 15:15:37 +0100 Subject: [PATCH] Fix empty content icons on darktheme Signed-off-by: Joas Schilling --- apps/accessibility/css/themedark.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/accessibility/css/themedark.scss b/apps/accessibility/css/themedark.scss index 8bd5be949c..84f3d99c59 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%); } }