mirror of https://github.com/zulip/zulip.git
app: Make automatic-scheme loading colors consistent with light/dark.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
77ac1a10de
commit
cc2278d6e2
|
@ -47,13 +47,16 @@
|
|||
animation-fill-mode: forwards;
|
||||
visibility: hidden;
|
||||
}
|
||||
:root.color-scheme-automatic #app-loading {
|
||||
color: hsl(0, 0%, 20%);
|
||||
}
|
||||
:root.dark-theme #app-loading {
|
||||
background-color: hsl(212, 28%, 18%);
|
||||
color: hsl(236, 33%, 90%);
|
||||
}
|
||||
@media (prefers-color-scheme: dark) {
|
||||
:root.color-scheme-automatic #app-loading {
|
||||
background-color: hsl(212, 28%, 18%);
|
||||
color: hsl(236, 33%, 90%);
|
||||
}
|
||||
}
|
||||
|
||||
.app-loading-spinner-container {
|
||||
position: relative;
|
||||
|
|
Loading…
Reference in New Issue