fix(dashboard): E-Mail Bereich auf 50% Breite begrenzen, Textumbruch aktivieren

This commit is contained in:
Thomas Reitz 2026-03-13 11:16:28 +01:00
parent f007765872
commit 53666122d0

View file

@ -122,6 +122,7 @@
gap: 1rem; gap: 1rem;
align-items: flex-start; align-items: flex-start;
min-height: 300px; min-height: 300px;
max-width: 50%;
} }
/* ── Ordner-Baum (Sidebar) ── */ /* ── Ordner-Baum (Sidebar) ── */
@ -240,15 +241,13 @@
.emailSubject { .emailSubject {
display: flex; display: flex;
align-items: center; align-items: flex-start;
gap: 0.375rem; gap: 0.375rem;
font-size: 0.9375rem; font-size: 0.9375rem;
font-weight: 400; font-weight: 400;
color: var(--color-text); color: var(--color-text);
flex: 1; flex: 1;
white-space: nowrap; word-break: break-word;
overflow: hidden;
text-overflow: ellipsis;
} }
.emailCardUnread .emailSubject { .emailCardUnread .emailSubject {
@ -280,9 +279,7 @@
.emailFrom { .emailFrom {
font-size: 0.8125rem; font-size: 0.8125rem;
color: var(--color-text-muted); color: var(--color-text-muted);
white-space: nowrap; word-break: break-word;
overflow: hidden;
text-overflow: ellipsis;
} }
.crmBadge { .crmBadge {
@ -306,18 +303,16 @@
font-size: 0.8125rem; font-size: 0.8125rem;
color: var(--color-text-muted); color: var(--color-text-muted);
margin: 0; margin: 0;
white-space: nowrap; line-height: 1.45;
overflow: hidden; word-break: break-word;
text-overflow: ellipsis;
} }
/* ── Aktivität-Button (absolut positioniert innerhalb der Karte) ── */ /* ── Aktivität-Button (absolut positioniert innerhalb der Karte) ── */
.saveActivityBtn { .saveActivityBtn {
position: absolute; position: absolute;
top: 50%; top: 0.75rem;
right: 0.75rem; right: 0.75rem;
transform: translateY(-50%);
padding: 0.3rem 0.625rem; padding: 0.3rem 0.625rem;
font-size: 0.75rem; font-size: 0.75rem;
font-weight: 600; font-weight: 600;