fix: restore full-width source inventory
GeoIntel CI / docs-smoke (push) Canceled after 0s
GeoIntel CI / contract-smoke (push) Canceled after 0s

This commit is contained in:
Codex
2026-07-15 12:28:35 +02:00
parent 232e8c2126
commit d3a09e8964
4 changed files with 25 additions and 0 deletions
@@ -142,3 +142,12 @@ def test_frontend_loads_all_dataset_pages_after_temporal_import_expansion() -> N
assert "DATASET_PAGE_SIZE = 200" in client
assert "offset < (total ?? 0)" in client
assert "items.length !== total" in client
def test_source_inventory_remains_full_width_after_premium_desktop_rules() -> None:
styles = (ROOT / "frontend" / "src" / "styles" / "premium.css").read_text(encoding="utf-8")
final_rule = styles.rsplit(".workspace-grid-data > section.source-catalog-panel", maxsplit=1)[1]
assert "grid-column: 1 / -1" in final_rule
assert "max-height: none" in final_rule
assert "overflow: visible" in final_rule