mirror of
http://172.20.10.11:3000/gitadmin/INSIGHT-MVP.git
synced 2026-06-25 00:16:41 +02:00
fix(dashboard): E-Mail Bereich auf 50% Breite begrenzen, Textumbruch aktivieren
This commit is contained in:
parent
f007765872
commit
53666122d0
1 changed files with 7 additions and 12 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue