drag-and-drop.css 584 B

12345678910111213141516171819202122232425262728293031323334
  1. #draggable-cards .card {
  2. cursor: -webkit-grab;
  3. cursor: grab;
  4. }
  5. #basic-list-group .list-group-item,
  6. #multiple-list-group-a .list-group-item,
  7. #multiple-list-group-b .list-group-item {
  8. cursor: -webkit-grab;
  9. cursor: grab;
  10. }
  11. #clone-lists .chip {
  12. cursor: -webkit-grab;
  13. cursor: grab;
  14. }
  15. #multiple-list-group-a,
  16. #multiple-list-group-b {
  17. min-height: 5.714rem;
  18. }
  19. #dd-with-handle .list-group {
  20. min-height: 5.714rem;
  21. }
  22. #dd-with-handle .list-group .handle {
  23. padding: 0 5px;
  24. margin-right: 5px;
  25. background-color: rgba(0, 0, 0, 0.1);
  26. cursor: move;
  27. font-size: 1.2rem;
  28. }