Update muted icon in conversation list
This commit is contained in:
parent
c74315315b
commit
fbb15ed42e
6 changed files with 62 additions and 42 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue