fix(matcher): use folder path as series context

This commit is contained in:
Steppenstreuner
2026-08-28 20:01:15 +02:00
parent b8f042025d
commit 0844d303db
12 changed files with 475 additions and 47 deletions
+8
View File
@@ -97,6 +97,13 @@ dialog label { display: flex; flex-direction: column; gap: 0.2rem; margin: 0.5re
}
@keyframes spin { to { transform: rotate(360deg); } }
#quick-dialog { min-width: 480px; }
#series-dialog { min-width: 520px; }
.series-list { max-height: 45vh; overflow-y: auto; margin: 0.6rem 0; border: 1px solid var(--border); border-radius: 6px; }
.series-list label { flex-direction: row; align-items: center; gap: 0.5rem; margin: 0; padding: 0.35rem 0.6rem; color: var(--text); font-size: 0.9rem; }
.series-list label:nth-child(even) { background: rgba(255,255,255,0.03); }
.series-list input[type=checkbox] { flex: none; }
.series-list .num { flex: none; min-width: 3.2em; color: var(--muted); font-variant-numeric: tabular-nums; }
.series-list .gap { padding: 0.35rem 0.6rem; color: var(--muted); font-size: 0.85rem; }
#quick-results { display: flex; flex-direction: column; max-height: 50vh; overflow-y: auto; margin-top: 0.6rem; }
.ok { color: var(--ok); }
.error { color: #e08585; }
@@ -110,5 +117,6 @@ h3, h4 { margin: 0.8rem 0 0.6rem; }
main { padding: 0.8rem; }
.cards { grid-template-columns: 1fr; }
#quick-dialog { min-width: 0; width: 92vw; }
#series-dialog { min-width: 0; width: 92vw; }
td select { max-width: 200px; }
}