Make nodes selectable from the grid

This commit is contained in:
Ian Gulliver
2019-07-11 05:12:08 +00:00
parent 15ad72dc0a
commit ea5e3cb7e1
15 changed files with 50 additions and 4 deletions

View File

@@ -238,6 +238,7 @@ body {
justify-content: flex-start;
border: 1px dashed white;
z-index: 1;
pointer-events: none;
}
.gridGroup.highlight {
@@ -253,12 +254,14 @@ body {
overflow: hidden;
overflow-wrap: anywhere;
z-index: 1;
pointer-events: none;
}
.gridLines {
width: 100%;
height: 100%;
z-index: 2;
pointer-events: none;
--line-color: white;
}
@@ -275,12 +278,14 @@ body {
z-index: 3;
border-radius: 4px;
padding: 3px;
pointer-events: none;
}
.gridArrow {
width: 100%;
height: 100%;
z-index: 4;
pointer-events: none;
--arrow-color: white;
}