Customizer: Vertically center section arrows.
Props dualcube_subrata. Fixes #42123. Built from https://develop.svn.wordpress.org/trunk@41808 git-svn-id: http://core.svn.wordpress.org/trunk@41642 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
7b0dbf49fc
commit
8f4e2bdb6b
|
@ -3301,7 +3301,7 @@ img {
|
||||||
|
|
||||||
.control-section .accordion-section-title:after,
|
.control-section .accordion-section-title:after,
|
||||||
.customize-pane-child .accordion-section-title:after {
|
.customize-pane-child .accordion-section-title:after {
|
||||||
top: 11px;
|
top: calc(50% - 10px); /* Arrow height is 20px, so use half of that to vertically center */
|
||||||
}
|
}
|
||||||
|
|
||||||
.js .control-section:hover .accordion-section-title,
|
.js .control-section:hover .accordion-section-title,
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -3301,7 +3301,7 @@ img {
|
||||||
|
|
||||||
.control-section .accordion-section-title:after,
|
.control-section .accordion-section-title:after,
|
||||||
.customize-pane-child .accordion-section-title:after {
|
.customize-pane-child .accordion-section-title:after {
|
||||||
top: 11px;
|
top: calc(50% - 10px); /* Arrow height is 20px, so use half of that to vertically center */
|
||||||
}
|
}
|
||||||
|
|
||||||
.js .control-section:hover .accordion-section-title,
|
.js .control-section:hover .accordion-section-title,
|
||||||
|
|
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.9-beta1-41807';
|
$wp_version = '4.9-beta1-41808';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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