Make WordPress Core

Changeset 31465


Ignore:
Timestamp:
02/15/2015 12:17:41 PM (10 years ago)
Author:
ocean90
Message:

grunt autoprefixer for [31333].

see ##29820.

File:
1 edited

Legend:

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

    r31422 r31465  
    12341234.plugin-card .updating-message:before {
    12351235    content: '\f463';
    1236    -webkit-animation: rotation 2s infinite linear;
     1236    -webkit-animation: rotation 2s infinite linear;
     1237    animation: rotation 2s infinite linear;
    12371238}
    12381239
    12391240@-webkit-keyframes rotation {
    1240     from {-webkit-transform: rotate(0deg);}
    1241     to   {-webkit-transform: rotate(359deg);}
     1241    0% {
     1242        -webkit-transform: rotate(0deg);
     1243        transform: rotate(0deg);
     1244    }
     1245    100% {
     1246        -webkit-transform: rotate(359deg);
     1247        transform: rotate(359deg);
     1248    }
     1249}
     1250
     1251@keyframes rotation {
     1252    0% {
     1253        -webkit-transform: rotate(0deg);
     1254        transform: rotate(0deg);
     1255    }
     1256    100% {
     1257        -webkit-transform: rotate(359deg);
     1258        transform: rotate(359deg);
     1259    }
    12421260}
    12431261
Note: See TracChangeset for help on using the changeset viewer.