Fixed XF Media Gallery attachement uploader

Freelancer

Well-known member
In "xengallery_media_add.css"

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.
 
Top Bottom