Allow renaming visitors

This commit is contained in:
rajchales-monito
2026-07-24 12:37:50 +02:00
parent b4e1d0ee1b
commit 45169e8113
3 changed files with 132 additions and 9 deletions
+28 -2
View File
@@ -280,13 +280,39 @@ label { display: grid; gap: 6px; color: var(--muted); font-size: 13px; }
color: var(--muted);
font-size: 12px;
}
.visitor-summary-row h2 {
.visitor-name-edit {
min-width: 0;
margin: 0 4px 0 0;
padding: 0;
display: inline-flex;
align-items: center;
gap: 7px;
border: 0;
background: transparent;
color: var(--ink);
font-size: 20px;
font-weight: 800;
line-height: 1.2;
}
.visitor-summary-row span {
.visitor-name-edit:hover {
background: transparent;
color: var(--brand);
filter: none;
}
.visitor-name-edit span {
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.visitor-name-edit svg {
width: 15px;
height: 15px;
flex: 0 0 auto;
fill: currentColor;
opacity: .64;
}
.visitor-summary-row > span {
border: 1px solid #e4ebe6;
border-radius: 999px;
padding: 2px 7px;