drag-and-drop.scss 628 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // For Drag And Drop
  2. // for pointer on hover
  3. #draggable-cards{
  4. .card{
  5. cursor: grab;
  6. }
  7. }
  8. #basic-list-group,#multiple-list-group-a,#multiple-list-group-b{
  9. .list-group-item{
  10. cursor: grab;
  11. }
  12. }
  13. #clone-lists{
  14. .chip{
  15. cursor: grab;
  16. }
  17. }
  18. // For Multi List
  19. #multiple-list-group-a,#multiple-list-group-b{
  20. min-height: 5.714rem;
  21. }
  22. // For Handle
  23. #dd-with-handle{
  24. .list-group{
  25. min-height: 5.714rem;
  26. .handle{
  27. padding: 0 5px;
  28. margin-right: 5px;
  29. background-color: rgba(0, 0, 0, 0.1);
  30. cursor: move;
  31. font-size: 1.2rem;
  32. }
  33. }
  34. }