diff options
| author | Ken D'Ambrosio <ken@jots.org> | 2026-06-09 14:09:19 +0000 |
|---|---|---|
| committer | Ken D'Ambrosio <ken@jots.org> | 2026-06-09 14:09:19 +0000 |
| commit | a942b4e83d8c3c71020fdc6ae93954ddfa2ea338 (patch) | |
| tree | 63deaef83c0cab7d4c51b2f95fc03966d21f8e49 /public/css | |
| parent | c13a40a970be156a231200c20362636b198d32ec (diff) | |
Fix New Person flow: redirect to new cluster, show hero face, detect duplicate names
After moving a face to "New Person", the user is now taken directly to
that cluster's detail page. If it's a single unnamed cluster, the face
is shown prominently at the top. Typing an existing name on the name
form triggers a confirm dialog: OK merges into the existing person's
cluster, Cancel saves as a new separate person with the same name.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'public/css')
| -rw-r--r-- | public/css/style.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/public/css/style.css b/public/css/style.css index 877bdde..f522bff 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -495,6 +495,14 @@ tr.delete-marked td { background: rgba(192,57,43,.08); } } .pool-label { color: #c8a84a; font-weight: 500; } +.new-person-hero { + display: flex; flex-direction: column; align-items: flex-start; + margin-bottom: 16px; +} +.new-person-hero .face-detail-thumb img { + width: 140px; height: 140px; border-radius: 8px; +} + .face-detail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(116px, 1fr)); |
