Browse Source

Fix empty content icons on darktheme

Signed-off-by: Joas Schilling <coding@schilljs.com>
tags/v16.0.0alpha1
Joas Schilling 5 years ago
parent
commit
71e394d9cf
No account linked to committer's email address
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      apps/accessibility/css/themedark.scss

+ 2
- 1
apps/accessibility/css/themedark.scss View File

@@ -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%);
}
}

Loading…
Cancel
Save