Customizer: Ensure consistent margins in sections.
Since the customizer dynamically changes, `nth-child` selectors are not always a great idea. props afercia. fixes #32902. Built from https://develop.svn.wordpress.org/trunk@33297 git-svn-id: http://core.svn.wordpress.org/trunk@33269 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0a24f1bebf
commit
e9f33a90b3
|
@ -222,7 +222,7 @@ body {
|
|||
}
|
||||
|
||||
.customize-section-title {
|
||||
margin: -12px;
|
||||
margin: -12px -12px 0 -12px;
|
||||
border-bottom: 1px solid #ddd;
|
||||
background: #fff;
|
||||
}
|
||||
|
@ -256,10 +256,6 @@ h3.customize-section-title {
|
|||
color: #555;
|
||||
}
|
||||
|
||||
#customize-theme-controls .control-section .accordion-section-content > li.customize-control:nth-child(2) {
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
#customize-theme-controls {
|
||||
position: relative;
|
||||
right: 0;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -222,7 +222,7 @@ body {
|
|||
}
|
||||
|
||||
.customize-section-title {
|
||||
margin: -12px;
|
||||
margin: -12px -12px 0 -12px;
|
||||
border-bottom: 1px solid #ddd;
|
||||
background: #fff;
|
||||
}
|
||||
|
@ -256,10 +256,6 @@ h3.customize-section-title {
|
|||
color: #555;
|
||||
}
|
||||
|
||||
#customize-theme-controls .control-section .accordion-section-content > li.customize-control:nth-child(2) {
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
#customize-theme-controls {
|
||||
position: relative;
|
||||
left: 0;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.3-beta3-33296';
|
||||
$wp_version = '4.3-beta3-33297';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue