Make WordPress Core

Ticket #45080: 45080-50.diff

File 45080-50.diff, 24.2 KB (added by netweb, 6 years ago)
  • branches/5.0/src/wp-admin/css/about.css

     
    168168/* 1.2 - Structure */
    169169
    170170.about-wrap [class$="-col"] {
    171         display: -webkit-box;
    172171        display: flex;
    173         -webkit-box-pack: justify;
    174172        justify-content: space-between;
    175173        flex-wrap: wrap;
    176174}
     
    191189}
    192190
    193191.about-wrap [class$="-col"] .col {
    194         -webkit-box-flex: 1;
    195192        flex: 1;
    196193}
    197194
     
    201198}
    202199
    203200.about-wrap .three-col .col {
    204         -webkit-align-self: flex-start;
    205201        align-self: flex-start;
    206202        min-width: 31%;
    207203        max-width: 31%;
     
    259255}
    260256
    261257.about-wrap .two-col-text {
    262         -webkit-column-count: 2;
    263258        column-count: 2;
    264         -webkit-column-gap: 40px;
    265259        column-gap: 40px;
    266260}
    267261
     
    381375.about-wrap .floating-header-section .section-content {
    382376        -ms-grid-column: 2;
    383377        grid-column: 2;
    384         display: -webkit-box;
    385378        display: flex;
    386         -webkit-box-pack: justify;
    387379        justify-content: space-between;
    388         -webkit-box-align: start;
    389380        align-items: flex-start;
    390         -webkit-box-orient: horizontal;
    391         -webkit-box-direction: normal;
    392381        flex-flow: row wrap;
    393         -webkit-box-flex: 2;
    394382        flex-grow: 2;
    395383        flex-shrink: 0;
    396384}
    397385
    398386.about-wrap .floating-header-section .section-item {
    399         -webkit-box-flex: 1;
    400387        flex-grow: 1;
    401388        max-width: calc(50% - 30px);
    402389}
     
    425412}
    426413
    427414.about-wrap .floating-header-section.has-long-title .section-content {
    428         -webkit-box-pack: start;
    429415        justify-content: flex-start;
    430416}
    431417
     
    548534
    549535@media screen and (max-width: 782px) {
    550536        .about-wrap .two-col-text {
    551                 -webkit-column-count: 1;
    552537                column-count: 1;
    553538        }
    554539
  • branches/5.0/src/wp-admin/css/admin-menu.css

     
    597597/* rtl:ignore */
    598598.folded #collapse-button .collapse-button-icon:after,
    599599.rtl #collapse-button .collapse-button-icon:after {
    600         -webkit-transform: rotate(180deg);
    601600        transform: rotate(180deg);
    602601}
    603602
    604603.rtl.folded #collapse-button .collapse-button-icon:after {
    605         -webkit-transform: none;
    606604        transform: none;
    607605}
    608606
     
    728726
    729727        /* rtl:ignore */
    730728        .auto-fold #collapse-button .collapse-button-icon:after {
    731                 -webkit-transform: rotate(180deg);
    732729                transform: rotate(180deg);
    733730        }
    734731
    735732        .rtl.auto-fold #collapse-button .collapse-button-icon:after {
    736                 -webkit-transform: none;
    737733                transform: none;
    738734        }
    739735
  • branches/5.0/src/wp-admin/css/color-picker.css

     
    5050
    5151.wp-color-result:active {
    5252        /* See Trac ticket #39662 */
    53         -webkit-transform: none !important;
    5453        transform: none !important;
    5554}
    5655
  • branches/5.0/src/wp-admin/css/common.css

     
    11171117.wp-filter .button.drawer-toggle:active {
    11181118        background: transparent;
    11191119        box-shadow: none;
    1120         -webkit-transform: none;
    11211120        transform: none;
    11221121}
    11231122
     
    15081507.import-php .updating-message:before,
    15091508.button.updating-message:before,
    15101509.button.installing:before {
    1511         -webkit-animation: rotation 2s infinite linear;
    15121510        animation: rotation 2s infinite linear;
    15131511}
    15141512
     
    16811679
    16821680#screen-meta-links .show-settings:active {
    16831681        box-shadow: none;
    1684         -webkit-transform: none;
    16851682        transform: none;
    16861683}
    16871684
     
    24702467}
    24712468
    24722469.rtl .star-rating .star-half {
    2473         -webkit-transform: rotateY(180deg);
    24742470        transform: rotateY(180deg);
    24752471}
    24762472
     
    29192915        margin: -10px 0 0 -10px;
    29202916        background: #fcfcfc url(../images/spinner.gif) no-repeat center;
    29212917        background-size: 20px 20px;
    2922         -webkit-transform: translateZ(0);
    29232918        transform: translateZ(0);
    29242919}
    29252920
  • branches/5.0/src/wp-admin/css/customize-controls.css

     
    157157        font-size: 14px;
    158158        width: 30px;
    159159        float: left;
    160         -webkit-transform: none;
    161160        transform: none;
    162161        margin-top: 0;
    163162}
     
    634633        margin: 0;
    635634        padding: 0;
    636635        box-sizing: border-box;
    637         transition: 0.18s -webkit-transform cubic-bezier(0.645, 0.045, 0.355, 1);
    638         transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1);
    639         transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1), 0.18s -webkit-transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
     636        transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
    640637}
    641638
    642639#customize-theme-controls .customize-pane-child.skip-transition {
     
    650647        height: auto;
    651648        max-height: none;
    652649        overflow: auto;
    653         -webkit-transform: none;
    654650        transform: none;
    655651}
    656652
     
    662658        height: 0;
    663659        max-height: none;
    664660        overflow: hidden;
    665         -webkit-transform: translateX(100%);
    666661        transform: translateX(100%);
    667662}
    668663
    669664#customize-theme-controls .customize-pane-child.open,
    670665#customize-theme-controls .customize-pane-child.current-panel {
    671         -webkit-transform: none;
    672666        transform: none;
    673667}
    674668
     
    680674        visibility: hidden;
    681675        height: 0;
    682676        overflow: hidden;
    683         -webkit-transform: translateX(-100%);
    684677        transform: translateX(-100%);
    685678}
    686679
     
    10751068        bottom: 0;
    10761069        z-index: 10;
    10771070        background: #eee;
    1078         display: -webkit-box;
    10791071        display: flex;
    10801072}
    10811073
     
    10871079
    10881080#available-menu-items .new-content-item .create-item-input,
    10891081.customize-control-dropdown-pages .new-content-item .create-item-input {
    1090         -webkit-box-flex: 10;
    10911082        flex-grow: 10;
    10921083}
    10931084
    10941085#available-menu-items .new-content-item .add-content,
    10951086.customize-control-dropdown-pages .new-content-item .add-content {
    10961087        margin: 2px 0 2px 6px;
    1097         -webkit-box-flex: 10;
    10981088        flex-grow: 1;
    10991089}
    11001090
     
    12151205        margin-top: 1px;
    12161206}
    12171207
    1218 @-webkit-keyframes customize-fade-in {
    1219         0%   { opacity: 0; }
    1220         100% { opacity: 1; }
    1221 }
    1222 
    12231208@keyframes customize-fade-in {
    12241209        0%   { opacity: 0; }
    12251210        100% { opacity: 1; }
     
    12321217}
    12331218
    12341219#customize-controls .customize-control-notifications-container.has-overlay-notifications {
    1235         -webkit-animation: customize-fade-in 0.5s;
    12361220        animation: customize-fade-in 0.5s;
    12371221        z-index: 30;
    12381222}
     
    15061490
    15071491.customize-control-header .placeholder:hover .dice,
    15081492.customize-control-header .header-view:hover > button.random .dice {
    1509         -webkit-animation: dice-color-change 3s infinite;
    15101493        animation: dice-color-change 3s infinite;
    15111494}
    15121495
    15131496.button-see-me {
    1514         -webkit-animation: bounce .7s 1;
    15151497        animation: bounce .7s 1;
    1516         -webkit-transform-origin: center bottom;
    15171498        transform-origin: center bottom;
    15181499}
    15191500
    1520 @-webkit-keyframes bounce {
    1521         from, 20%, 53%, 80%, to {
    1522                 -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    1523                 -webkit-transform: translate3d(0,0,0);
    1524         }
    1525 
    1526         40%, 43% {
    1527                 -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    1528                 -webkit-transform: translate3d(0, -12px, 0);
    1529         }
    1530 
    1531         70% {
    1532                 -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    1533                 -webkit-transform: translate3d(0, -6px, 0);
    1534         }
    1535 
    1536         90% {
    1537                 -webkit-transform: translate3d(0,-1px,0);
    1538         }
    1539 }
    1540 
    15411501@keyframes bounce {
    15421502        from, 20%, 53%, 80%, to {
    1543                 -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    15441503                animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    1545                 -webkit-transform: translate3d(0,0,0);
    15461504                transform: translate3d(0,0,0);
    15471505        }
    15481506
    15491507        40%, 43% {
    1550                 -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    15511508                animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    1552                 -webkit-transform: translate3d(0, -12px, 0);
    15531509                transform: translate3d(0, -12px, 0);
    15541510        }
    15551511
    15561512        70% {
    1557                 -webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    15581513                animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    1559                 -webkit-transform: translate3d(0, -6px, 0);
    15601514                transform: translate3d(0, -6px, 0);
    15611515        }
    15621516
    15631517        90% {
    1564                 -webkit-transform: translate3d(0,-1px,0);
    15651518                transform: translate3d(0,-1px,0);
    15661519        }
    15671520}
     
    18311784        background: #eee;
    18321785        border-color: #999;
    18331786        box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    1834         -webkit-transform: translateY(1px);
    18351787        transform: translateY(1px);
    18361788}
    18371789
     
    18601812}
    18611813
    18621814/* Adds a delay before fading in to avoid it "jumping" */
    1863 @-webkit-keyframes themes-fade-in {
    1864         0% {
    1865                 opacity: 0;
    1866         }
    1867         50% {
    1868                 opacity: 0;
    1869         }
    1870         100% {
    1871                 opacity: 1;
    1872         }
    1873 }
    18741815@keyframes themes-fade-in {
    18751816        0% {
    18761817                opacity: 0;
     
    18841825}
    18851826
    18861827.control-panel-themes .customize-themes-full-container.animate {
    1887         -webkit-animation: .6s themes-fade-in 1;
    18881828        animation: .6s themes-fade-in 1;
    18891829}
    18901830
    18911831.in-themes-panel:not(.animating) .control-panel-themes .filter-themes-count {
    1892         -webkit-animation: .6s themes-fade-in 1;
    18931832        animation: .6s themes-fade-in 1;
    18941833}
    18951834
     
    25752514body.adding-widget .add-new-widget:before,
    25762515.adding-menu-items .add-new-menu-item:before,
    25772516#accordion-section-add_menu .add-new-menu-item.open:before {
    2578         -webkit-transform: rotate(45deg);
    25792517        transform: rotate(45deg);
    25802518}
    25812519
  • branches/5.0/src/wp-admin/css/edit.css

     
    13521352.focus-on #adminmenuback,
    13531353.focus-on #adminmenuwrap {
    13541354        transition-duration: 0.6s;
    1355         transition-property: -webkit-transform;
    13561355        transition-property: transform;
    1357         transition-property: transform, -webkit-transform;
    13581356        transition-timing-function: ease-in-out;
    13591357}
    13601358
    13611359.focus-on #adminmenuback,
    13621360.focus-on #adminmenuwrap {
    1363         -webkit-transform: translateX( -100% );
    13641361        transform: translateX( -100% );
    13651362}
    13661363
    13671364.focus-off #adminmenuback,
    13681365.focus-off #adminmenuwrap {
    1369         -webkit-transform: translateX( 0 );
    13701366        transform: translateX( 0 );
    13711367        transition-duration: 0.2s;
    1372         transition-property: -webkit-transform;
    13731368        transition-property: transform;
    1374         transition-property: transform, -webkit-transform;
    13751369        transition-timing-function: ease-in-out;
    13761370}
    13771371
  • branches/5.0/src/wp-admin/css/forms.css

     
    834834        right: 10px;
    835835        bottom: 9px;
    836836        background: transparent;
    837         -webkit-transform: skew(20deg) rotate(6deg);
    838837        transform: skew(20deg) rotate(6deg);
    839838        box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
    840839}
    841840
    842841.pressthis-bookmarklet:hover:after {
    843         -webkit-transform: skew(20deg) rotate(9deg);
    844842        transform: skew(20deg) rotate(9deg);
    845843        box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
    846844}
     
    12041202.email-personal-data--sending::before {
    12051203        color: #f56e28;
    12061204        content: "\f463";
    1207         -webkit-animation: rotation 2s infinite linear;
    12081205        animation: rotation 2s infinite linear;
    12091206}
    12101207
     
    15691566        }
    15701567}
    15711568
    1572 @-webkit-keyframes rotation {
    1573         0% {
    1574                 -webkit-transform: rotate(0deg);
    1575                 transform: rotate(0deg);
    1576         }
    1577         100% {
    1578                 -webkit-transform: rotate(359deg);
    1579                 transform: rotate(359deg);
    1580         }
    1581 }
    1582 
    15831569@keyframes rotation {
    15841570        0% {
    1585                 -webkit-transform: rotate(0deg);
    15861571                transform: rotate(0deg);
    15871572        }
    15881573        100% {
    1589                 -webkit-transform: rotate(359deg);
    15901574                transform: rotate(359deg);
    15911575        }
    15921576}
  • branches/5.0/src/wp-admin/css/list-tables.css

     
    13641364
    13651365.plugin-card .updating-message:before {
    13661366        content: "\f463";
    1367         -webkit-animation: rotation 2s infinite linear;
    13681367        animation: rotation 2s infinite linear;
    13691368}
    13701369
    1371 @-webkit-keyframes rotation {
    1372         0% {
    1373                 -webkit-transform: rotate(0deg);
    1374                 transform: rotate(0deg);
    1375         }
    1376         100% {
    1377                 -webkit-transform: rotate(359deg);
    1378                 transform: rotate(359deg);
    1379         }
    1380 }
    1381 
    13821370@keyframes rotation {
    13831371        0% {
    1384                 -webkit-transform: rotate(0deg);
    13851372                transform: rotate(0deg);
    13861373        }
    13871374        100% {
    1388                 -webkit-transform: rotate(359deg);
    13891375                transform: rotate(359deg);
    13901376        }
    13911377}
  • branches/5.0/src/wp-admin/css/media.css

     
    888888        margin: -10px 0 0 -10px;
    889889        background: transparent url(../images/spinner.gif) no-repeat center;
    890890        background-size: 20px 20px;
    891         -webkit-transform: translateZ(0);
    892891        transform: translateZ(0);
    893892}
    894893
  • branches/5.0/src/wp-admin/css/revisions.css

     
    355355        top: -20px;
    356356        width: 25px;
    357357        height: 25px;
    358         -webkit-transform: rotate(45deg);
    359358        transform: rotate(45deg);
    360359}
    361360
     
    417416        top: -20px;
    418417        width: 25px;
    419418        height: 25px;
    420         -webkit-transform: rotate(45deg);
    421419        transform: rotate(45deg);
    422420}
    423421
     
    473471        background: #eee;
    474472        border-color: #999;
    475473        box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    476         -webkit-transform: translateY(1px);
    477474        transform: translateY(1px);
    478475}
    479476
  • branches/5.0/src/wp-admin/css/themes.css

     
    230230.theme-browser .theme .theme-actions {
    231231        position: absolute;
    232232        top: 50%;
    233         -webkit-transform: translateY(-50%);
    234233        transform: translateY(-50%);
    235234        right: 0;
    236235        padding: 10px 15px;
     
    12391238}
    12401239
    12411240.background-position-control .button-group:first-child > label:first-child .dashicons {
    1242         -webkit-transform: rotate( 45deg );
    12431241        transform: rotate( 45deg );
    12441242}
    12451243
     
    12481246}
    12491247
    12501248.background-position-control .button-group:first-child > label:last-child .dashicons {
    1251         -webkit-transform: rotate( -45deg );
    12521249        transform: rotate( -45deg );
    12531250}
    12541251
     
    12571254}
    12581255
    12591256.background-position-control .button-group:last-child > label:first-child .dashicons {
    1260         -webkit-transform: rotate( -45deg );
    12611257        transform: rotate( -45deg );
    12621258}
    12631259
     
    12661262}
    12671263
    12681264.background-position-control .button-group:last-child > label:last-child .dashicons {
    1269         -webkit-transform: rotate( 45deg );
    12701265        transform: rotate( 45deg );
    12711266}
    12721267
     
    15631558/* rtl:ignore */
    15641559.wp-full-overlay.collapsed .collapse-sidebar-arrow:before,
    15651560.rtl .wp-full-overlay .collapse-sidebar-arrow:before {
    1566         -webkit-transform: rotate(180.001deg);
    15671561        transform: rotate(180.001deg); /* Firefox: promoting to its own layer to trigger anti-aliasing  */
    15681562}
    15691563
    15701564.rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before {
    1571         -webkit-transform: none;
    15721565        transform: none;
    15731566}
    15741567
     
    18541847        top: 50%;
    18551848        z-index: -1;
    18561849        margin: -10px 0 0 -10px;
    1857         -webkit-transform: translateZ(0);
    18581850        transform: translateZ(0);
    18591851        background: transparent url(../images/spinner.gif) no-repeat center center;
    18601852        background-size: 20px 20px;
  • branches/5.0/src/wp-admin/css/widgets.css

     
    164164}
    165165
    166166.media-widget-gallery-preview {
    167         display: -webkit-box;
    168167        display: flex;
    169         -webkit-box-pack: start;
    170168        justify-content: flex-start;
    171169        flex-wrap: wrap;
    172170        margin: -1.79104477%;
     
    221219        bottom: 0;
    222220        width: 100%;
    223221        box-sizing: border-box;
    224         display: -webkit-box;
    225222        display: flex;
    226         -webkit-box-align: center;
    227223        align-items: center;
    228         -webkit-box-pack: center;
    229224        justify-content: center;
    230225        background-color: rgba( 0, 0, 0, .5 );
    231226}
  • branches/5.0/src/wp-includes/css/buttons.css

     
    156156        background: #eee;
    157157        border-color: #999;
    158158        box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    159         -webkit-transform: translateY(1px);
    160159        transform: translateY(1px);
    161160}
    162161
     
    180179        box-shadow: none !important;
    181180        text-shadow: 0 1px 0 #fff !important;
    182181        cursor: default;
    183         -webkit-transform: none !important;
    184182        transform: none !important;
    185183}
    186184
  • branches/5.0/src/wp-includes/css/customize-preview.css

     
    5252        cursor: pointer;
    5353        box-sizing: border-box;
    5454        padding: 3px;
    55         -webkit-animation-fill-mode: both;
    5655        animation-fill-mode: both;
    57         -webkit-animation-duration: .4s;
    5856        animation-duration: .4s;
    5957        opacity: 0;
    6058        pointer-events: none;
     
    8583}
    8684
    8785body.customize-partial-edit-shortcuts-shown .customize-partial-edit-shortcut button {
    88         -webkit-animation-name: customize-partial-edit-shortcut-bounce-appear;
    8986        animation-name: customize-partial-edit-shortcut-bounce-appear;
    9087        pointer-events: auto;
    9188}
    9289body.customize-partial-edit-shortcuts-hidden .customize-partial-edit-shortcut button {
    93         -webkit-animation-name: customize-partial-edit-shortcut-bounce-disappear;
    9490        animation-name: customize-partial-edit-shortcut-bounce-disappear;
    9591        pointer-events: none;
    9692}
     
    10096        visibility: hidden;
    10197}
    10298
    103 @-webkit-keyframes customize-partial-edit-shortcut-bounce-appear {
    104         from, 20%, 40%, 60%, 80%, to {
    105                 -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    106                 animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    107         }
    108         0% {
    109                 opacity: 0;
    110                 -webkit-transform: scale3d(.3, .3, .3);
    111                 transform: scale3d(.3, .3, .3);
    112         }
    113         20% {
    114                 -webkit-transform: scale3d(1.1, 1.1, 1.1);
    115                 transform: scale3d(1.1, 1.1, 1.1);
    116         }
    117         40% {
    118                 -webkit-transform: scale3d(.9, .9, .9);
    119                 transform: scale3d(.9, .9, .9);
    120         }
    121         60% {
    122                 opacity: 1;
    123                 -webkit-transform: scale3d(1.03, 1.03, 1.03);
    124                 transform: scale3d(1.03, 1.03, 1.03);
    125         }
    126         80% {
    127                 -webkit-transform: scale3d(.97, .97, .97);
    128                 transform: scale3d(.97, .97, .97);
    129         }
    130         to {
    131                 opacity: 1;
    132                 -webkit-transform: scale3d(1, 1, 1);
    133                 transform: scale3d(1, 1, 1);
    134         }
    135 }
    136 
    13799@keyframes customize-partial-edit-shortcut-bounce-appear {
    138100        from, 20%, 40%, 60%, 80%, to {
    139                 -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    140101                animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    141102        }
    142103        0% {
    143104                opacity: 0;
    144                 -webkit-transform: scale3d(.3, .3, .3);
    145105                transform: scale3d(.3, .3, .3);
    146106        }
    147107        20% {
    148                 -webkit-transform: scale3d(1.1, 1.1, 1.1);
    149108                transform: scale3d(1.1, 1.1, 1.1);
    150109        }
    151110        40% {
    152                 -webkit-transform: scale3d(.9, .9, .9);
    153111                transform: scale3d(.9, .9, .9);
    154112        }
    155113        60% {
    156114                opacity: 1;
    157                 -webkit-transform: scale3d(1.03, 1.03, 1.03);
    158115                transform: scale3d(1.03, 1.03, 1.03);
    159116        }
    160117        80% {
    161                 -webkit-transform: scale3d(.97, .97, .97);
    162118                transform: scale3d(.97, .97, .97);
    163119        }
    164120        to {
    165121                opacity: 1;
    166                 -webkit-transform: scale3d(1, 1, 1);
    167122                transform: scale3d(1, 1, 1);
    168123        }
    169124}
    170125
    171 @-webkit-keyframes customize-partial-edit-shortcut-bounce-disappear {
    172         from, 20%, 40%, 60%, 80%, to {
    173                 -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    174                 animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    175         }
    176         0% {
    177                 opacity: 1;
    178                 -webkit-transform: scale3d(1, 1, 1);
    179                 transform: scale3d(1, 1, 1);
    180         }
    181         20% {
    182                 -webkit-transform: scale3d(.97, .97, .97);
    183                 transform: scale3d(.97, .97, .97);
    184         }
    185         40% {
    186                 opacity: 1;
    187                 -webkit-transform: scale3d(1.03, 1.03, 1.03);
    188                 transform: scale3d(1.03, 1.03, 1.03);
    189         }
    190         60% {
    191                 -webkit-transform: scale3d(.9, .9, .9);
    192                 transform: scale3d(.9, .9, .9);
    193         }
    194         80% {
    195                 -webkit-transform: scale3d(1.1, 1.1, 1.1);
    196                 transform: scale3d(1.1, 1.1, 1.1);
    197         }
    198         to {
    199                 opacity: 0;
    200                 -webkit-transform: scale3d(.3, .3, .3);
    201                 transform: scale3d(.3, .3, .3);
    202         }
    203 }
    204 
    205126@keyframes customize-partial-edit-shortcut-bounce-disappear {
    206127        from, 20%, 40%, 60%, 80%, to {
    207                 -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    208128                animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    209129        }
    210130        0% {
    211131                opacity: 1;
    212                 -webkit-transform: scale3d(1, 1, 1);
    213132                transform: scale3d(1, 1, 1);
    214133        }
    215134        20% {
    216                 -webkit-transform: scale3d(.97, .97, .97);
    217135                transform: scale3d(.97, .97, .97);
    218136        }
    219137        40% {
    220138                opacity: 1;
    221                 -webkit-transform: scale3d(1.03, 1.03, 1.03);
    222139                transform: scale3d(1.03, 1.03, 1.03);
    223140        }
    224141        60% {
    225                 -webkit-transform: scale3d(.9, .9, .9);
    226142                transform: scale3d(.9, .9, .9);
    227143        }
    228144        80% {
    229                 -webkit-transform: scale3d(1.1, 1.1, 1.1);
    230145                transform: scale3d(1.1, 1.1, 1.1);
    231146        }
    232147        to {
    233148                opacity: 0;
    234                 -webkit-transform: scale3d(.3, .3, .3);
    235149                transform: scale3d(.3, .3, .3);
    236150        }
    237151}
  • branches/5.0/src/wp-includes/css/editor.css

     
    693693        background: #eee;
    694694        border-color: #999;
    695695        box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    696         -webkit-transform: translateY(1px);
    697696        transform: translateY(1px);
    698697}
    699698
     
    704703        box-shadow: none !important;
    705704        text-shadow: 0 1px 0 #fff !important;
    706705        cursor: default;
    707         -webkit-transform: none !important;
    708706        transform: none !important;
    709707}
    710708
  • branches/5.0/src/wp-includes/css/jquery-ui-dialog.css

     
    228228        background: #eee;
    229229        border-color: #999;
    230230        box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    231         -webkit-transform: translateY(1px);
    232231        transform: translateY(1px);
    233232}
    234233
     
    240239        box-shadow: none !important;
    241240        text-shadow: 0 1px 0 #fff !important;
    242241        cursor: default;
    243         -webkit-transform: none !important;
    244242        transform: none !important;
    245243}
    246244
  • branches/5.0/src/wp-includes/css/media-views.css

     
    912912        left: 0;
    913913        width: 100%;
    914914        height: 100%;
    915         -webkit-transform: translate( 50%, 50% ); /* Fails with spaces?? Weird! */
    916915        transform: translate( 50%, 50% );
    917916}
    918917
    919918.wp-core-ui .attachment .thumbnail .centered img {
    920         -webkit-transform: translate( -50%, -50% );
    921919        transform: translate( -50%, -50% );
    922920}
    923921
    924922.wp-core-ui .attachments-browser .attachment .thumbnail .centered img.icon {
    925         -webkit-transform: translate( -50%, -70% );
    926923        transform: translate( -50%, -70% );
    927924}
    928925
     
    12921289        top: 50%;
    12931290        left: 0;
    12941291        right: 0;
    1295         -webkit-transform: translateY( -50% );
    12961292        transform: translateY( -50% );
    12971293        font-size: 40px;
    12981294        color: #fff;
     
    21292125        top: 50%;
    21302126        left: 0;
    21312127        right: 0;
    2132         -webkit-transform: translateY( -50% );
    21332128        transform: translateY( -50% );
    21342129        font-size: 3em;
    21352130        line-height: 1.3;
  • branches/5.0/src/wp-includes/css/wp-auth-check.css

     
    6464        margin: -10px 0 0 -10px;
    6565        background: url(../images/spinner.gif) no-repeat center;
    6666        background-size: 20px 20px;
    67         -webkit-transform: translateZ(0);
    6867        transform: translateZ(0);
    6968}
    7069
  • branches/5.0/src/wp-includes/css/wp-embed-template.css

     
    130130        position: absolute;
    131131        top: 50%;
    132132        left: 0;
    133         -webkit-transform: translateY(-50%);
    134133        transform: translateY(-50%);
    135134        height: 25px;
    136135        width: 25px;
     
    240239
    241240.wp-embed-share-dialog-content {
    242241        height: 100%;
    243         -webkit-transform-style: preserve-3d;
    244242        transform-style: preserve-3d;
    245243        overflow: hidden;
    246244}