Files
ueblueprint/css/ueblueprint-draggable.css
2021-11-16 21:14:03 +01:00

10 lines
232 B
CSS

.ueb-draggable,
.ueb-node {
/* Indicate the element draggable */
cursor: move;
/* It will be positioned absolutely */
position: absolute;
/* Doesn't allow to select the content inside */
user-select: none;
}