fix workbench illustration contrast
GeoIntel release gates / Compile, test, contracts and builds (push) Failing after 23s
GeoIntel release gates / Python and npm vulnerability policy (push) Failing after 21s
GeoIntel release gates / GIS image, SBOM and container scan (push) Failing after 1m48s

This commit is contained in:
Jens
2026-08-21 22:48:07 +02:00
parent ae080a7b23
commit d2494417be
2 changed files with 37 additions and 0 deletions
+34
View File
@@ -2387,3 +2387,37 @@ button.overview-command-card { cursor: pointer; }
.geo-results-toggle { position: fixed; z-index: 131; }
.geo-results-toggle-open { right: min(31rem, calc(100% - 2.75rem)); }
}
/* Full-workbench visual integrity: preserve the dark illustration surfaces
and reclaim operator-only columns in the read-only guest source view. */
.detection-lab-shell > .ai-pipeline {
grid-column: 1 / -1;
background:
linear-gradient(115deg, rgba(255, 255, 255, 0.035), transparent 38%),
radial-gradient(circle at 82% 10%, rgba(69, 209, 177, 0.15), transparent 20rem),
#082f2b !important;
}
.project-atlas {
background:
radial-gradient(circle at 18% 0%, rgba(64, 190, 164, 0.18), transparent 25rem),
linear-gradient(135deg, #092f2b 0%, #0b3f39 48%, #082c34 100%) !important;
}
@media (min-width: 921px) {
.workbench-shell-guest .workspace-grid-data {
grid-template-columns: minmax(16rem, 0.55fr) minmax(0, 1.45fr);
grid-template-rows: minmax(0, 1fr);
}
.workbench-shell-guest .workspace-grid-data > .source-catalog-panel {
grid-column: 2;
grid-row: 1;
}
.workbench-shell-guest .workspace-grid-data > .guest-readonly-card {
grid-column: 1;
grid-row: 1;
align-self: start;
}
}