Opened 8 weeks ago
Closed 6 weeks ago
#64337 closed defect (bug) (fixed)
Broken styling on "Add Plugins" screen
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | 6.9.1 | Priority: | normal |
| Severity: | normal | Version: | 6.9 |
| Component: | Plugins | Keywords: | has-patch has-test-info fixed-major dev-reviewed |
| Focuses: | ui, administration | Cc: |
Description
A fresh install of WP 6.9 has broken styling on the "Add Plugins" screen (/wp-admin/plugin-install.php).
There is no spacing between the tabs bar (Featured/Popular/Recommended/Favorites) and the plugin cards anymore.
See attached screenshot.
Attachments (2)
Change History (13)
This ticket was mentioned in PR #10586 on WordPress/wordpress-develop by @sajib1223.
8 weeks ago
#1
- Keywords has-patch added; needs-patch removed
#2
@
8 weeks ago
- Component changed from Administration to Plugins
- Focuses administration added
If the bottom margin is added to .wp-filter, the .table-nav.top page navigation probably should not have the 5 pixels of top padding when visiting the 'Popular' tab (and possibly other tabs).
[60528] added a line break to fix the lack of space on the Features tab, which worked in development when 'Beta testing' was the first tab. Now 'Features' is usually the first tab, and the featured plugins display—without the space—when the URL does not include a tab parameter.
For another option, I think the <br /> could work earlier, instead of using $_GET['tab']:
case 'install_plugins_featured': echo '<br />'; break;
This ticket was mentioned in PR #10587 on WordPress/wordpress-develop by @mukesh27.
8 weeks ago
#3
Trac ticket: https://core.trac.wordpress.org/ticket/64337
@mukesh27 commented on PR #10587:
8 weeks ago
#4
@mukesh27 commented on PR #10587:
8 weeks ago
#5
I agree with @sabernhardt’s comment here https://core.trac.wordpress.org/ticket/64337#comment:2, and it would be better to add a generic solution instead of adding additional CSS.
#6
@
8 weeks ago
- Keywords has-test-info added
Test Report
I have tested latest patch and it is working as expected. https://github.com/WordPress/wordpress-develop/pull/10587
Environment
WordPress: 6.9
PHP: 8.1.23
Server: nginx/1.16.0
Database: mysqli (Server: 8.0.16 / Client: mysqlnd 8.1.23)
Browser: Chrome 126.0.0.0 (macOS)
Theme: Twenty TwentyVersion: 2.7
Expected Results
The spacing issue between the tabs bar (Featured/Popular/Recommended/Favorites) and the plugin cards has been fixed.
#9
@
8 weeks ago
- Keywords fixed-major added
- Resolution fixed deleted
- Status changed from closed to reopened
Re-opening for 6.9.1 backport consideration.

Set the plugins tab bottom margin to 1rem, matching the old description margin.
Trac ticket: https://core.trac.wordpress.org/ticket/64337