fix: typo in screen reader shadow color variable#657
Conversation
|
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. |
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Fixes a typo in a CSS custom property name to standardize the variable used for screen-reader styling.
Changes:
- Renamed a misspelled CSS variable from
--bbbase-screen-reader-shador-colorto--bbbase-screen-reader-shadow-color.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Buddypress ticket: https://buddypress.trac.wordpress.org/ticket/9336
fix: typo in screen reader shadow color variable in below file:
wordpress.org\buddypress.org\public_html\wp-content\themes\bb-base\style.cssThere is wrong variable name in the
style.cssfileWrong:
--bbbase-screen-reader-shador-color: rgba(0, 0, 0, 0.6);Correct:
--bbbase-screen-reader-shadow-color: rgba(0, 0, 0, 0.6);