Show connected nodes
This commit is contained in:
parent
c3f8bedea1
commit
dff17cad5b
7 changed files with 212 additions and 6 deletions
|
|
@ -1,5 +1,6 @@
|
|||
:root {
|
||||
--textsize: 12pt;
|
||||
--section-color: #73a44d;
|
||||
--je-color: #73a44d;
|
||||
--border-radius: 5px;
|
||||
}
|
||||
|
|
@ -197,3 +198,29 @@ 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 .connected-nodes {
|
||||
display: flex;
|
||||
align-items: start;
|
||||
flex-flow: row wrap;
|
||||
gap: 32px;
|
||||
}
|
||||
#connected-nodes .connected-nodes .type-group {
|
||||
display: grid;
|
||||
grid-template-columns: 24px 1fr;
|
||||
grid-gap: 8px;
|
||||
align-items: center;
|
||||
}
|
||||
#connected-nodes .connected-nodes .type-group .type-name {
|
||||
font-weight: bold;
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
#connected-nodes .type-icon img {
|
||||
display: block;
|
||||
height: 24px;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue