fix(admin): sync moderation status dropdown

This commit is contained in:
iamxvbaba 2026-07-26 22:44:01 +08:00
parent 8b866b2bb2
commit b742450938
8 changed files with 41 additions and 11 deletions

View file

@ -174,6 +174,7 @@ body {
button,
input,
select,
textarea {
font: inherit;
}

View file

@ -325,6 +325,7 @@
}
input,
select,
textarea {
color: var(--text);
background: var(--input-bg);
@ -339,12 +340,17 @@ textarea::placeholder {
color: var(--muted-2);
}
input {
input,
select {
width: 190px;
height: 34px;
padding: 0 10px;
}
select {
min-width: 220px;
}
textarea {
width: 100%;
padding: 9px 10px;
@ -352,6 +358,7 @@ textarea {
}
input:focus,
select:focus,
textarea:focus {
border-color: var(--brand);
box-shadow: 0 0 0 3px var(--focus);