Chats: display attachments in a shitty letterbox to support FireFox

better-thread-display
Alex Gleason 4 years ago
parent fdaa9f24ce
commit 255419a6e9
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -155,6 +155,7 @@ class ChatMessageList extends ImmutablePureComponent {
const attachment = chatMessage.get('attachment'); const attachment = chatMessage.get('attachment');
if (!attachment) return null; if (!attachment) return null;
return ( return (
<div className='chat-message__media'>
<Bundle fetchComponent={MediaGallery}> <Bundle fetchComponent={MediaGallery}>
{Component => ( {Component => (
<Component <Component
@ -164,6 +165,7 @@ class ChatMessageList extends ImmutablePureComponent {
/> />
)} )}
</Bundle> </Bundle>
</div>
); );
} }

@ -342,8 +342,12 @@
} }
} }
.chat-message__media {
height: 120px;
}
.chat-message .media-gallery { .chat-message .media-gallery {
height: auto !important; height: 100% !important;
margin: 4px 0 8px; margin: 4px 0 8px;
.spoiler-button { .spoiler-button {
@ -353,7 +357,7 @@
.media-gallery__item:not(.media-gallery__item--image) { .media-gallery__item:not(.media-gallery__item--image) {
max-width: 100%; max-width: 100%;
width: 120px !important; width: 120px !important;
height: 70px !important; height: 100% !important;
} }
&__preview { &__preview {

Loading…
Cancel
Save