mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
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
This commit is contained in:
parent
de822e8fb0
commit
f2d146d3f1
@ -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,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user