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. Fixes #48815. Built from https://develop.svn.wordpress.org/trunk@46845 git-svn-id: http://core.svn.wordpress.org/trunk@46645 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b051b9a0d4
commit
dcf0cb68a2
|
@ -1764,7 +1764,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
|
@ -1763,7 +1763,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
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.4-alpha-46844';
|
||||
$wp_version = '5.4-alpha-46845';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue