优化了 还是卡

This commit is contained in:
2026-08-25 20:43:33 +08:00
parent 5437b1b267
commit 4f3430e3ad
40 changed files with 1575 additions and 760 deletions
+11 -3
View File
@@ -183,6 +183,7 @@ canvas { display: block; width: 100%; height: 100%; background: #070d18; }
.diagnosticEmpty strong { color: #cbd8ea; }
.taskflowFramePane, .taskflowRuntimePane { display: grid; align-content: start; gap: 14px; }
.taskflowFramePane { min-height: 0; overflow-x: hidden; overflow-y: scroll; overscroll-behavior: contain; scrollbar-gutter: stable; }
.taskflowCaptureBar, .taskflowSelectors { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; padding: 11px 12px; border: 1px solid #29435e; border-radius: 9px; background: #0c1a2a; }
.taskflowCaptureBar label, .taskflowSelectors label { display: flex; align-items: center; gap: 7px; color: #91a5c0; font-size: 11px; }
.taskflowCaptureBar input, .taskflowSelectors select { min-width: 74px; padding: 7px 9px; color: #dce8f8; border: 1px solid #304664; border-radius: 7px; background: #101c2d; }
@@ -194,7 +195,7 @@ canvas { display: block; width: 100%; height: 100%; background: #070d18; }
.taskflowGraphSummary > div, .taskflowRuntimeSummary > div { min-width: 0; padding: 10px; border: 1px solid #213653; border-radius: 9px; background: #0a1422; }
.taskflowGraphSummary dt, .taskflowRuntimeSummary dt { color: #71839e; font-size: 10px; }
.taskflowGraphSummary dd, .taskflowRuntimeSummary dd { overflow: hidden; margin: 5px 0 0; color: #5ce4c2; font: 700 13px/1.25 ui-monospace, monospace; text-overflow: ellipsis; white-space: nowrap; }
.taskflowDagSection { overflow: hidden; border: 1px solid #213653; border-radius: 10px; background: #07101c; }
.taskflowDagSection { overflow: auto; border: 1px solid #213653; border-radius: 10px; background: #07101c; }
.taskflowDagToolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 11px; border-bottom: 1px solid #213653; background: #0c1727; }
.taskflowDagToolbar button { flex: none; padding: 6px 9px; color: #b9cce3; border: 1px solid #36516f; border-radius: 6px; background: #132238; cursor: pointer; }
.taskflowLegend { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; color: #8298b4; font-size: 10px; }
@@ -202,7 +203,12 @@ canvas { display: block; width: 100%; height: 100%; background: #070d18; }
.taskflowLegend i { width: 10px; height: 10px; border: 1px solid #304766; border-radius: 3px; background: #0e1a2b; }
.taskflowLegend .taskflowLegendExecuted { border-color: #2c8e78; background: #0c201e; }
.taskflowLegend .taskflowLegendWaiting { border-color: #b9833e; background: #251b10; }
.taskflowDag { width: 100%; height: 620px; min-height: 420px; overflow: hidden; background: #07101c; }
.taskflowResizable { position: relative; flex: none; min-width: 100%; }
.taskflowResizable > .react-resizable-handle { z-index: 20; width: 22px; height: 22px; opacity: 1; }
.taskflowResizable > .react-resizable-handle::after { width: 8px; height: 8px; border-color: #5ce4c2; }
.taskflowResizable > .react-resizable-handle-e { right: 0; top: 50%; margin-top: -11px; cursor: ew-resize; transform: rotate(-45deg); }
.taskflowResizable > .react-resizable-handle-s { bottom: 0; left: 50%; margin-left: -11px; cursor: ns-resize; transform: rotate(45deg); }
.taskflowDag { width: 100%; height: 100%; min-height: 420px; overflow: hidden; background: #07101c; }
.taskflowNode { width: 280px !important; min-height: 132px; padding: 11px !important; color: #a7bad2 !important; border: 1px solid #304766 !important; border-radius: 9px !important; background: #0e1a2b !important; box-shadow: 0 8px 22px #0006; }
.taskflowNodeExecuted { border-color: #2c8e78 !important; background: #0c201e !important; }
.taskflowNodeWaiting { border-color: #b9833e !important; background: #251b10 !important; }
@@ -215,7 +221,9 @@ canvas { display: block; width: 100%; height: 100%; background: #070d18; }
.react-flow__edge-path { stroke: #557594; stroke-width: 1.5; }
.react-flow__controls button { color: #dce8f8; border-color: #29435e; background: #101d2f; }
.react-flow__minimap { border: 1px solid #29435e; background: #0a1422; }
.taskflowTimeline, .taskflowRuntimeSection { overflow: hidden; border: 1px solid #213653; border-radius: 10px; background: #0a1422; }
.taskflowTimelineResizable { overflow: hidden; }
.taskflowTimeline { width: 100%; height: 100%; overflow: auto; }
.taskflowTimeline, .taskflowRuntimeSection { border: 1px solid #213653; border-radius: 10px; background: #0a1422; }
.taskflowTimeline > header, .taskflowRuntimeSection > header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 13px; border-bottom: 1px solid #1d304a; background: #101d2f; }
.taskflowTimeline > header span, .taskflowRuntimeSection > header span { color: #71839e; font-size: 10px; }
.taskflowTimelineRows { display: grid; overflow-x: auto; padding: 9px; }