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:
Brock Whittaker 2018-01-24 12:36:17 -08:00 committed by Tim Abbott
parent ca6ea11a98
commit 189832deed
1 changed files with 11 additions and 0 deletions

View File

@ -296,6 +296,17 @@ body.dark-mode .alert.alert-success {
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.alert-error {
background: hsl(318, 12%, 21%);