Merge pull request #2572 from pikasTech/fix/agentrun-edge-visibility
Pipelines as Code CI / hwlab-nc01-v03-ci-poll- Success

保持 AgentRun 思维导图连线可见
This commit is contained in:
Lyon
2026-07-16 20:39:17 +08:00
committed by GitHub
2 changed files with 2 additions and 1 deletions
@@ -95,6 +95,7 @@ test("AgentRun mind map connects custom nodes through Vue Flow handles", () => {
assert.match(mindMapSource, /<Handle v-if="data\.row\.parentId" type="target" :position="Position\.Left" \/>/);
assert.match(mindMapSource, /<Handle v-if="data\.row\.childCount > 0" type="source" :position="Position\.Right" \/>/);
assert.match(styleSource, /agent-mind-map-flow \.vue-flow__handle/);
assert.match(styleSource, /agent-mind-map-flow \.vue-flow__edge-path \{[^}]*vector-effect: non-scaling-stroke;/);
});
test("AgentRun inspector keeps chrome fixed and scrolls only its body", () => {
@@ -102,7 +102,7 @@
.agent-mind-map-flow { width: 100%; height: 100%; }
.agent-mind-map-flow .vue-flow__pane { cursor: grab; }
.agent-mind-map-flow .vue-flow__pane.dragging { cursor: grabbing; }
.agent-mind-map-flow .vue-flow__edge-path { stroke: color-mix(in srgb, var(--console-muted) 68%, var(--console-text)); stroke-width: 1.8; }
.agent-mind-map-flow .vue-flow__edge-path { stroke: color-mix(in srgb, var(--console-muted) 68%, var(--console-text)); stroke-width: 2; vector-effect: non-scaling-stroke; }
.agent-mind-map-flow .vue-flow__arrowhead { fill: color-mix(in srgb, var(--console-muted) 68%, var(--console-text)); }
.agent-mind-map-flow .vue-flow__handle { width: 1px; height: 1px; min-width: 1px; min-height: 1px; border: 0; opacity: 0; pointer-events: none; }
.agent-mind-map-node { width: 220px; height: 70px; min-width: 0; display: grid; grid-template-rows: 19px 1fr 16px; gap: 2px; padding: 7px 9px; border: 1px solid var(--console-border); border-left: 3px solid var(--console-muted); border-radius: 5px; background: var(--console-surface); color: var(--console-text); outline: 0; box-shadow: 0 2px 7px rgb(15 23 42 / 8%); cursor: pointer; }