Highlight links

This commit is contained in:
Ian Gulliver
2019-07-10 23:41:41 +00:00
parent 0aa272c224
commit dda2102f99
7 changed files with 47 additions and 6 deletions

View File

@@ -100,6 +100,14 @@ body {
background-color: var(--link);
}
.editor li.link.highlight {
background: repeating-linear-gradient(
-45deg,
transparent 0 10px,
rgba(255,0,0,0.3) 10px 20px
), var(--link);
}
.editor li.label {
background-color: var(--label);
}
@@ -241,6 +249,10 @@ body {
--line-color: white;
}
.gridLines.highlight {
--line-color: var(--focus);
}
.gridLinkLabel {
max-width: 80%;
max-height: 80%;
@@ -257,3 +269,7 @@ body {
z-index: 4;
--arrow-color: white;
}
.gridArrow.highlight {
--arrow-color: var(--focus);
}