Twenty Nineteen: Theme block styles are not applied to blocks in the widget area#9019
Twenty Nineteen: Theme block styles are not applied to blocks in the widget area#9019shubhtoy wants to merge 3 commits into
Conversation
Test using WordPress PlaygroundThe changes in this pull request can previewed and tested using a WordPress Playground instance. WordPress Playground is an experimental project that creates a full WordPress instance entirely within the browser. Some things to be aware of
For more details about these limitations and more, check out the Limitations page in the WordPress Playground documentation. |
…eteen-footer-button-css-60408
|
The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the Core Committers: Use this line as a base for the props when committing in SVN: To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook. |
This PR addresses a CSS specificity issue in the Twenty Nineteen theme where Gutenberg block styles, particularly button styles, were not being applied consistently across different areas of the site due to insufficient selector specificity.
Problem
The original CSS selectors used
.entry .entry-contentas the base, which meant:Example of the issue:
Changes Made
Steps to Reproduce the Original Issue
Technical Details
The :root .site selector provides higher specificity than the original .entry .entry-content while still being scoped to the site container. This ensures the styles apply everywhere blocks can appear while maintaining the theme's design integrity.
Specificity comparison:
Artificats (Screen Recordings)
Screen.Recording.2025-06-19.at.5.16.29.PM.mov
Screen.Recording.2025-06-19.at.5.18.28.PM.mov
Trac ticket: #60408
This Pull Request is for code review only. Please keep all other discussion in the Trac ticket. Do not merge this Pull Request. See GitHub Pull Requests for Code Review in the Core Handbook for more details.