Customize: Eliminate use of flexbox for edit shortcuts.
Props sirbrillig. See #27403. Fixes #38660. Built from https://develop.svn.wordpress.org/trunk@39186 git-svn-id: http://core.svn.wordpress.org/trunk@39126 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ad80e08c17
commit
3b008dc2a0
|
@ -31,8 +31,8 @@
|
|||
|
||||
.widget .customize-partial-edit-shortcut button:active,
|
||||
.customize-partial-edit-shortcut button:active {
|
||||
padding: 0;
|
||||
border: 0;
|
||||
padding: 3px;
|
||||
border: 1px solid #0085ba;
|
||||
}
|
||||
|
||||
/* Styles for the actual shortcut */
|
||||
|
@ -55,30 +55,9 @@
|
|||
-webkit-box-shadow: 0 2px 1px rgba(46,68,83,0.15);
|
||||
box-shadow: 0 2px 1px rgba(46,68,83,0.15);
|
||||
text-align: center;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-orient: horizontal;
|
||||
-webkit-box-direction: normal;
|
||||
-webkit-flex-direction: row;
|
||||
-moz-box-orient: horizontal;
|
||||
-moz-box-direction: normal;
|
||||
-ms-flex-direction: row;
|
||||
flex-direction: row;
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-moz-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-moz-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
padding: 3px;
|
||||
-webkit-animation-fill-mode: both;
|
||||
animation-fill-mode: both;
|
||||
-webkit-animation-duration: .4s;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -31,8 +31,8 @@
|
|||
|
||||
.widget .customize-partial-edit-shortcut button:active,
|
||||
.customize-partial-edit-shortcut button:active {
|
||||
padding: 0;
|
||||
border: 0;
|
||||
padding: 3px;
|
||||
border: 1px solid #0085ba;
|
||||
}
|
||||
|
||||
/* Styles for the actual shortcut */
|
||||
|
@ -55,30 +55,9 @@
|
|||
-webkit-box-shadow: 0 2px 1px rgba(46,68,83,0.15);
|
||||
box-shadow: 0 2px 1px rgba(46,68,83,0.15);
|
||||
text-align: center;
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -moz-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-orient: horizontal;
|
||||
-webkit-box-direction: normal;
|
||||
-webkit-flex-direction: row;
|
||||
-moz-box-orient: horizontal;
|
||||
-moz-box-direction: normal;
|
||||
-ms-flex-direction: row;
|
||||
flex-direction: row;
|
||||
-webkit-box-pack: center;
|
||||
-webkit-justify-content: center;
|
||||
-moz-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-align: center;
|
||||
-webkit-align-items: center;
|
||||
-moz-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
padding: 3px;
|
||||
-webkit-animation-fill-mode: both;
|
||||
animation-fill-mode: both;
|
||||
-webkit-animation-duration: .4s;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.7-beta2-39185';
|
||||
$wp_version = '4.7-beta2-39186';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue