Freelancer
Well-known member
In "xengallery_media_add.css"
The following
Should be:
[...as it is correct in "attachment_editor.css"]
...or otherwise it destroys the zoom factor on mobile devices with viewport widths smaller than 500px.
The following
Code:
.xenOverlay.attachmentUploader
{
width: 500px;
}
Should be:
Code:
.xenOverlay.attachmentUploader
{
max-width: 500px;
}
[...as it is correct in "attachment_editor.css"]
...or otherwise it destroys the zoom factor on mobile devices with viewport widths smaller than 500px.