Merge branch 'clearnet' into transparent-pngs

pull/1784/head
Warrick Corfe-Tan 4 years ago
commit e84133ee1a

@ -130,9 +130,6 @@
border-radius: $session_message-container-border-radius;
overflow: hidden;
// no background by default for the attachment container
@include themify($themes) {
background: themed('inboxBackground');
}
}
.module-message--outgoing {
@ -1280,7 +1277,8 @@
.module-image {
overflow: hidden;
background-color: $color-white;
// background-color: $color-white;
background-color: rgba(0, 0, 0, 0);
position: relative;
display: inline-block;
margin: 1px;

@ -25,8 +25,14 @@
}
&__container--incoming {
@include themify($themes) {
background: themed('receivedMessageBackground');
&--opaque {
@include themify($themes) {
background: themed('receivedMessageBackground');
}
}
&--transparent {
background: none;
}
.module-message__text {

@ -401,7 +401,7 @@
// Module: Image
.module-image {
background-color: $color-black;
background: none;
}
.module-image__border-overlay {

Loading…
Cancel
Save