dataview items with transparent background color during drag&drop

Hi,

I have a dataview like the one in this example:

https://snippet.webix.com/doweseyq

In this dataview I can drag the items to change their order, but I dont want to see the white background of the item during the drag operation, I want to see only the div element I put in the item template.

I tried to change the background-color of the item to transparent but it doesn’t work, however, if I change it to another color, it works.

How can I do this?

Thank you.

@AndreaC
try to play with .webix_drag_zone

  .webix_drag_zone{
      background-color:unset;
  }