feat: client-side session search by name, date, and notes (2.4.0)

Add a search bar to the sessions list panel that filters rows in real time.
Searches display label, ISO date, month/year, and session notes. The count
badge updates to show matching/total; a no-results message appears when the
query has no matches.
This commit is contained in:
SowinskiBraeden committed 2026-06-26 21:30:22 -07:00
1 parent a5cb488b91
commit 0e34600714
3 files changed
+57 -3

No files matched your search

+23
View File
@@ -2346,6 +2346,29 @@ select.control { cursor: pointer; }
}
/* Session create form — horizontal 3-col grid */
.sessions-search-bar {
display: flex;
align-items: center;
gap: 8px;
padding: 10px 16px;
border-bottom: 1px solid var(--border);
background: var(--surface-sunk);
}
.sessions-search-bar__icon {
color: var(--faintest);
flex-shrink: 0;
}
.sessions-search-bar__input {
flex: 1;
background: none;
border: none;
outline: none;
font-size: .85rem;
color: var(--text);
font-family: inherit;
}
.sessions-search-bar__input::placeholder { color: var(--faintest); }
.session-create-row {
display: grid;
grid-template-columns: 1fr 1fr 1fr;