mirror of https://github.com/zulip/zulip.git
dark-mode: Make "error" alerts compatible.
This makes them compatible by making the backgrounds darker and the text base color.
This commit is contained in:
parent
ca6ea11a98
commit
189832deed
|
@ -296,6 +296,17 @@ body.dark-mode .alert.alert-success {
|
||||||
border-color: #1e9e7f;
|
border-color: #1e9e7f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body.dark-mode .alert.alert-error,
|
||||||
|
body.dark-mode .alert.alert-danger {
|
||||||
|
background: hsl(318, 12%, 21%);
|
||||||
|
color: inherit;
|
||||||
|
border: 1px solid hsl(0, 75%, 65%);
|
||||||
|
}
|
||||||
|
|
||||||
|
body.dark-mode .alert .close {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
body.dark-mode .alert-box .alert,
|
body.dark-mode .alert-box .alert,
|
||||||
body.dark-mode .alert.alert-error {
|
body.dark-mode .alert.alert-error {
|
||||||
background: hsl(318, 12%, 21%);
|
background: hsl(318, 12%, 21%);
|
||||||
|
|
Loading…
Reference in New Issue