fix: improve PDF viewer UI#2454
Merged
hsluoyz merged 1 commit intoJul 7, 2026
Merged
Conversation
…box, tidy toolbar
hsluoyz
pushed a commit
that referenced
this pull request
Jul 7, 2026
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
The PDF preview on the store Overview had a hardcoded purple toolbar that clashed with the app theme, a tall page that overflowed the preview box with no way to scroll it, and a themed scrollbar that turned white against the light toolbar and
disappeared. This themes the viewer, fits the page to the box, and scrolls it inside the frame.
All CSS is scoped to
.filetree-doc-viewer(the className already on the<DocViewer>), consistent with the existing msdoc rule, so it doesn't affect any other react-doc-viewer instance.Changes
Setting.getThemeColor) icons/labels instead of the hardcoded purple.#pdf-rendererheight: 100%+overflow-y: auto) so the mouse wheel works and a tall page no longer overflows the frame; keep the toolbar pinned (position: sticky) while scrolling.#pdf-renderera visible custom scrollbar.max-width: 100%) and hide react-pdf's text / annotation / struct layers (react-doc-viewer doesn't shipTextLayer.css, so they rendered as visible extracted text under the page).