From c13a40a970be156a231200c20362636b198d32ec Mon Sep 17 00:00:00 2001 From: Ken D'Ambrosio Date: Tue, 9 Jun 2026 13:09:23 +0000 Subject: 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 --- public/css/style.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'public/css/style.css') 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)); -- cgit v1.2.3