Files
ueblueprint/css/ueblueprint-draggable.css
barsdeveloper 02e8e6e8af Initial commit
2021-06-29 16:26:39 +02:00

9 lines
239 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;
}