Improve error card border color on dark theme

This commit is contained in:
syeopite 2025-02-28 21:01:26 -08:00
parent 180d77276b
commit dd16f15aae
No known key found for this signature in database
GPG Key ID: A73C186DA3955A1A

View File

@ -550,6 +550,10 @@ span > select {
color: #565d64; color: #565d64;
} }
.light-theme .error-card {
border: 1px solid black;
}
@media (prefers-color-scheme: light) { @media (prefers-color-scheme: light) {
.no-theme a:hover, .no-theme a:hover,
.no-theme a:active, .no-theme a:active,
@ -596,6 +600,10 @@ span > select {
.light-theme .pure-menu-heading { .light-theme .pure-menu-heading {
color: #565d64; color: #565d64;
} }
.no-theme .error-card {
border: 1px solid black;
}
} }
@ -658,6 +666,10 @@ body.dark-theme {
color: inherit; color: inherit;
} }
.dark-theme .error-card {
border: 1px solid #5e5e5e;
}
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
.no-theme a:hover, .no-theme a:hover,
.no-theme a:active, .no-theme a:active,
@ -719,6 +731,10 @@ body.dark-theme {
.no-theme footer a { .no-theme footer a {
color: #adadad !important; color: #adadad !important;
} }
.no-theme .error-card {
border: 1px solid #5e5e5e;
}
} }
@ -824,7 +840,6 @@ h1, h2, h3, h4, h5, p,
padding: 25px; padding: 25px;
margin-bottom: 1em; margin-bottom: 1em;
border-radius: 10px; border-radius: 10px;
border: 1px solid black;
box-sizing: border-box; box-sizing: border-box;
height: 100%; height: 100%;
} }