12345678910111213141516171819202122232425262728293031323334 |
- #draggable-cards .card {
- cursor: -webkit-grab;
- cursor: grab;
- }
- #basic-list-group .list-group-item,
- #multiple-list-group-a .list-group-item,
- #multiple-list-group-b .list-group-item {
- cursor: -webkit-grab;
- cursor: grab;
- }
- #clone-lists .chip {
- cursor: -webkit-grab;
- cursor: grab;
- }
- #multiple-list-group-a,
- #multiple-list-group-b {
- min-height: 5.714rem;
- }
- #dd-with-handle .list-group {
- min-height: 5.714rem;
- }
- #dd-with-handle .list-group .handle {
- padding: 0 5px;
- margin-right: 5px;
- background-color: rgba(0, 0, 0, 0.1);
- cursor: move;
- font-size: 1.2rem;
- }
|