Add AI lab run readiness panels
GeoIntel CI / docs-smoke (push) Has been cancelled
GeoIntel CI / contract-smoke (push) Has been cancelled

This commit is contained in:
Codex
2026-06-24 23:47:55 +02:00
parent 299f29c94e
commit 98fff63a97
7 changed files with 222 additions and 0 deletions
+52
View File
@@ -2667,6 +2667,58 @@ button.entity-card {
min-width: 0;
}
.lab-readiness-panel {
display: grid;
gap: 0.6rem;
min-width: 0;
border-left: 4px solid #c9d8d1;
border-radius: 8px;
padding: 0.64rem 0.68rem;
background: #f8fbf9;
}
.lab-readiness-panel-ready {
border-left-color: #2f7d56;
background: #f5fbf6;
}
.lab-readiness-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
gap: 0.5rem;
min-width: 0;
}
.lab-readiness-item {
display: grid;
gap: 0.18rem;
min-width: 0;
border: 1px solid #d8e3de;
border-radius: 7px;
padding: 0.52rem 0.58rem;
background: #ffffff;
}
.lab-readiness-item-ready {
border-color: #b8dcc9;
background: #fbfffc;
}
.lab-readiness-item span {
color: var(--muted);
font-size: 0.72rem;
font-weight: 700;
text-transform: uppercase;
}
.lab-readiness-item strong {
min-width: 0;
color: var(--text);
font-size: 0.88rem;
line-height: 1.28;
overflow-wrap: anywhere;
}
.ai-lab-shell .model-list {
grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
gap: 0.55rem;