Revisions: Properly position the spinner on Compare Revisions screen.

props vinod dalvi for initial patch.
fixes #28590.

git-svn-id: https://develop.svn.wordpress.org/trunk@29054 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov
2014-07-10 01:43:59 +00:00
parent 6afe00e338
commit c35bd6c927

View File

@@ -73,12 +73,15 @@
}
.revisions .loading-indicator {
position: fixed;
position: absolute;
vertical-align: middle;
opacity: 0;
width: 100%;
width: -webkit-calc( 100% - 30px );
width: calc( 100% - 30px );
top: 50%;
margin-left: -90px;
top: -webkit-calc( 50% - 10px );
top: calc( 50% - 10px );
-webkit-transition: opacity 0.5s;
transition: opacity 0.5s;
filter: alpha(opacity=0); /* ie8 and earlier */