summaryrefslogtreecommitdiff
path: root/app/app.css
diff options
context:
space:
mode:
authoryyamashita <yyamashita@mosquit.one>2026-05-11 00:06:52 +0900
committeryyamashita <yyamashita@mosquit.one>2026-05-11 00:06:52 +0900
commite9e576abd9d6c6030aa4bb290e869890831488ad (patch)
treeec521f62ddffda13c30f5c964e01b9daa1b52851 /app/app.css
parent609dc6a3769d85e1cc4a8f06af58165be86b598c (diff)
Add lists feature (band recommendation lists with history)
New lists, list_entries, list_revisions tables; full CRUD routes under /lists; nav link in root. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'app/app.css')
-rw-r--r--app/app.css14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/app.css b/app/app.css
index 1129e5a..90dc85f 100644
--- a/app/app.css
+++ b/app/app.css
@@ -154,3 +154,17 @@ form input, form select, form textarea { width: 100%; }
.rev-time { font-size: .75rem; color: #6b7280; margin-top: .25rem; }
.rev-latest { font-size: .75rem; color: #60a5fa; flex-shrink: 0; }
.rev-snap { font-size: .75rem; color: #9ca3af; margin-top: .75rem; display: flex; flex-direction: column; gap: .125rem; }
+
+
+/* ── List entries (detail view) ── */
+
+.entry-list { display: flex; flex-direction: column; gap: .5rem; list-style: none; }
+.entry-list li { padding: .375rem 0; border-bottom: 1px solid #1f2937; }
+.entry-band { font-weight: 500; color: #e5e7eb; }
+.entry-note { font-size: .8rem; color: #6b7280; margin-top: .125rem; }
+
+/* ── Entry form rows (new/edit) ── */
+
+.entry-row { display: flex; gap: .5rem; align-items: center; margin-bottom: .375rem; }
+.entry-row .band-input { flex: 0 0 10rem; }
+.entry-row .note-input { flex: 1; min-width: 0; }