Finish canvas fixes + add privates content ignore

This commit is contained in:
2024-05-11 00:50:59 +02:00
parent 7a0e8a95a9
commit a4729b8d84
5 changed files with 67 additions and 32 deletions

View File

@@ -809,7 +809,7 @@ body.is-mobile .canvas-node-resizer {
.canvas-edges path.canvas-display-path {
pointer-events: none;
stroke-width: calc(3px * var(--zoom-multiplier));
stroke-width: calc(3px);
stroke: rgb(var(--canvas-color));
fill: none;
transition: stroke-width 100ms ease-out;
@@ -817,7 +817,7 @@ body.is-mobile .canvas-node-resizer {
.canvas-edges path.canvas-interaction-path {
pointer-events: stroke;
stroke-width: calc(24px * var(--zoom-multiplier));
stroke-width: calc(24px);
stroke-linecap: round;
stroke: transparent;
fill: none;
@@ -839,9 +839,6 @@ body.is-mobile .canvas-node-resizer {
stroke-linecap: round;
stroke-linejoin: round;
stroke-width: 1px;
transform-box: fill-box;
transform: scale(var(--zoom-multiplier));
transform-origin: center top;
}
.canvas-edges g.is-focused path.canvas-display-path,