Customizer sidebar accordion buttons 100% height in 6.7
-
While testing WP 6.7, I noticed that the Appearance > Customize buttons in the sidebar have been given some new styles, and they are making the buttons fill 100% of the height:
This is when I go to the “old” Customize (wp-admin/customize.php) and it happens on all three of the sites I’ve tested, all of which use different themes and plugins.
The culprit seems to be this CSS which was added for 6.7, specifically the “height: 100%;” attribute because when I remove that height attribute, the buttons look/function as expected:
.accordion-section-title button.accordion-trigger {
all: unset;
width: 100%;
height: 100%;
padding: 10px 10px 11px 14px;
display: flex;
align-items: center;
}Is this an oversight in 6.7 or all three sites just unlucky to be having this same issue? We haven’t upgraded in production yet and I’m wondering if I need to add an override for this or wait for a bug fix. We need to use the Customizer as we have “classic” themes and a bunch of functionality that uses it.
Thank you for all replies!
- You must be logged in to reply to this topic.