diff --git a/public/admin.css b/public/admin.css index 2959bf3..a80738b 100644 --- a/public/admin.css +++ b/public/admin.css @@ -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; diff --git a/public/admin.html b/public/admin.html index 91dd603..74f9edd 100644 --- a/public/admin.html +++ b/public/admin.html @@ -74,6 +74,7 @@