Plugins: Correct table layout on smaller screens.
This ensures that the message about deleting a plugin or having no plugins installed is displayed in full width. Follow-up to [26134], [33016]. Props shailu25, mukesh27, passoniate, JavierCasares, sabernhardt. Fixes #50069. Built from https://develop.svn.wordpress.org/trunk@57321 git-svn-id: http://core.svn.wordpress.org/trunk@56827 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d3bdd3911c
commit
b2e9235b13
|
@ -2144,6 +2144,11 @@ div.action-links,
|
|||
padding: 10px 9px; /* reset from other list tables that have a label at this width */
|
||||
}
|
||||
|
||||
#wpbody-content .wp-list-table.plugins .plugin-deleted-tr td,
|
||||
#wpbody-content .wp-list-table.plugins .no-items td {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
/* Plugin description hidden via Screen Options */
|
||||
#wpbody-content .wp-list-table.plugins .desc.hidden {
|
||||
display: none;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2143,6 +2143,11 @@ div.action-links,
|
|||
padding: 10px 9px; /* reset from other list tables that have a label at this width */
|
||||
}
|
||||
|
||||
#wpbody-content .wp-list-table.plugins .plugin-deleted-tr td,
|
||||
#wpbody-content .wp-list-table.plugins .no-items td {
|
||||
display: table-cell;
|
||||
}
|
||||
|
||||
/* Plugin description hidden via Screen Options */
|
||||
#wpbody-content .wp-list-table.plugins .desc.hidden {
|
||||
display: none;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.5-alpha-57320';
|
||||
$wp_version = '6.5-alpha-57321';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue