Update muted icon in conversation list

This commit is contained in:
Evan Hahn 2021-10-14 10:48:48 -05:00 committed by GitHub
parent c74315315b
commit fbb15ed42e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 62 additions and 42 deletions

View file

@ -5848,6 +5848,8 @@ button.module-image__border-overlay:focus {
}
&__name {
align-items: center;
display: flex;
flex-grow: 1;
flex-shrink: 1;
@ -5863,6 +5865,34 @@ button.module-image__border-overlay:focus {
@include dark-theme {
color: $color-gray-05;
}
&__contact-name {
overflow: hidden;
text-overflow: ellipsis;
}
&__mute-icon {
$size: 14px;
height: $size;
margin-inline-start: 8px;
min-width: $size;
width: $size;
@include light-theme {
@include color-svg(
'../images/icons/v2/bell-disabled-outline-24.svg',
$color-gray-45
);
}
@include dark-theme {
@include color-svg(
'../images/icons/v2/bell-disabled-solid-24.svg',
$color-gray-25
);
}
}
}
&__date {
@ -5926,27 +5956,6 @@ button.module-image__border-overlay:focus {
height: 36px; // two lines
}
&__muted {
display: inline-block;
height: 14px;
margin-right: 4px;
vertical-align: middle;
width: 14px;
@include light-theme {
@include color-svg(
'../images/icons/v2/sound-off-outline-24.svg',
$color-gray-60
);
}
@include dark-theme {
@include color-svg(
'../images/icons/v2/sound-off-outline-24.svg',
$color-gray-25
);
}
}
&__message-request {
@include font-body-2-bold;