loon-bulma-react 2026.0.7 → 2026.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/styles/_all.scss
CHANGED
|
@@ -261,6 +261,7 @@ $table-striped-row-even-hover-background-color: #f0f0f0 !default;
|
|
|
261
261
|
@forward 'notifier-container.scss';
|
|
262
262
|
@forward 'range-sliders.scss';
|
|
263
263
|
@forward 'extra-inputs.scss';
|
|
264
|
+
@forward 'drag-drop-list.scss';
|
|
264
265
|
|
|
265
266
|
@forward 'hero.scss' with (
|
|
266
267
|
$hero-colors: (
|
|
@@ -461,4 +462,3 @@ table.table thead tr th {
|
|
|
461
462
|
.has-half-opacity:not(.has-half-opacity .has-half-opacity) {
|
|
462
463
|
opacity: 0.5;
|
|
463
464
|
}
|
|
464
|
-
@import '../components/DragDrop/DragDropList.scss';
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
.drag-drop-list {
|
|
2
|
+
list-style: none;
|
|
3
|
+
margin: 0;
|
|
4
|
+
padding: 0;
|
|
5
|
+
|
|
6
|
+
.drag-drop-item {
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
|
|
10
|
+
&.is-dragging {
|
|
11
|
+
opacity: 0.5;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
&.is-drag-over {
|
|
15
|
+
opacity: 0.5;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.drag-handle {
|
|
19
|
+
cursor: grab;
|
|
20
|
+
|
|
21
|
+
&:active {
|
|
22
|
+
cursor: grabbing;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|