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. Built from https://develop.svn.wordpress.org/trunk@51887 git-svn-id: http://core.svn.wordpress.org/trunk@51480 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
cf84fbc988
commit
3c16cc2cfb
|
@ -1255,6 +1255,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,
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -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,
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.9-alpha-51886';
|
||||
$wp_version = '5.9-alpha-51887';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue