Browse Source

Merge pull request #13652 from nextcloud/bugfix/noid/darktheme-black-icon-on-empty-content

Fix empty content icons in header on darktheme
pull/13774/head
Jan-Christoph Borchardt 7 years ago
committed by GitHub
parent
commit
f0ea6961f9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      apps/accessibility/css/themedark.scss

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

Loading…
Cancel
Save