Show operator presence near reply box

This commit is contained in:
rajchales-monito
2026-07-30 12:16:17 +02:00
parent 9a0f7dd224
commit deb090a882
3 changed files with 29 additions and 5 deletions
+19
View File
@@ -1194,6 +1194,25 @@ label { display: grid; gap: 6px; color: var(--muted); font-size: 13px; }
box-shadow: inset 0 0 0 2px var(--brand);
background: #edf8f3;
}
.reply-operator-presence {
width: fit-content;
max-width: 100%;
border: 1px solid #dfe9e4;
border-radius: 999px;
padding: 4px 9px;
background: #f8fbf9;
color: var(--muted);
font-size: 12px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.reply-operator-presence.hidden { display: none; }
.reply-operator-presence.typing {
border-color: #f7d8a8;
background: #fff8ed;
color: #8a5a00;
}
.reply-composer {
display: grid;
grid-template-columns: minmax(0, 1fr) 44px 88px;