A related issue is https://github.com/mui-org/material-ui/issues/16240
When drag an element that uses "ButtonBase", the draggable element on dragging in Chrome will get all view that overlaps the total area of the expanded ripple.

The draggable element on dragging must not consider the expanded area of ripple.
Steps:
Test the bug here -> CodeSandbox
| Tech | Version |
| ----------- | ------- |
| Material-UI | v4.5.0 (latest) |
| React | 16.10 |
| Browser | Google Chrome - Version 77.0.3865.90 (Official Build) (64-bit) |
To be honest I would see this as a browser issue. It uses dimensions for the image without considering overflow of the parents.
This means that we would need to fix this for any component using overflow. Considering you can solve this in your app with https://developer.mozilla.org/en-US/docs/Web/API/DataTransfer/setDragImage I don't think we want to fix this in the core.
If somebody has an easy solution then we're listening of course.
Hey, I found a possible solution in this issue: https://github.com/react-dnd/react-dnd/issues/832.
Adding 'transform: translate3d(0, 0, 0)' to the draggable element.
The explanation here.
My new codesandbox

@jeovazero This is awesome. Thank you for sharing this. I think this is actually something we do want to apply in the core since it also affects repainting:

Notice the big green flash which means the whole area is repainted.
I don't know how to solve this yet. Simply adding the style to the list item didn't result in a smaller paint area.
I would observe this for a bit. Might as well be an issue with chrome devtools and I could not find anything about overflow: hidden and repaint issues. I guess this is fine.
I have an impression of d茅j脿 vu. I'm wondering if we didn't have an open issue in the past where we had too many layer surface because of transfrom translate style on the buttons 馃.
I don't think that we should create a new layer by default for our ripple elements. I think that we can ignore the problem as not very important.
Most helpful comment
Hey, I found a possible solution in this issue: https://github.com/react-dnd/react-dnd/issues/832.
Adding 'transform: translate3d(0, 0, 0)' to the draggable element.
The explanation here.
My new codesandbox
