1
0

Use same styling for statuses in email as on web (#32073)

This commit is contained in:
Christian Schmidt 2024-09-26 13:48:01 +02:00 committed by GitHub
parent db57fe80c8
commit 00aaf77e04
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -168,6 +168,7 @@ table + p {
// Utility classes
.email-w-full {
table-layout: fixed;
width: 100%;
}
@ -587,7 +588,10 @@ table + p {
p {
font-size: 14px;
line-height: 20px;
margin-bottom: 20px;
color: #17063b;
white-space: pre-wrap;
unicode-bidi: plaintext;
}
a {
@ -598,6 +602,21 @@ table + p {
color: #563acc !important;
}
}
.invisible {
font-size: 0;
line-height: 0;
display: inline-block;
width: 0;
height: 0;
position: absolute;
}
.ellipsis {
&::after {
content: '';
}
}
}
.email-status-media {