ext-component-drag-drop.scss 982 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. @import '../../bootstrap-extended/include'; // Bootstrap includes
  2. @import '../../components/include'; // Components includes
  3. // draggable cursor - grab
  4. .draggable {
  5. cursor: grab;
  6. .gu-unselectable & {
  7. cursor: grabbing;
  8. }
  9. }
  10. // For Multi List
  11. #multiple-list-group-a,
  12. #multiple-list-group-b {
  13. min-height: 5.714rem;
  14. }
  15. // For Handle
  16. #dd-with-handle {
  17. .list-group {
  18. min-height: 5.714rem;
  19. .handle {
  20. padding: 0 5px;
  21. margin-right: 5px;
  22. background-color: rgba($black, 0.1);
  23. cursor: move;
  24. font-size: 1.2rem;
  25. }
  26. }
  27. }
  28. .gu-mirror {
  29. .handle {
  30. padding: 0 5px;
  31. margin-right: 5px;
  32. background-color: rgba($black, 0.1);
  33. cursor: move;
  34. font-size: 1.2rem;
  35. }
  36. }
  37. // Dak Layout
  38. .dark-layout {
  39. // Drag & drop moving element
  40. .gu-mirror {
  41. &:not(.badge):not([class*='col-']) {
  42. background-color: $theme-dark-card-bg;
  43. border-color: $theme-dark-border-color;
  44. box-shadow: $theme-dark-box-shadow;
  45. }
  46. }
  47. }