drag-and-dropzones icon indicating copy to clipboard operation
drag-and-dropzones copied to clipboard

Improperly shaped images in dropzones

Open Gitoffthelawn opened this issue 8 years ago • 1 comments

Depending on the CSS used in a website, the dropzone images may become improperly shaped.

In order to fix this, I added the following CSS:

#dropzonecontentbox > .dropzone > div > span > img { box-sizing: content-box !important; } This can probably be handled a little more elegantly within the extension itself.

To magnify the original error, add the following CSS:

#dropzonecontentbox > .dropzone > div > span > img { min-width: 48px !important; min-height: 48px !important; } This will make the images in each dropzone larger to see the difference. After doing this, I actually like larger icons (maybe not that large!), but the 16x16 icons do not scale too nicely.

Gitoffthelawn avatar Mar 21 '16 08:03 Gitoffthelawn

Can you submit a pull request to fix this?

andy-portmen avatar Mar 24 '16 10:03 andy-portmen