Show connected nodes

This commit is contained in:
Magnus Åhall 2025-07-07 21:44:09 +02:00
parent c3f8bedea1
commit dff17cad5b
7 changed files with 212 additions and 6 deletions

View file

@ -1,5 +1,6 @@
:root {
--textsize: 12pt;
--section-color: #73a44d;
--je-color: #73a44d;
--border-radius: 5px;
}
@ -266,3 +267,38 @@ select:focus {
outline: 2px solid #888;
outline-offset: -2px;
}
#connected-nodes {
& > .label {
margin-bottom: 16px;
color: var(--section-color);
font-weight: bold;
font-size: 1.25em;
}
.connected-nodes {
display: flex;
align-items: start;
flex-flow: row wrap;
gap: 32px;
.type-group {
display: grid;
grid-template-columns: 24px 1fr;
grid-gap: 8px;
align-items: center;
.type-name {
font-weight: bold;
grid-column: 1 / -1;
}
}
}
.type-icon {
img {
display: block;
height: 24px;
}
}
}