Describe the bug
There are tons of duplicates of this, dating from at least 6 years ago: the "dragging" element looks transparent in Windows. It's been stated many times how to fix/work around this, especially in the following issue:
https://github.com/SortableJS/Sortable/issues/146
I know one can't demand anything on an open source project, but this is the most popular drag-and-drop library, why haven't you fixed this yet? Is there any non-obvious way of removing transparency using the current library?
Transparency is implemented by HTML5 DnD, there's no _straight forward_ way to override it, so it's not really something you can "fix". Add forceFallback: true to your options, then add .sortable-fallback { opacity: 1 !important } in your css and you'll get control over opacity.
Most helpful comment
Transparency is implemented by HTML5 DnD, there's no _straight forward_ way to override it, so it's not really something you can "fix". Add
forceFallback: trueto your options, then add.sortable-fallback { opacity: 1 !important }in your css and you'll get control over opacity.