Make WordPress Core

Changeset 30884


Ignore:
Timestamp:
12/15/2014 11:19:06 PM (9 years ago)
Author:
ocean90
Message:

Autoprefixer for [30857].

see #30435.

File:
1 edited

Legend:

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

    r30857 r30884  
    242242    overflow: hidden;
    243243    margin-top: 50px;
     244    -webkit-box-shadow: 0 0 10px rgba( 0, 0, 0, 0.25 );
    244245    box-shadow: 0 0 10px rgba( 0, 0, 0, 0.25 );
    245246}
     
    250251    left: 0;
    251252    /* Cubic Bezier to speed up the slide-out of the full-width sidebar image */
     253    -webkit-transition: 0.8s -webkit-transform cubic-bezier(.9,.03,1,.61),
     254                0.65s opacity linear;
    252255    transition: 0.8s transform cubic-bezier(.9,.03,1,.61),
    253256                0.65s opacity linear;
     
    259262
    260263.about-wrap .dfw-container .overlay-image.from-left {
     264    -webkit-transform: translate3d(-100%, 0, 0);
    261265    transform: translate3d(-100%, 0, 0);
    262266}
     
    264268.about-wrap .dfw-container:hover .overlay-image {
    265269    opacity: 1;
     270    -webkit-transform: translate3d(0, 0, 0);
    266271    transform: translate3d(0, 0, 0);
    267272    /* Cubic Bezier to speed up the slide-in of the full-width sidebar image */
     273    -webkit-transition: 0.7s -webkit-transform cubic-bezier( 0, 0.8, 0.8, 1 ),
     274                0.8s opacity linear;
    268275    transition: 0.7s transform cubic-bezier( 0, 0.8, 0.8, 1 ),
    269276                0.8s opacity linear;
     
    291298    width: 90px;
    292299    background-color: #cccccc;
     300    -webkit-border-radius: 50%;
    293301    border-radius: 50%;
    294302    fill: #999;
Note: See TracChangeset for help on using the changeset viewer.