feat: add agent dropdown for task assignment (#1)

Co-authored-by: Christopher Mayor <toph.homelab@gmail.com>
Co-committed-by: Christopher Mayor <toph.homelab@gmail.com>
This commit was merged in pull request #1.
This commit is contained in:
2026-03-04 00:25:37 +00:00
committed by Chrstopher Mayor
parent 1804aa664b
commit 9af9e7b4d7
3 changed files with 59 additions and 1 deletions

View File

@@ -529,3 +529,30 @@ body {
max-height: none;
}
}
/* Agent Dropdown Styling */
#task-form select {
width: 100%;
padding: 0.75rem;
border: 1px solid var(--border);
border-radius: 8px;
font-size: 1rem;
background: var(--bg);
color: var(--fg);
cursor: pointer;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#task-form select:hover {
border-color: var(--primary);
}
#task-form select:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}
#task-form select option {
padding: 0.5rem;
}