Customize: Prevent multi-line checkbox control labels from wrapping under checkbox.
Props bordoni. Fixes #34607. Built from https://develop.svn.wordpress.org/trunk@35608 git-svn-id: http://core.svn.wordpress.org/trunk@35572 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7e1c68ea78
commit
025074bbda
|
@ -546,13 +546,23 @@ p.customize-section-description {
|
||||||
}
|
}
|
||||||
|
|
||||||
.customize-control-color .color-picker,
|
.customize-control-color .color-picker,
|
||||||
.customize-control-checkbox label,
|
|
||||||
.customize-control-upload div {
|
.customize-control-upload div {
|
||||||
line-height: 28px;
|
line-height: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.customize-control-checkbox input {
|
.customize-control-checkbox label,
|
||||||
margin-left: 5px;
|
.customize-control-nav_menu_auto_add label {
|
||||||
|
line-height: 20px;
|
||||||
|
display: block;
|
||||||
|
margin-right: 24px;
|
||||||
|
padding-top: 4px;
|
||||||
|
padding-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-control-checkbox input,
|
||||||
|
.customize-control-nav_menu_auto_add input {
|
||||||
|
margin-left: 4px;
|
||||||
|
margin-right: -24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.customize-control-radio {
|
.customize-control-radio {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -546,13 +546,23 @@ p.customize-section-description {
|
||||||
}
|
}
|
||||||
|
|
||||||
.customize-control-color .color-picker,
|
.customize-control-color .color-picker,
|
||||||
.customize-control-checkbox label,
|
|
||||||
.customize-control-upload div {
|
.customize-control-upload div {
|
||||||
line-height: 28px;
|
line-height: 28px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.customize-control-checkbox input {
|
.customize-control-checkbox label,
|
||||||
margin-right: 5px;
|
.customize-control-nav_menu_auto_add label {
|
||||||
|
line-height: 20px;
|
||||||
|
display: block;
|
||||||
|
margin-left: 24px;
|
||||||
|
padding-top: 4px;
|
||||||
|
padding-bottom: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.customize-control-checkbox input,
|
||||||
|
.customize-control-nav_menu_auto_add input {
|
||||||
|
margin-right: 4px;
|
||||||
|
margin-left: -24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.customize-control-radio {
|
.customize-control-radio {
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-beta3-35607';
|
$wp_version = '4.4-beta3-35608';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue