Customize: Restore right border on footer actions.
Fixes regression introduced in [40511]. Props timmydcrawford. See #32296. Fixes #40978. Built from https://develop.svn.wordpress.org/trunk@40896 git-svn-id: http://core.svn.wordpress.org/trunk@40746 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5041510529
commit
2327afb5fe
|
@ -1644,6 +1644,8 @@ body.full-overlay-active {
|
||||||
min-width: 299px;
|
min-width: 299px;
|
||||||
max-width: 599px;
|
max-width: 599px;
|
||||||
width: 18%;
|
width: 18%;
|
||||||
|
width: -webkit-calc( 18% - 1px );
|
||||||
|
width: calc( 18% - 1px );
|
||||||
height: 45px;
|
height: 45px;
|
||||||
border-top: 1px solid #ddd;
|
border-top: 1px solid #ddd;
|
||||||
background: #eee;
|
background: #eee;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1644,6 +1644,8 @@ body.full-overlay-active {
|
||||||
min-width: 299px;
|
min-width: 299px;
|
||||||
max-width: 599px;
|
max-width: 599px;
|
||||||
width: 18%;
|
width: 18%;
|
||||||
|
width: -webkit-calc( 18% - 1px );
|
||||||
|
width: calc( 18% - 1px );
|
||||||
height: 45px;
|
height: 45px;
|
||||||
border-top: 1px solid #ddd;
|
border-top: 1px solid #ddd;
|
||||||
background: #eee;
|
background: #eee;
|
||||||
|
|
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-alpha-40895';
|
$wp_version = '4.9-alpha-40896';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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