Moveing of objects

This commit is contained in:
Magnus Åhall 2025-07-05 09:57:20 +02:00
parent cfd5bfd719
commit 25bbc0c748
7 changed files with 167 additions and 16 deletions

View file

@ -73,7 +73,7 @@ body {
}
#editor-node > div.ops {
display: grid;
grid-template-columns: min-content 1fr min-content min-content;
grid-template-columns: min-content 1fr repeat(3, min-content);
align-items: center;
grid-gap: 8px;
}
@ -123,6 +123,9 @@ body {
.node.selected > .name {
font-weight: bold;
}
.node.marked > .name {
color: #a00;
}
.node.expanded > .children {
display: block;
}