Files
flask-formula10/formula10/static/style/draggable.css
Christoph Urlacher 3704192730
All checks were successful
Build Formula10 Docker Image / build-docker (push) Successful in 14s
Finish restructuring files
2024-02-24 17:41:12 +01:00

21 lines
396 B
CSS

/* https://codepen.io/retrofuturistic/pen/DJWYBv */
[draggable] {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
user-select: none;
/* Required to make elements draggable in old WebKit */
-khtml-user-drag: element;
-webkit-user-drag: element;
}
.column {
cursor: move;
}
.column.over {
//border: 2px dashed #000;
border-top: 2px solid blue;
}