List Tables: after [34276], decrease horizontal padding for sorted column headers (causing weirdness in the Count column of tax list tables) - the vertical padding change suffices in fixing the original issue.
Fixes #27945. Built from https://develop.svn.wordpress.org/trunk@34892 git-svn-id: http://core.svn.wordpress.org/trunk@34857 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0c2b2a0e3d
commit
a3ec4d45f3
|
@ -612,7 +612,7 @@ th.sortable a,
|
|||
th.sorted a {
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
padding: 8px 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
.fixed .column-comments.sortable a,
|
||||
|
|
|
@ -612,7 +612,7 @@ th.sortable a,
|
|||
th.sorted a {
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
padding: 8px 10px;
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
.fixed .column-comments.sortable a,
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-34891';
|
||||
$wp_version = '4.4-alpha-34892';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue