TinyMCE, image toolbar: remove the animation and make the box-shadow lighter.
Merges [30812] to the 4.1 branch. props melchoyce. fixes #30664. Built from https://develop.svn.wordpress.org/branches/4.1@30815 git-svn-id: http://core.svn.wordpress.org/branches/4.1@30805 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c103b48395
commit
98211e7dcd
|
@ -158,15 +158,13 @@ div.mce-inline-toolbar-grp {
|
|||
border: 1px solid #aaa;
|
||||
-webkit-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
-webkit-box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.2 );
|
||||
box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.2 );
|
||||
-webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );
|
||||
box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
margin-bottom: 8px;
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
|
@ -183,18 +181,6 @@ div.mce-inline-toolbar-grp.mce-arrow-up {
|
|||
margin-top: 8px;
|
||||
}
|
||||
|
||||
div.mce-inline-toolbar-grp.mce-inline-toolbar-grp-active {
|
||||
-webkit-transition:
|
||||
top 0.1s ease-out,
|
||||
right 0.1s ease-out,
|
||||
opacity 0.1s ease-in-out;
|
||||
transition:
|
||||
top 0.1s ease-out,
|
||||
right 0.1s ease-out,
|
||||
opacity 0.1s ease-in-out;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
div.mce-inline-toolbar-grp:before,
|
||||
div.mce-inline-toolbar-grp:after {
|
||||
position: absolute;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -158,15 +158,13 @@ div.mce-inline-toolbar-grp {
|
|||
border: 1px solid #aaa;
|
||||
-webkit-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
-webkit-box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.2 );
|
||||
box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.2 );
|
||||
-webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );
|
||||
box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
margin-bottom: 8px;
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
|
@ -183,18 +181,6 @@ div.mce-inline-toolbar-grp.mce-arrow-up {
|
|||
margin-top: 8px;
|
||||
}
|
||||
|
||||
div.mce-inline-toolbar-grp.mce-inline-toolbar-grp-active {
|
||||
-webkit-transition:
|
||||
top 0.1s ease-out,
|
||||
left 0.1s ease-out,
|
||||
opacity 0.1s ease-in-out;
|
||||
transition:
|
||||
top 0.1s ease-out,
|
||||
left 0.1s ease-out,
|
||||
opacity 0.1s ease-in-out;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
div.mce-inline-toolbar-grp:before,
|
||||
div.mce-inline-toolbar-grp:after {
|
||||
position: absolute;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.1-beta2-30814';
|
||||
$wp_version = '4.1-beta2-30815';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue