This commit is contained in:
Joeri Exelmans 2025-10-05 10:48:26 +02:00
parent 145e61c607
commit 924019e81c
3 changed files with 122 additions and 53 deletions

View file

@ -23,7 +23,7 @@ svg > text {
.rountangle:hover {
/* fill: lightgrey; */
/* stroke-width: 4px; */
cursor: grab;
/* cursor: grab; */
}
.rountangle.dragging {
@ -38,6 +38,10 @@ svg > text {
stroke-width: 4px; */
}
.selected:hover {
cursor: grab;
}
.lineHelper {
stroke: rgba(0, 0, 0, 0);
stroke-width: 16px;
@ -86,4 +90,13 @@ line.selected, circle.selected {
/* stroke-dasharray: 7 6; */
stroke: blue;
stroke-width: 4px;
}
text.selected, text.selected:hover {
fill: blue;
/* font-weight: bold; */
}
text:hover {
fill: rgba(0, 200, 0, 1);
/* cursor: grab; */
}