Add delete message button

This commit is contained in:
dwrz
2026-06-12 19:26:30 +00:00
parent 1308954121
commit 0c1346bd77
4 changed files with 348 additions and 49 deletions

View File

@@ -579,6 +579,23 @@ body {
color: var(--color-primary);
}
@media (hover: hover) {
.message__action-btn--delete:hover {
color: var(--color-red);
}
}
/* Pending delete: yellow highlight, click again to confirm */
.message__action-btn--delete.pending {
color: var(--color-yellow);
}
@media (hover: hover) {
.message__action-btn--delete.pending:hover {
color: var(--color-yellow);
}
}
.message__actions {
display: flex;
align-items: center;