I had a need to remove the following 2 styles from the .dropzone class, in order to get finer-grain control of positioning, widths, heights:
/* padding: 1em; */ /* line-height: 4em; */
To compensate, I then made the width and height of the dropzones larger, as expected.
Consequently, a minor inconvenience from before has become a larger problem for me: when I drag a draggable element over the top of any dropzone, the dropzone doesn't "light up" (aka, recognize the element and allow the drop to occur) until the forward-most edge of the draggable element reaches the center of the dropzone.
How can I change this so that my dropzone lights up, recognizes the element, and allows the drop to occur when the element touches any part of the drop zone, rather than requiring the element to go deep in, all the way to the center? Thanks in advance.
I had a need to remove the following 2 styles from the .dropzone class, in order to get finer-grain control of positioning, widths, heights:
/* padding: 1em; */ /* line-height: 4em; */
To compensate, I then made the width and height of the dropzones larger, as expected.
Consequently, a minor inconvenience from before has become a larger problem for me: when I drag a draggable element over the top of any dropzone, the dropzone doesn't "light up" (aka, recognize the element and allow the drop to occur) until the forward-most edge of the draggable element reaches the center of the dropzone.
How can I change this so that my dropzone lights up, recognizes the element, and allows the drop to occur when the element touches any part of the drop zone, rather than requiring the element to go deep in, all the way to the center? Thanks in advance.