Customize: Fix visibility of theme browser header in Safari.

Props benoitchantre, afercia.
See #42052, #37661.

Built from https://develop.svn.wordpress.org/trunk@41863


git-svn-id: http://core.svn.wordpress.org/trunk@41697 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Weston Ruter 2017-10-15 04:59:10 +00:00
parent e4550efbb7
commit 8562e4bfac
5 changed files with 9 additions and 9 deletions

View File

@ -1752,8 +1752,8 @@ p.customize-section-description {
top: 0; top: 0;
right: 0; right: 0;
transition: .18s right ease-in-out; transition: .18s right ease-in-out;
margin: 46px 300px 0 0; margin: 0 300px 0 0;
padding: 25px 0; padding: 71px 0 25px;
overflow-y: scroll; overflow-y: scroll;
width: calc(100% - 300px); width: calc(100% - 300px);
height: calc(100% - 96px); height: calc(100% - 96px);
@ -2193,7 +2193,7 @@ p.customize-section-description {
.control-panel-themes .customize-themes-full-container { .control-panel-themes .customize-themes-full-container {
width: 100%; width: 100%;
margin: 0; margin: 0;
top: 46px; padding-top: 46px;
height: calc(100% - 46px); height: calc(100% - 46px);
z-index: 1; z-index: 1;
display: none; display: none;

File diff suppressed because one or more lines are too long

View File

@ -1752,8 +1752,8 @@ p.customize-section-description {
top: 0; top: 0;
left: 0; left: 0;
transition: .18s left ease-in-out; transition: .18s left ease-in-out;
margin: 46px 0 0 300px; margin: 0 0 0 300px;
padding: 25px 0; padding: 71px 0 25px;
overflow-y: scroll; overflow-y: scroll;
width: calc(100% - 300px); width: calc(100% - 300px);
height: calc(100% - 96px); height: calc(100% - 96px);
@ -2193,7 +2193,7 @@ p.customize-section-description {
.control-panel-themes .customize-themes-full-container { .control-panel-themes .customize-themes-full-container {
width: 100%; width: 100%;
margin: 0; margin: 0;
top: 46px; padding-top: 46px;
height: calc(100% - 46px); height: calc(100% - 46px);
z-index: 1; z-index: 1;
display: none; display: none;

File diff suppressed because one or more lines are too long

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.9-beta2-41862'; $wp_version = '4.9-beta2-41863';
/** /**
* 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.