mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Dark theme: Prevent slideshow icons from going dark
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
parent
4c18cc34f3
commit
c42b72149c
1 changed files with 10 additions and 3 deletions
|
|
@ -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%);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue