Very nice plugin, on my chrome (or opera) browser, if i put my mouse on the top left position inside the dropzone, my mouse pointer is not a finger, but an arrow, and if i move the cursor a few pixel below, the cursor got the right icon.
It's because on the top left position it's the hidden "input" filed, and the cursor doesn't seems to inherit the right cursor property.
It's working fine on firefox, but not on the chromium/webkit browsers.
I used the following CSS to avoid this strange behaviour.
Hi,
Very nice plugin, on my chrome (or opera) browser, if i put my mouse on the top left position inside the dropzone, my mouse pointer is not a finger, but an arrow, and if i move the cursor a few pixel below, the cursor got the right icon.
It's because on the top left position it's the hidden "input" filed, and the cursor doesn't seems to inherit the right cursor property.
It's working fine on firefox, but not on the chromium/webkit browsers.
I used the following CSS to avoid this strange behaviour.
.ezdz-dropzone input[type=file]::-webkit-file-upload-button { cursor: pointer; }
http://codepen.io/anon/pen/dXyZZN
hope this help. Perhaps something to add to your CSS ?