Fix the theming of the share menu logos for the system, black and dracula themes (#2329)
This commit is contained in:
parent
f4aff3964b
commit
809274182c
|
@ -29,10 +29,15 @@
|
||||||
width: auto
|
width: auto
|
||||||
|
|
||||||
@at-root
|
@at-root
|
||||||
.dark &
|
.dark &, .system[data-system-theme*='dark'] &
|
||||||
filter: brightness(0.868)
|
filter: brightness(0.868)
|
||||||
|
|
||||||
.light &
|
.black &
|
||||||
|
filter: brightness(0.933)
|
||||||
|
|
||||||
|
/* no changes for the dracula theme */
|
||||||
|
|
||||||
|
.light &, .system[data-system-theme*='light'] &
|
||||||
filter: invert(0.87)
|
filter: invert(0.87)
|
||||||
|
|
||||||
.invidious
|
.invidious
|
||||||
|
@ -48,8 +53,11 @@
|
||||||
margin-right: 2px
|
margin-right: 2px
|
||||||
|
|
||||||
@at-root
|
@at-root
|
||||||
.dark &
|
.dark &,
|
||||||
|
.black &,
|
||||||
|
.dracula &,
|
||||||
|
.system[data-system-theme*='dark'] &
|
||||||
background-image: url(~../../assets/img/invidious-logo-dark.svg)
|
background-image: url(~../../assets/img/invidious-logo-dark.svg)
|
||||||
|
|
||||||
.light &
|
.light &, .system[data-system-theme*='light'] &
|
||||||
background-image: url(~../../assets/img/invidious-logo-light.svg)
|
background-image: url(~../../assets/img/invidious-logo-light.svg)
|
||||||
|
|
Loading…
Reference in New Issue