Use 1x icon in View-once bubbles, explanatory expired toasts

This commit is contained in:
Scott Nonnenberg 2020-01-10 08:29:51 -08:00 committed by Ken Powers
parent 14cc11d5de
commit 4f50c0b093
11 changed files with 96 additions and 34 deletions

View file

@ -366,8 +366,6 @@
}
.module-message__container--with-tap-to-view-expired {
cursor: default;
@include light-theme {
border: 1px solid $color-gray-15;
background-color: $color-white;
@ -440,16 +438,16 @@
height: 20px;
@include light-theme {
@include color-svg('../images/icons/v2/play-solid-24.svg', $color-white);
@include color-svg('../images/icons/v2/view-once-24.svg', $color-white);
}
@include dark-theme {
@include color-svg('../images/icons/v2/play-solid-24.svg', $color-gray-05);
@include color-svg('../images/icons/v2/view-once-24.svg', $color-gray-05);
}
@include ios-theme {
@include color-svg('../images/icons/v2/play-solid-24.svg', $color-gray-90);
@include color-svg('../images/icons/v2/view-once-24.svg', $color-gray-90);
}
@include ios-dark-theme {
@include color-svg('../images/icons/v2/play-solid-24.svg', $color-gray-05);
@include color-svg('../images/icons/v2/view-once-24.svg', $color-gray-05);
}
}
.module-message__tap-to-view__icon--outgoing {
@ -465,28 +463,16 @@
}
.module-message__tap-to-view__icon--expired {
@include light-theme {
@include color-svg(
'../images/icons/v2/play-outline-24.svg',
$color-gray-75
);
@include color-svg('../images/icons/v2/viewed-once-24.svg', $color-gray-75);
}
@include dark-theme {
@include color-svg(
'../images/icons/v2/play-outline-24.svg',
$color-gray-05
);
@include color-svg('../images/icons/v2/viewed-once-24.svg', $color-gray-05);
}
@include ios-theme {
@include color-svg(
'../images/icons/v2/play-outline-24.svg',
$color-gray-75
);
@include color-svg('../images/icons/v2/viewed-once-24.svg', $color-gray-75);
}
@include ios-dark-theme {
@include color-svg(
'../images/icons/v2/play-outline-24.svg',
$color-gray-05
);
@include color-svg('../images/icons/v2/viewed-once-24.svg', $color-gray-05);
}
}
.module-message__tap-to-view__text {