fix(mail(css)): limit some text formatting to attachment cards

pull/294/head
Francis Lachapelle 2021-02-08 11:25:05 -05:00
parent 0088b9f7f5
commit 9dcdaedb40
1 changed files with 15 additions and 12 deletions

View File

@ -247,19 +247,22 @@ md-sidenav {
font-weight: $sg-font-regular;
}
// Limit height of attachments card, format content-type labels
.mailer_mailcontent {
md-card {
md-card-content {
padding: $baseline-grid;
p {
@extend .md-caption;
line-height: $sg-line-height-2;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
.sg-label-outline {
border-color: $colorGrey400;
color: $colorGrey600;
.sg-mail-part {
md-card {
md-card-content {
padding: $baseline-grid;
p {
@extend .md-caption;
line-height: $sg-line-height-2;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
.sg-label-outline {
border-color: $colorGrey400;
color: $colorGrey600;
}
}
}
}