56 lines
1.0 KiB
SCSS
56 lines
1.0 KiB
SCSS
@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;
|
|
}
|
|
}
|
|
}
|