Add sort by last modified and search bar to note list

Default sort: last modified descending (pinned entity stays first
in entity view). Search bar at top filters by title substring
(case-insensitive).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
lucaronin
2026-02-14 19:46:44 +01:00
parent 085b9089f3
commit b343330cb7
4 changed files with 99 additions and 4 deletions

View File

@@ -29,6 +29,32 @@
border-radius: 10px;
}
/* Search */
.note-list__search {
padding: 8px 12px;
border-bottom: 1px solid #2a2a4a;
}
.note-list__search-input {
width: 100%;
padding: 6px 10px;
background: #1e1e3a;
border: 1px solid #2a2a4a;
border-radius: 6px;
color: #e0e0e0;
font-size: 13px;
outline: none;
box-sizing: border-box;
}
.note-list__search-input::placeholder {
color: #666;
}
.note-list__search-input:focus {
border-color: #4a4a7a;
}
.note-list__items {
flex: 1;
}