feat(admin): paperclip indicator for emails with attachments

Show an inline paperclip icon before the subject in the admin email
list when an email has attachments, with the count in a tooltip. Uses
the attachmentIds already stored in metadata, so no extra fetch.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
Julien Herr
2026-05-23 15:10:24 +02:00
parent f4e751e40b
commit 7226e718f7
3 changed files with 107 additions and 11 deletions
+18
View File
@@ -769,6 +769,24 @@ table.table code {
max-width: 100%;
}
.subject-cell {
display: flex;
align-items: center;
gap: 6px;
min-width: 0;
}
.subject-cell .truncate {
min-width: 0;
}
.attachment-indicator {
flex: 0 0 auto;
display: inline-flex;
align-items: center;
color: var(--color-text-secondary);
}
/* Compact copy-to-clipboard for table cells */
.copyable.copyable-inline {
margin-bottom: 0;