You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.0 KiB
55 lines
1.0 KiB
@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 { |
|
.card { |
|
margin: 0 1rem; |
|
} |
|
.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 { |
|
color: $theme-dark-body-color; |
|
&:not(.badge):not([class*='col-']) { |
|
background-color: $theme-dark-card-bg; |
|
border-color: $theme-dark-border-color; |
|
box-shadow: $theme-dark-box-shadow; |
|
} |
|
} |
|
}
|
|
|