mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 00:24:48 +08:00
10 lines
232 B
CSS
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;
|
|
}
|