feat: add dropdown for multiple values

This commit is contained in:
2025-08-28 10:58:07 +02:00
parent 7d0537a922
commit e5e9dfd6cd
2 changed files with 11 additions and 1 deletions

View File

@@ -1810,6 +1810,7 @@ p {
font-weight: 500;
}
/* Adjust param-input to support <select> as well */
.param-input {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
@@ -1819,6 +1820,12 @@ p {
outline: none;
transition: border-color 0.2s ease, background 0.2s ease;
font-size: 0.9rem;
appearance: none;
}
.param-input option {
background: #1f2937;
color: #ecf0f1;
}
.param-input:focus {