mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 15:50:09 +00:00
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:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user