Skip to content
Snippets Groups Projects
Unverified Commit c42b7214 authored by Jan-Christoph Borchardt's avatar Jan-Christoph Borchardt
Browse files

Dark theme: Prevent slideshow icons from going dark

parent 4c18cc34
No related branches found
No related tags found
No related merge requests found
...@@ -45,6 +45,13 @@ $color-border-dark: lighten($color-main-background, 14%); ...@@ -45,6 +45,13 @@ $color-border-dark: lighten($color-main-background, 14%);
filter: invert(100%); filter: invert(100%);
} }
// since svg icons are inverted, revert to white for the header
.header-right > * {
[class^='icon-'], [class*=' icon-'] {
filter: invert(100%);
}
}
.bubble, .bubble,
.app-navigation-entry-menu, .app-navigation-entry-menu,
.popovermenu { .popovermenu {
...@@ -65,9 +72,9 @@ $color-border-dark: lighten($color-main-background, 14%); ...@@ -65,9 +72,9 @@ $color-border-dark: lighten($color-main-background, 14%);
border: 1px solid var(--color-border); border: 1px solid var(--color-border);
} }
// since svg icons are inverted, revert to white for the header // Prevent slideshow icons from going dark
.header-right > * { #slideshow {
[class^='icon-'], [class*=' icon-'] { [class^='icon-'], [class*=' icon-']{
filter: invert(100%); filter: invert(100%);
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment