fix(filters_properties): prevent horizontal scroll in properties tables#46
Merged
PierreDillard merged 1 commit intomasterfrom Jan 26, 2026
Merged
fix(filters_properties): prevent horizontal scroll in properties tables#46PierreDillard merged 1 commit intomasterfrom
PierreDillard merged 1 commit intomasterfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the documentation CSS to prevent horizontal scrolling in properties tables by forcing long text to wrap within table cells. The goal is to improve readability on narrower viewports and within scroll-wrapped table containers.
Changes:
- Set
.md-typeset__scrollwrap tableto use full width withtable-layout: fixedto better constrain column widths. - Force wrapping for long text in
.md-typeset__scrollwrap tdandthviawhite-space: normal,overflow-wrap: anywhere, andword-break: break-word.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| .md-typeset__scrollwrap table { | ||
| width: 100%; | ||
| table-layout: fixed; |
There was a problem hiding this comment.
There are trailing spaces after the semicolon on this line, which are unnecessary and may be flagged by linters or future formatters. Please remove the extra whitespace to keep the CSS formatting consistent with the rest of the file.
Suggested change
| table-layout: fixed; | |
| table-layout: fixed; |
Member
|
looks good to me! |
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.
Fix horizontal overflow in properties tables by forcing text wrapping, improving readability and eliminating horizontal scrolling.