Dark theme: Prevent slideshow icons from going dark

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan-Christoph Borchardt 2019-01-17 12:20:49 +01:00
parent 4c18cc34f3
commit c42b72149c
No known key found for this signature in database
GPG Key ID: CBD846FC845CBE17
1 changed files with 10 additions and 3 deletions

View File

@ -45,6 +45,13 @@ $color-border-dark: lighten($color-main-background, 14%);
filter: invert(100%);
}
// since svg icons are inverted, revert to white for the header
.header-right > * {
[class^='icon-'], [class*=' icon-'] {
filter: invert(100%);
}
}
.bubble,
.app-navigation-entry-menu,
.popovermenu {
@ -65,9 +72,9 @@ $color-border-dark: lighten($color-main-background, 14%);
border: 1px solid var(--color-border);
}
// since svg icons are inverted, revert to white for the header
.header-right > * {
[class^='icon-'], [class*=' icon-'] {
// Prevent slideshow icons from going dark
#slideshow {
[class^='icon-'], [class*=' icon-']{
filter: invert(100%);
}
}