Lab: fix Runs table column-width drift causing text overlap - #486
Merged
conorplunkett merged 2 commits intoAug 27, 2026
Conversation
table-layout: fixed needs an explicit width on every column or it silently squeezes whatever's uncovered — the width rules had drifted out of sync through several rounds of columns being added (own comment still said "16 columns"), leaving six-plus right-side columns uncovered and overlapping. Rewrote for the current 23 columns.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
…ptable-percentage-ne48os # Conflicts: # CHANGELOG.md
conorplunkett
deleted the
claude/preferred-acceptable-percentage-ne48os
branch
August 27, 2026 02:31
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
#section-runs's column-width CSS (static/lab.css) requires an explicit px width per column since the table usestable-layout: fixed— any column left uncovered gets squeezed rather than left alone. That list had drifted out of sync through several rounds of columns being added (its own comment still said "16 columns"), leaving six-plus right-side columns (Preferred onward, including the per-row Delete button) with no width rule — their content was overlapping.Test plan
nth-child(1)–nth-child(23)covered exactly once, width sum matches the table's declared width exactlyphase2-eval --models scripted_naive --split survey) to generate a real stored run, started the app locally, and screenshotted the actual rendered Runs table in Chromium via Playwright — confirmed 23 header cells / 23 row cells, no visual overlap anywhere including the previously-broken Delete button columnGenerated by Claude Code