Arty
Well-known member
Attachments in conversations are not responsive. Screenshot of attachment with small browser width:
Solution: add this to conversation.css
Used medium instead of narrow width because at resolution slightly bigger than default narrow width attachments still look squashed.
Solution: add this to conversation.css
Code:
<xen:if is="@enableResponsive">
@media (max-width:@maxResponsiveMediumWidth)
{
.Responsive .conversation_view .message .attachment
{
width: 100%;
}
}
</xen:if>