Fix wide markdown tables being squeezed instead of scrolling horizontally - #650
Open
luckrnx09 wants to merge 1 commit into
Open
Fix wide markdown tables being squeezed instead of scrolling horizontally#650luckrnx09 wants to merge 1 commit into
luckrnx09 wants to merge 1 commit into
Conversation
…ally Tables use auto layout, so the browser preferred wrapping cell text to fit the container width over overflowing the scrollable wrapper. The existing overflow-x: auto on .markdown-table-wrap never engaged. Setting the table width to max-content lets wide tables exceed the wrapper and scroll, while min-width: 100% keeps narrow tables at full container width. Fixes agegr#649
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.
Fixes #649.
Problem
Markdown tables with many columns get cramped and wrap excessively. The wrapper
.markdown-table-wrapalready hadoverflow-x: auto, but table auto layout prefers shrinking columns and wrapping cell text to fit the container width, so the table never overflowed and the scrollbar never engaged.Fix
One line in
app/globals.css: set the tablewidth: max-contentso wide tables keep their natural width and overflow the wrapper (which scrolls), while the existingmin-width: 100%keeps narrow tables at full container width.Verification
Tested locally with a 12-column × 11-row table (plus surrounding prose) in the dev server:
table-scroll-fix.mp4