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

Fix empty content icons in header on darktheme
This commit is contained in:
Jan-Christoph Borchardt 2019-01-23 23:44:46 +01:00 committed by GitHub
commit f0ea6961f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

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