| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- @import '../../bootstrap-extended/include'; // Bootstrap includes
- @import '../../components/include'; // Components includes
- // draggable cursor - grab
- .draggable {
- cursor: grab;
- .gu-unselectable & {
- cursor: grabbing;
- }
- }
- // For Multi List
- #multiple-list-group-a,
- #multiple-list-group-b {
- min-height: 5.714rem;
- }
- // For Handle
- #dd-with-handle {
- .list-group {
- min-height: 5.714rem;
- .handle {
- padding: 0 5px;
- margin-right: 5px;
- background-color: rgba($black, 0.1);
- cursor: move;
- font-size: 1.2rem;
- }
- }
- }
- .gu-mirror {
- .handle {
- padding: 0 5px;
- margin-right: 5px;
- background-color: rgba($black, 0.1);
- cursor: move;
- font-size: 1.2rem;
- }
- }
- // Dak Layout
- .dark-layout {
- // Drag & drop moving element
- .gu-mirror {
- &:not(.badge):not([class*='col-']) {
- background-color: $theme-dark-card-bg;
- border-color: $theme-dark-border-color;
- box-shadow: $theme-dark-box-shadow;
- }
- }
- }
|