You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
When collapsed panel and we added already padding, border or box-shadow to panel then its appearance not looks proper.
How?
Using style hide the visibility of panel when it is collapsed. or we can apply (Dimensions) and (Border & Shadow) inline styles to child element of wp-block-accordion-panel
Testing Instructions
Insert an Accordion block
Apply padding and border styles to the Accordion Header block.
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 props-bot label.
Unlinked Accounts
The following contributors have not linked their GitHub and WordPress.org accounts: @minaldiwan.
@theminaldiwan, I think this PR is the same as #71845, and I can see conflicts in this PR. You'll probably need to sync your local repository with the upstream branch before submitting a PR.
How about updating packages/block-library/src/accordion-panel/style.scss as follows?
.wp-block-accordion-panel {
&[inert],
&[aria-hidden="true"] {
display: none;
// Prevent blockGap from Accordion Content block from adding extra margin between accordions.margin-block-start: 0;
}
}
That is, remove overflow-hidden and add display:none. [inert] or [aria-hiddne="carview.php?tsp=true"] is a selector used to apply styles when the panel is not visually visible.
How about updating packages/block-library/src/accordion-panel/style.scss as follows?
.wp-block-accordion-panel {
&[inert],
&[aria-hidden="carview.php?tsp=true"] {
display: none;
// Prevent blockGap from Accordion Content block from adding extra margin between accordions.
margin-block-start: 0;
}
}
That is, remove overflow-hidden and add display:none. [inert] or [aria-hiddne="carview.php?tsp=true"] is a selector used to apply styles when the panel is not visually visible.
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.
What?
Closes #71806
Why?
When collapsed panel and we added already padding, border or box-shadow to panel then its appearance not looks proper.
How?
Using style hide the visibility of panel when it is collapsed.
or we can apply (Dimensions) and (Border & Shadow) inline styles to child element of wp-block-accordion-panel
Testing Instructions
Screencast
Screen.Recording.2025-09-23.at.6.34.55.PM.mov