From f2d146d3f1ebd5661af2efd3099b0c988df538c8 Mon Sep 17 00:00:00 2001 From: Tonya Mork Date: Tue, 5 Oct 2021 15:05:15 +0000 Subject: [PATCH] Administration: Allow plugin action links row to wrap. When there are several action links or the text for these links is long, the plugin name column's width extends causing the other columns to shrink in width. This case is a less than desirable user experience. The plugin name's column has `white-space: nowrap` (on larger screens). This commit changes the `white-space` to `normal`, allowing the plugin action links row to wrap into more than one line. Follow-up to [41695]. Props ankit-k-gupta, nekojonez, sabernhardt, sergeybiryukov. Fixes #53275. git-svn-id: https://develop.svn.wordpress.org/trunk@51887 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/css/list-tables.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/wp-admin/css/list-tables.css b/src/wp-admin/css/list-tables.css index 55145b598d..a39a3b725c 100644 --- a/src/wp-admin/css/list-tables.css +++ b/src/wp-admin/css/list-tables.css @@ -1254,6 +1254,11 @@ ul.cat-checklist { padding: 0 0 5px; } +.plugins .row-actions { + white-space: normal; + min-width: 12em; +} + .plugins .update .second, .plugins .update .row-actions, .plugins .updated .second,