Expand lines on highlight, fix EditorLabel highlight attempt

This commit is contained in:
Ian Gulliver
2019-07-10 23:51:14 +00:00
parent c52f93d6d2
commit 591d4814a7
3 changed files with 8 additions and 1 deletions

View File

@@ -81,6 +81,12 @@ class EditorLabel extends EditorEntryBase {
e.stopPropagation();
e.preventDefault();
break;
case ' ':
// We don't support highlighting, but stop propagation
e.stopPropagation();
e.preventDefault();
break;
}
}

View File

@@ -264,6 +264,7 @@ body {
.gridLines.highlight {
--line-color: var(--focus);
--line-width: 3;
}
.gridLinkLabel {

View File

@@ -6,7 +6,7 @@
/* <![CDATA[ */
path.line {
stroke: var(--line-color, black);
stroke-width: 1.5;
stroke-width: var(--line-width, 1.5);
fill: transparent;
shape-rendering: geometricPrecision;
}

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB