소스 검색

Dark theme: Prevent slideshow icons from going dark

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
tags/v16.0.0alpha1
Jan-Christoph Borchardt 5 년 전
부모
커밋
c42b72149c
No account linked to committer's email address
1개의 변경된 파일10개의 추가작업 그리고 3개의 파일을 삭제
  1. 10
    3
      apps/accessibility/css/themedark.scss

+ 10
- 3
apps/accessibility/css/themedark.scss 파일 보기

@@ -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…
취소
저장