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

Props programmin.
Fixes #33525.

git-svn-id: https://develop.svn.wordpress.org/trunk@36976 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2016-03-13 17:01:19 +00:00
parent efeff26a67
commit c60cf303dc
1 changed files with 3 additions and 3 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 {