Dialog/Drawer: lock scroll on the root element to prevent layout shift#42545
Open
mdo wants to merge 1 commit into
Open
Dialog/Drawer: lock scroll on the root element to prevent layout shift#42545mdo wants to merge 1 commit into
mdo wants to merge 1 commit into
Conversation
Apply the dialog-open scroll-lock (overflow: hidden) to the root <html> element instead of <body>, so it sits on the same element as scrollbar-gutter: stable. Co-locating them keeps the gutter reserved while the scrollbar is hidden, so the page no longer shifts (and the ::backdrop covers the gutter instead of leaving a white strip) when a dialog or drawer opens. Fixes #39221, #39972, #40908, #40659.
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.
Problem
Opening a dialog/drawer can shift page content sideways, and with
scrollbar-gutter: stablethe reserved gutter renders as a bare white strip instead of the dimmed overlay (#40659).Cause
scrollbar-gutter: stableis on:root(_root.scss), so the viewport scrollbar and its reserved gutter live on<html>. But the scroll-lock appliedoverflow: hiddento<body>. Because<html>'s overflow isvisible, the body→viewport overflow-propagation quirk hides the scrollbar at the viewport level while the gutter reservation stays on<html>— and in that split state browsers don't reliably honor the gutter, so content reflows and the gutter strip falls outside the native::backdrop.Fix
Apply the
dialog-openlock to the root element (<html>), co-locatingoverflow: hiddenwithscrollbar-gutter: stable. The gutter stays reserved while the scrollbar hides (no shift), and since<html>is the viewport scroller the::backdropcovers the gutter (no white strip).dialog-base.js: toggledialog-openondocument.documentElementinstead ofdocument.body._dialog.scss: scope the rule to:root.dialog-open.Fixes #39221, #39972, #40908, #40659.
Verification
🤖 Generated with Claude Code