Files
ueblueprint/css/ueblueprint-draggable.css
2021-12-12 20:35:41 +01:00

9 lines
221 B
CSS

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