react-nestable icon indicating copy to clipboard operation
react-nestable copied to clipboard

Custom styling for items placeholder

Open pavloburchak opened this issue 3 years ago • 2 comments

Is it possible to change styling of item's placeholder, when dragging? image I am trying to access it by passing what I need to class hierarchy, and this doesn't seem to be working. In example I use styled-components. & > .nestable > .nestable-list > nestable-item { &::before { background-color: grey; } }

pavloburchak avatar Nov 24 '21 18:11 pavloburchak

Any luck with this? I'm trying to do this as well.

deborahshda avatar May 06 '22 10:05 deborahshda

Actually, just figured it out. You can use

.nestable-item::before { //your styles background-color: transparent !important; }

deborahshda avatar May 06 '22 11:05 deborahshda