status_modal: Correct light-mode background color.

This commit is contained in:
Karl Stolley
2025-06-16 10:05:59 -05:00
committed by Tim Abbott
parent 5ba7c2bddb
commit c5f0a5daa1
2 changed files with 13 additions and 0 deletions

View File

@@ -1399,6 +1399,15 @@
hsl(0deg 0% 80%),
hsl(0deg 0% 0% / 60%)
);
/* TODO: Light mode uses browser-default white
backgrounds; we should extend the use of this
color variable to 1) explicitly set the
background color of inputs, and 2) clean up a
lingering stack of selectors in dark_theme.css. */
--color-background-input: light-dark(
hsl(0deg 0% 100%),
hsl(0deg 0% 0% / 20%)
);
/* Link colors */
--color-text-link: light-dark(hsl(210deg 94% 42%), hsl(200deg 100% 50%));
--color-text-link-decoration: light-dark(

View File

@@ -11,6 +11,7 @@
border: 1px solid;
border-color: hsl(0deg 0% 0% / 60%);
border-radius: 5px;
background-color: var(--color-background-input);
& input.user-status {
grid-area: search-input;
@@ -18,6 +19,9 @@
border: none;
outline: none;
box-shadow: none;
/* Transparent here is to allow the input
background set on the wrapper to show
through. */
background-color: transparent;
margin: 0;