mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-11 14:24:42 +08:00
9 lines
239 B
CSS
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;
|
|
} |