From 5911609d2eef4f4f5ce04f3e1d20a3b1fac7037b Mon Sep 17 00:00:00 2001 From: mhoennig Date: Sat, 22 Aug 2026 19:40:24 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20Abh=C3=A4ngigkeits-Punktierung=20enger?= =?UTF-8?q?=20(.1/3=20statt=20.1/5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- frontend/src/app.js | 2 +- frontend/src/style.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app.js b/frontend/src/app.js index d98d207..424bfe2 100644 --- a/frontend/src/app.js +++ b/frontend/src/app.js @@ -496,7 +496,7 @@ function diagramToSvg(){ Knoten; die Fokus-Hervorhebung ist Interaktion und wird nicht exportiert. */ depEdges().forEach(([from, to]) => { const c = depCurve(R(from), R(to)); - parts.push(``); + parts.push(``); parts.push(``); }); diff --git a/frontend/src/style.css b/frontend/src/style.css index f07f24b..e959bbc 100644 --- a/frontend/src/style.css +++ b/frontend/src/style.css @@ -709,7 +709,7 @@ durchgezogen in Tinte. */ .dep-overlay{position:absolute;left:0;top:0;overflow:visible;pointer-events:none} .dep-edge{fill:none;stroke:var(--muted);stroke-width:1.5;opacity:.4; - stroke-linecap:round;stroke-dasharray:.1 5} + stroke-linecap:round;stroke-dasharray:.1 3} /* Offene Pfeilspitze — grau und dünn wie die Linie, kein gefülltes Dreieck. */ .dep-arrow{fill:none;stroke:var(--muted);stroke-width:1.5;opacity:.4; stroke-linecap:round;stroke-linejoin:round}