summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rw-r--r--public/css/style.css43
1 files changed, 43 insertions, 0 deletions
diff --git a/public/css/style.css b/public/css/style.css
index ec22f39..ba9b822 100644
--- a/public/css/style.css
+++ b/public/css/style.css
@@ -421,6 +421,49 @@ tr.delete-marked td { background: rgba(192,57,43,.08); }
padding: 12px 14px; border-radius: var(--radius); max-height: 340px;
overflow-y: auto; white-space: pre-wrap; word-break: break-all; margin: 0; }
+/* ── People — admin ───────────────────────────────────────────────────── */
+.admin-people h1 { font-size: 1.4rem; margin: 16px 0; }
+
+.people-admin-list { margin-top: 24px; display: flex; flex-direction: column; gap: 4px; }
+
+.people-admin-row {
+ display: flex; align-items: center; gap: 14px;
+ padding: 10px 12px;
+ background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
+}
+.people-admin-row:hover { background: var(--bg3); }
+.unnamed-cluster { opacity: .7; }
+.unnamed-cluster:hover { opacity: 1; }
+
+.face-samples { display: flex; gap: 4px; align-items: center; flex-shrink: 0; }
+.face-samples img { border-radius: 50%; object-fit: cover; border: 2px solid var(--bg3); }
+.face-more { font-size: .8rem; color: var(--text-dim); white-space: nowrap; min-width: 28px; }
+
+.people-admin-meta { display: flex; align-items: center; gap: 10px; flex: 1; flex-wrap: wrap; }
+.face-count { font-size: .8rem; color: var(--text-dim); white-space: nowrap; min-width: 64px; }
+
+.name-form { display: flex; align-items: center; gap: 6px; flex: 1; }
+.name-input {
+ flex: 1; max-width: 280px;
+ background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius);
+ color: var(--text); padding: 5px 10px; font-size: .9rem;
+}
+.name-input:focus { border-color: var(--accent); outline: none; }
+
+/* ── People — public ───────────────────────────────────────────────────── */
+.people-grid { margin-top: 8px; }
+
+.person-tile {
+ display: block; border-radius: var(--radius); overflow: hidden;
+ background: var(--bg2); text-decoration: none;
+ transition: transform .15s, box-shadow .15s;
+}
+.person-tile:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.5); text-decoration: none; }
+.person-tile .thumb-wrap img { transition: transform .2s; }
+.person-tile:hover .thumb-wrap img { transform: scale(1.04); }
+.person-name { padding: 7px 10px 2px; font-size: .9rem; font-weight: 500; color: var(--text); }
+.person-count { padding: 0 10px 8px; font-size: .75rem; color: var(--text-dim); }
+
/* ── Admin upload ──────────────────────────────────────────────────────── */
.admin-upload { margin-top: 32px; }
.admin-upload h2 { font-size: 1rem; color: var(--text-dim); margin-bottom: 6px; }