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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
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%); |
|
|
|
} |
|
|
|
} |
|
|
|
|