keep the query column visible when scrolling the details table - #1462
Open
toschmidt wants to merge 1 commit into
Open
keep the query column visible when scrolling the details table#1462toschmidt wants to merge 1 commit into
toschmidt wants to merge 1 commit into
Conversation
The detailed comparison table is wider than the screen, so scrolling right used to move the query checkbox and the query number out of view, leaving no way to tell which query a row belongs to. Make that column sticky. The checkbox and the query number now share a single cell so a plain `left: 0` is enough — with two cells the second one would need its offset measured at runtime. Two details keep the scrolled cells from showing through around the sticky one: an outline covers the table's 1px border-spacing, and a pseudo-element covers the body padding to its left. The query number is padded to a fixed width so the checkboxes line up for Q0..Q9 as well, and it keeps its own element so the tooltip still hangs off the name rather than off the whole cell. Toggling a query used to re-render only the summary, leaving the detailed table sorted by the previous ranking; re-render both. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
toschmidt
force-pushed
the
schmidt/querynames-horizontal
branch
from
August 18, 2026 21:55
1ed416b to
6bfdcae
Compare
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.
The detailed comparison table is wider than the screen, so scrolling right used to move the query checkbox and the query number out of view, leaving no way to tell which query a row belongs to.