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.
35 lines
559 B
35 lines
559 B
|
|
.drop-zone {
|
|
position:relative;
|
|
transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
}
|
|
|
|
.drop-zone-drag-block > * {
|
|
pointer-events: none;
|
|
}
|
|
|
|
.drop-zone-can-drop {
|
|
background-color: var(--palette-success-hover);
|
|
}
|
|
|
|
.drop-zone-no-drop {
|
|
background-color: var(--palette-error-hover);
|
|
}
|
|
|
|
.drop-item:not(.drop-item-preview-start) {
|
|
cursor: grab;
|
|
user-select: none;
|
|
|
|
&:active {
|
|
cursor: grabbing;
|
|
}
|
|
}
|
|
|
|
.drop-item-preview-start {
|
|
height: 20px;
|
|
width: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: +1;
|
|
} |