Search phase 1

This commit is contained in:
2026-04-29 14:12:18 +02:00
parent 1d8dfdb1da
commit eae5d1cc25
5 changed files with 235 additions and 0 deletions
+21
View File
@@ -359,6 +359,27 @@ textarea {
box-sizing: border-box;
}
/* === Search === */
.search-form {
display: flex;
gap: 0.25rem;
}
.search-input {
background: var(--bg-panel);
border: 1px solid var(--secondary);
color: var(--text);
font: inherit;
font-size: 0.9rem;
padding: 0.3rem 0.5rem;
min-width: 0;
width: 12rem;
max-width: 100%;
outline: none;
}
.search-input:focus {
border-color: var(--primary-hover);
}
/* === Muted text === */
.muted {
color: var(--text-muted);