graflow: editable=>moving nodes

This commit is contained in:
STEINNI
2026-02-28 22:18:14 +00:00
parent e2c4ca8382
commit 9bc55b74d6
2 changed files with 133 additions and 43 deletions

View File

@@ -204,3 +204,38 @@ bz-graflow .bzgf-main-container{
position: relative;
box-sizing: border-box;
}
/* BZGRAFLOW_CORE_START */
/* bz-graflow internal layout rules (used in light DOM, and injected into shadow DOM when isolated) */
bz-graflow .bzgf-wires-container,
bz-graflow .bzgf-nodes-container{
position: absolute;
inset: 0;
width: 100%;
height: 100%;
}
bz-graflow .bzgf-nodes-container .bzgf-node{ position:absolute; }
bz-graflow .bzgf-nodes-container .bzgf-fake-node{
position: absolute;
width: 5px;
height: 5px;
background: transparent;
border-style: none;
}
bz-graflow .bzgf-nodes-container button.bzgf-zoom-in{
z-index: 999;
position: absolute;
top: -0.5em;
right: -1em;
color: black;
width: 2em;
height: 2em;
padding: 0;
}
bz-graflow button.bzgf-zoom-out{
z-index: 999;
position: absolute;
left: 5px;
top: 5px;
}
/* BZGRAFLOW_CORE_END */