Administration: CSS selector correction for list table checkboxes.
This replaces `.check-column .label-covers-full-cell input` selector with `.check-column .label-covers-full-cell + input`. Follow-up to [55954]. Props sabernhardt. Fixes #21516. Built from https://develop.svn.wordpress.org/trunk@56135 git-svn-id: http://core.svn.wordpress.org/trunk@55647 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e0750558b9
commit
a295a53218
|
@ -580,7 +580,7 @@ th.sorted.desc:hover .sorting-indicator.asc:before {
|
|||
right: 0;
|
||||
}
|
||||
|
||||
.check-column .label-covers-full-cell input {
|
||||
.check-column .label-covers-full-cell + input {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -579,7 +579,7 @@ th.sorted.desc:hover .sorting-indicator.asc:before {
|
|||
left: 0;
|
||||
}
|
||||
|
||||
.check-column .label-covers-full-cell input {
|
||||
.check-column .label-covers-full-cell + input {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.3-beta3-56134';
|
||||
$wp_version = '6.3-beta3-56135';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue