feat: integrate MET Nonlinear microservice

This commit is contained in:
Codex
2026-05-05 15:59:34 +00:00
parent 1d0046dc50
commit b1c717b834
11 changed files with 455 additions and 18 deletions
+23 -1
View File
@@ -965,7 +965,7 @@ input:focus, select:focus, textarea:focus { border-color: var(--accent-2); }
.result-card dd { margin: 0; }
.result-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.microservice-page, .findjob-page, .pipeline-page {
.microservice-page, .findjob-page, .pipeline-page, .met-page {
display: grid;
gap: 10px;
}
@@ -1015,6 +1015,28 @@ input:focus, select:focus, textarea:focus { border-color: var(--accent-2); }
align-items: start;
}
.pipeline-grid .panel:nth-child(3), .pipeline-grid .panel:nth-child(5) { grid-column: 1 / -1; }
.met-grid {
display: grid;
grid-template-columns: minmax(420px, 0.9fr) minmax(560px, 1.25fr);
gap: 10px;
align-items: start;
}
.met-grid .panel:nth-child(3), .met-grid .panel:nth-child(5) { grid-column: 1 / -1; }
.met-progress {
height: 6px;
margin-top: 5px;
overflow: hidden;
border: 1px solid var(--line-soft);
background: var(--panel-3);
}
.met-progress span {
display: block;
height: 100%;
min-width: 2px;
max-width: 100%;
background: linear-gradient(90deg, var(--accent-2), var(--accent));
}
.met-job-table { max-height: 460px; overflow: auto; }
.pipeline-flow-frame {
height: min(68vh, 720px);
min-height: 520px;