TinyMCE: tweak the small animation shown while waiting for wpView data to make it sell CPU intensive.

Props programmin.
Fixes #33525.
Built from https://develop.svn.wordpress.org/trunk@36976


git-svn-id: http://core.svn.wordpress.org/trunk@36944 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz 2016-03-13 17:02:26 +00:00
parent 1a5694fc0f
commit c481c4449b
2 changed files with 4 additions and 4 deletions

View File

@ -333,11 +333,11 @@ audio {
.wpview-wrap .wpview-loading ins {
background-color: #333;
margin: 0 0 0 -60px;
width: 60px;
width: 36px;
height: 5px;
display: block;
-webkit-animation: wpview-loading 1.3s infinite 1s linear;
animation: wpview-loading 1.3s infinite 1s linear;
-webkit-animation: wpview-loading 1.3s infinite 1s steps(36);
animation: wpview-loading 1.3s infinite 1s steps(36);
}
@-webkit-keyframes wpview-loading {

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.5-beta3-36975';
$wp_version = '4.5-beta3-36976';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.