Opened 3 months ago
Closed 2 months ago
#65362 closed defect (bug) (duplicate)
Regression: display: flex on #major-publishing-actions breaks layout in Classic Editor box with third-party plugins
| Reported by: | mwcom82 | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Administration | Version: | 7.0 |
| Severity: | normal | Keywords: | has-patch |
| Cc: | Focuses: |
Description
### Description
A recent core update introduced display: flex; to the #major-publishing-actions container in the classic post editing screen. While this alignment works fine on a vanilla installation, it introduces a major visual regression when third-party extensions (such as translation tools, SEO plugins, or cache purgers) inject links or custom toggles inside or adjacent to this container.
The flexbox layout forces all child elements onto a single horizontal line without wrapping properly, causing text to overlap, layout breaking, and pushing the main blue "Publish/Update" button out of the screen boundaries.
### Steps to reproduce
- Use the Classic Editor (or Classic block) on WordPress 7.x (or latest core).
- Install plugins that inject actions into the publishing box (e.g., Yoast, WPML, Polylang, or caching tools).
- Go to Edit Post. Look at the "Publish" meta box on the right sidebar.
### Expected behavior
The container should let elements wrap gracefully or stack vertically so that the "Publish" button and "Move to trash" link remain accessible and readable.
### Actual behavior
Elements overlap horizontally, rendering the UI broken and the publish button hidden or pushed down.
### Proposed Fix / Workaround
Disabling display: flex and reverting to the legacy block/float behavior solves the issue completely.
`css
#major-publishing-actions {
display: block !important;
}
#delete-action {
float: left;
}
#publishing-action {
float: right;
}
Attachments (1)
Change History (4)
This ticket was mentioned in PR #11996 on WordPress/wordpress-develop by @ankitkumarshah.
2 months ago
#1
- Keywords has-patch added
#2
@
2 months ago
Hi @mwcom82, thank you for reporting this issue and providing the details.
I was able to reproduce the problem on my end and have opened a PR with a proposed patch to address the layout issue in the Classic Editor publish box.
Whenever you have a chance, could you please review the PR? Thank You!
#3
@
2 months ago
- Milestone Awaiting Review
- Resolution → duplicate
- Status new → closed
Hi @mwcom82 and welcome to Trac!
This is being tracked in #65286, and until 7.0.1 is released, you can use the Hotfix plugin.
https://make.wordpress.org/core/2026/05/28/hotfix-available-for-65286/
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
https://core.trac.wordpress.org/ticket/65362