diff options
| author | Ken D'Ambrosio <ken@jots.org> | 2026-06-09 13:09:23 +0000 |
|---|---|---|
| committer | Ken D'Ambrosio <ken@jots.org> | 2026-06-09 13:09:23 +0000 |
| commit | c13a40a970be156a231200c20362636b198d32ec (patch) | |
| tree | 9e7c0103d861bbd4dd5877d244431ca5ae07327f /public/css | |
| parent | cf1385bbd6d88a8db9f615512564e150c85a0b5f (diff) | |
Add face pool, blacklisting, and action explanations to people admin
Removed faces now go to an "Unidentified pool" cluster rather than
disappearing. Deleting a cluster blacklists all its members so they are
skipped by future re-clustering runs. Pool faces can be assigned to a
named person or individually blacklisted. A plain-English info box on
the detail page explains what each action does and that no photo files
are ever modified.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'public/css')
| -rw-r--r-- | public/css/style.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/public/css/style.css b/public/css/style.css index 64c19e3..877bdde 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -480,6 +480,21 @@ tr.delete-marked td { background: rgba(192,57,43,.08); } .name-input:focus { border-color: var(--accent); outline: none; } /* ── People — detail page ──────────────────────────────────────────────── */ +.people-info-box { + margin: 12px 0 24px; + padding: 10px 14px; + background: var(--bg2); border-left: 3px solid var(--accent); border-radius: var(--radius); + font-size: .85rem; color: var(--text-dim); line-height: 1.5; +} +.people-info-box em { color: var(--text-dim); } + +.people-pool-row { + display: flex; align-items: center; gap: 14px; flex-wrap: wrap; + padding: 12px 14px; margin-bottom: 16px; + background: var(--bg2); border: 1px solid #5a4a1a; border-radius: var(--radius); +} +.pool-label { color: #c8a84a; font-weight: 500; } + .face-detail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(116px, 1fr)); |
