Make WordPress Core

Changeset 29054


Ignore:
Timestamp:
07/10/2014 01:43:59 AM (10 years ago)
Author:
SergeyBiryukov
Message:

Revisions: Properly position the spinner on Compare Revisions screen.

props vinod dalvi for initial patch.
fixes #28590.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/css/revisions.css

    r27437 r29054  
    7474
    7575.revisions .loading-indicator {
    76     position: fixed;
     76    position: absolute;
    7777    vertical-align: middle;
    7878    opacity: 0;
    7979    width: 100%;
     80    width: -webkit-calc( 100% - 30px );
     81    width: calc( 100% - 30px );
    8082    top: 50%;
    81     margin-left: -90px;
     83    top: -webkit-calc( 50% - 10px );
     84    top: calc( 50% - 10px );
    8285    -webkit-transition: opacity 0.5s;
    8386    transition: opacity 0.5s;
Note: See TracChangeset for help on using the changeset viewer.