Add library presence scan, playlist import, responsive add/remove actions and job status UI

This commit is contained in:
J0Z1L 2026-02-28 00:33:16 +01:00
parent 083dcbd992
commit 99568cb8e2
8 changed files with 613 additions and 104 deletions

View file

@ -135,6 +135,36 @@ button:hover {
font-size: 0.9rem;
}
.pill {
display: inline-block;
border-radius: 999px;
padding: 0.2rem 0.5rem;
font-size: 0.75rem;
font-weight: 700;
}
.pill.exists {
background: #14532d;
color: #bbf7d0;
}
.pill.missing {
background: #1e3a8a;
color: #bfdbfe;
}
#jobList {
display: grid;
gap: 0.5rem;
}
.job-row {
border: 1px solid var(--border);
border-radius: 8px;
padding: 0.5rem 0.7rem;
font-size: 0.9rem;
}
dialog {
border: 1px solid var(--border);
border-radius: 12px;