Administration: Correct checkbox width in list tables on smaller screens.

Previously, checkboxes for pending comments were partially hidden due to an added `4px` border.

Props audrasjb, jeremyfelt, talldanwp, melchoyce, marcelo2605, waleedt93.
Merges [46845] to the 5.3 branch.
Fixes #48815.
Built from https://develop.svn.wordpress.org/branches/5.3@46846


git-svn-id: http://core.svn.wordpress.org/branches/5.3@46646 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-12-09 14:30:02 +00:00
parent 9870e114af
commit 05b9f27d11
5 changed files with 11 additions and 5 deletions

View File

@ -1767,7 +1767,10 @@ div.action-links,
/* Checkboxes need to show */
.wp-list-table tr th.check-column {
display: table-cell;
width: 35px;
}
.wp-list-table .check-column {
width: 2.5em;
}
.wp-list-table .column-primary .toggle-row {

File diff suppressed because one or more lines are too long

View File

@ -1767,7 +1767,10 @@ div.action-links,
/* Checkboxes need to show */
.wp-list-table tr th.check-column {
display: table-cell;
width: 35px;
}
.wp-list-table .check-column {
width: 2.5em;
}
.wp-list-table .column-primary .toggle-row {

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.3.1-alpha-46843';
$wp_version = '5.3.1-alpha-46846';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.