Make WordPress Core

Ticket #27078: 27078.2.patch

File 27078.2.patch, 57.1 KB (added by ocean90, 11 years ago)
  • Gruntfile.js

     
    152152                                src: []
    153153                        }
    154154                },
     155                autoprefixer: {
     156                        options: {
     157                                browsers: ['Android >= 2.1', 'Chrome >= 21', 'Explorer >= 7', 'Firefox >= 17', 'Opera >= 12.1', 'Safari >= 6.0']
     158                        },
     159                        core: {
     160                                expand: true,
     161                                cwd: SOURCE_DIR,
     162                                dest: SOURCE_DIR,
     163                                src: [
     164                                        'wp-admin/css/*.css',
     165                                        'wp-includes/css/*.css'
     166                                ]
     167                        },
     168                        colors: {
     169                                expand: true,
     170                                cwd: BUILD_DIR,
     171                                dest: BUILD_DIR,
     172                                src: [
     173                                        'wp-admin/css/colors/*/colors.css'
     174                                ]
     175                        }
     176                },
    155177                jshint: {
    156178                        options: grunt.file.readJSON('.jshintrc'),
    157179                        grunt: {
     
    365387        grunt.registerTask('colors', ['sass:colors']);
    366388
    367389        // Build task.
    368         grunt.registerTask('build', ['clean:all', 'copy:all', 'cssmin:core', 'colors', 'rtl', 'cssmin:rtl', 'cssmin:colors',
    369                 'uglify:core', 'concat:tinymce', 'compress:tinymce', 'clean:tinymce', 'jsvalidate:build']);
     390        grunt.registerTask('build', ['clean:all', 'copy:all', 'cssmin:core', 'colors', 'autoprefixer:colors', 'rtl', 'cssmin:rtl',
     391                'cssmin:colors', 'uglify:core', 'concat:tinymce', 'compress:tinymce', 'clean:tinymce', 'jsvalidate:build']);
    370392
    371393        // Testing tasks.
    372394        grunt.registerMultiTask('phpunit', 'Runs PHPUnit tests, including the ajax and multisite tests.', function() {
  • package.json

     
    2121    "grunt-contrib-jshint": "~0.8.0",
    2222    "grunt-cssjanus": "~0.2.2",
    2323    "grunt-sass": "~0.10.0",
     24    "grunt-autoprefixer": "~0.6.5",
    2425    "grunt-jsvalidate": "~0.2.2",
    2526    "matchdep": "~0.3.0"
    2627  }
  • src/wp-admin/css/color-picker.css

     
    1717        position: relative;
    1818        top: 1px;
    1919        user-select: none;
    20         -moz-user-select: none;
    21         -ms-user-select: none;
    22         -webkit-user-select: none;
    2320        vertical-align: bottom;
    2421        display: inline-block;
    2522        padding-left: 30px;
    26 
    27         -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.08);
    2823        box-shadow: 0 1px 0 rgba(0,0,0,.08);
    2924}
    3025
     
    4237        right: 0;
    4338        text-align: center;
    4439        top: 0;
    45 
    46         -webkit-box-shadow: inset 0 1px 0 #fff;
    4740        box-shadow: inset 0 1px 0 #fff;
    4841}
    4942
     
    7467
    7568.wp-color-result:focus {
    7669        border-color: #888;
    77         -webkit-box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.2 );
    7870        box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.2 );
    7971}
    8072
  • src/wp-admin/css/colors/_admin.scss

     
    439439.wp-slider .ui-slider-handle.focus {
    440440        background: $button-color;
    441441        border-color: darken( $button-color, 10% );
    442         -webkit-box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15);
    443442        box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15);
    444443}
    445444
  • src/wp-admin/css/colors/_mixins.scss

     
    11/*
    2  * Button mixin- creates 3d-ish button effect with correct
     2 * Button mixin- creates 3d-ish button effect with correct
    33 * highlights/shadows, based on a base color.
    44 */
    55@mixin button( $button-color, $text-color: white ) {
    66        background: $button-color;
    77        border-color: darken( $button-color, 10% );
    88        color: $text-color;
    9         -webkit-box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15);
    109        box-shadow: inset 0 1px 0 lighten( $button-color, 15% ), 0 1px 0 rgba(0,0,0,.15);
    1110
    1211        &:hover,
     
    1413                background: darken( $button-color, 5% );
    1514                border-color: darken( $button-color, 15% );
    1615                color: $text-color;
    17                 -webkit-box-shadow: inset 0 1px 0 lighten( $button-color, 10% ), 0 1px 0 rgba(0,0,0,.15);
    1816                box-shadow: inset 0 1px 0 lighten( $button-color, 10% ), 0 1px 0 rgba(0,0,0,.15);
    1917        }
    2018
     
    2220                background: darken( $button-color, 10% );
    2321                border-color: darken( $button-color, 15% );
    2422                color: $text-color;
    25                 -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    2623                box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    2724        }
    2825
  • src/wp-admin/css/customize-controls.css

     
    8484}
    8585
    8686#customize-theme-controls {
    87         -webkit-box-shadow: 0px 1px 1px -1px rgba(0, 0, 0, 0.1);
    88         box-shadow:         0px 1px 1px -1px rgba(0, 0, 0, 0.1);
     87        box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1);
    8988}
    9089
    9190#customize-theme-controls .control-section {
     
    254253        margin-right: 16px;
    255254        padding: 4px 5px;
    256255        border: 2px solid #eeeeee;
    257         -webkit-user-select: none;
    258         -moz-user-select: none;
    259256        user-select: none;
    260257}
    261258
     
    422419.accordion-section .customize-control-upload .upload-dropzone.supports-drag-drop,
    423420.accordion-section .customize-control-image .upload-dropzone.supports-drag-drop {
    424421        display: block;
    425         -webkit-transition: border-color 0.1s;
    426         -moz-transition:    border-color 0.1s;
    427         -ms-transition:     border-color 0.1s;
    428         -o-transition:      border-color 0.1s;
    429         transition:         border-color 0.1s;
     422        transition: border-color 0.1s;
    430423}
    431424
    432425.accordion-section .customize-control-upload .library ul li,
     
    469462        font-size: 14px;
    470463        background: #555555;
    471464        border: 1px solid #dfdfdf;
    472         -webkit-border-radius: 3px;
    473465        border-radius: 3px;
    474466}
  • src/wp-admin/css/install.css

     
    1111        padding: 20px 20px 10px 20px;
    1212        max-width: 700px;
    1313        -webkit-font-smoothing: subpixel-antialiased;
    14         -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);
    1514        box-shadow: 0 1px 3px rgba(0,0,0,0.13);
    1615}
    1716
     
    9998        border: 1px solid #dfdfdf;
    10099        font-family: "Open Sans", sans-serif;
    101100        width: 100%;
    102         -moz-box-sizing: border-box;
    103         -webkit-box-sizing: border-box;
    104         -ms-box-sizing: border-box; /* ie8 only */
    105101        box-sizing: border-box;
    106102}
    107103
     
    305301                display: block;
    306302                max-width: none;
    307303                box-sizing: border-box;
    308                 -moz-box-sizing: border-box;
    309304        }
    310305
    311306}
  • src/wp-admin/css/wp-admin.css

     
    226226        color: #21759b;
    227227        z-index: 100000;
    228228        line-height: normal;
    229         -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
    230229        box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
    231230        text-decoration: none;
    232231        outline: none;
     
    259258.feature-filter,
    260259.imgedit-group {
    261260        border: 1px solid #e5e5e5;
    262         -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    263261        box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    264262}
    265263
     
    292290input[type="email"],
    293291input[type="url"],
    294292textarea {
    295         -moz-box-sizing: border-box;
    296         -webkit-box-sizing: border-box;
    297         -ms-box-sizing: border-box; /* ie8 only */
    298293        box-sizing: border-box;
    299294}
    300295
     
    316311        width: 16px;
    317312        min-width: 16px;
    318313        -webkit-appearance: none;
    319         -webkit-box-sizing: border-box;
    320314        box-sizing: border-box;
    321         -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1);
    322         box-shadow:         inset 0px 1px 2px rgba(0,0,0,0.1);
     315        box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    323316}
    324317
    325318.wp-core-ui input[type="reset"]:hover,
     
    351344input.disabled,
    352345textarea:disabled,
    353346textarea.disabled {
    354         -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
    355         box-shadow:         inset 0 1px 2px rgba(0,0,0,0.04);
     347        box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
    356348        border-color: rgba(222, 222, 222, .75);
    357349        background: rgba(255, 255, 255, .5);
    358350        color: rgba(51, 51, 51, .5);
     
    491483
    492484a {
    493485        color: #0074a2;
    494         -webkit-transition-property: border, background, color;
    495         -moz-transition-property:    border, background, color;
    496         transition-property:         border, background, color;
    497         -webkit-transition-duration: .05s;
    498         -moz-transition-duration:    .05s;
    499         transition-duration:         .05s;
    500         -webkit-transition-timing-function: ease-in-out;
    501         -moz-transition-timing-function:    ease-in-out;
    502         transition-timing-function:         ease-in-out;
     486        transition-property: border, background, color;
     487        transition-duration: .05s;
     488        transition-timing-function: ease-in-out;
    503489}
    504490
    505491a,
     
    880866        border-left: 4px solid #7ad03a;
    881867        padding: 1px 12px;
    882868        background-color: #fff;
    883 
    884         -webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1);
    885         box-shadow:         0px 1px 1px 0px rgba(0,0,0,0.1);
     869        box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
    886870}
    887871
    888872div.error,
    889873.login #login_error {
    890874        border-left: 4px solid #dd3d36;
    891875        background: #fff;
    892 
    893         -webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1);
    894         box-shadow:         0px 1px 1px 0px rgba(0,0,0,0.1);
     876        box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
    895877}
    896878
    897879div.error {
     
    989971div#widgets-right .widget-top:hover,
    990972#widgets-left .widget-top:hover {
    991973        border-color: #999;
    992         -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    993974        box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    994975}
    995976
     
    11401121        display: inline-block;
    11411122        -webkit-font-smoothing: antialiased;
    11421123        -moz-osx-font-smoothing: grayscale;
    1143         -webkit-transition: all .1s ease-in-out;
    1144         -moz-transition:    all .1s ease-in-out;
    1145         transition:         all .1s ease-in-out;
     1124        transition: all .1s ease-in-out;
    11461125}
    11471126
    11481127.icon16.icon-dashboard:before,
     
    13041283.submit {
    13051284        padding: 1.5em 0;
    13061285        margin: 5px 0;
    1307         -webkit-border-bottom-left-radius: 3px;
    1308         -webkit-border-bottom-right-radius: 3px;
    13091286        border-bottom-left-radius: 3px;
    13101287        border-bottom-right-radius: 3px;
    13111288        border: none;
     
    14551432        top: 0;
    14561433        text-decoration: none !important;
    14571434        vertical-align: top;
    1458 
    14591435        -webkit-font-smoothing: antialiased;
    14601436        -moz-osx-font-smoothing: grayscale;
    14611437}
     
    16601636        margin: 25px 20px 0 2px;
    16611637        background-color: #fff;
    16621638        border-left: 4px solid #ffba00;
    1663 
    1664         -webkit-box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.1);
    1665         box-shadow:         0px 1px 1px 0px rgba(0,0,0,0.1);
     1639        box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
    16661640}
    16671641
    16681642.update-message {
     
    17561730        background-color: #fff;
    17571731        border: 1px solid #ddd;
    17581732        border-top: none;
    1759         -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.025);
    1760         box-shadow:         0 1px 0 rgba(0,0,0,.025);
     1733        box-shadow: 0 1px 0 rgba(0,0,0,.025);
    17611734}
    17621735
    17631736#screen-options-link-wrap,
     
    17681741        border: 1px solid #ddd;
    17691742        border-top: none;
    17701743        background: #fff;
    1771         -webkit-box-shadow: 0px 1px 1px -1px rgba(0,0,0,0.1);
    1772         box-shadow:         0px 1px 1px -1px rgba(0,0,0,0.1);
     1744        box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
    17731745}
    17741746
    17751747#screen-meta-links .screen-meta-toggle {
     
    17891761
    17901762#screen-meta-links a:focus {
    17911763        border-color: #aaa;
    1792         -webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.15);
    1793         box-shadow:         0 2px 3px rgba(0,0,0,0.15);
     1764        box-shadow: 0 2px 3px rgba(0,0,0,0.15);
    17941765}
    17951766
    17961767#screen-meta-links a.show-settings {
     
    18951866
    18961867#contextual-help-wrap.no-sidebar #contextual-help-back {
    18971868        right: 0;
    1898 
    18991869        border-right-width: 0;
    1900         -webkit-border-bottom-right-radius: 2px;
    19011870        border-bottom-right-radius: 2px;
    19021871}
    19031872
     
    19381907        margin: 0 -1px 0 0;
    19391908        border-left: 2px solid #2ea2cc;
    19401909        background: #f6fbfd;
    1941 
    1942         -webkit-box-shadow: 0px 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02);
    1943         box-shadow:         0px 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02);
     1910        box-shadow: 0 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02);
    19441911}
    19451912
    19461913.contextual-help-tabs .active a {
     
    19871954
    19881955/* side admin menu */
    19891956#adminmenu * {
    1990         -webkit-user-select: none;
    1991         -moz-user-select: none;
    19921957        user-select: none;
    19931958}
    19941959
     
    20331998        padding: 7px 0 8px;
    20341999        z-index: 9999;
    20352000        background-color: #333;
    2036 
    2037         -webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    2038         box-shadow:         0 3px 5px rgba(0,0,0,0.2);
     2001        box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    20392002}
    20402003
    20412004#adminmenu .wp-submenu a,
     
    20692032        bottom: auto;
    20702033        border: 0 none;
    20712034        margin-top: 0;
    2072         -webkit-box-shadow: none;
    20732035        box-shadow: none;
    20742036        background-color: #333;
    20752037}
     
    21282090.folded #adminmenu .wp-has-current-submenu li > a {
    21292091        padding-right: 16px;
    21302092        padding-left: 14px;
    2131         -moz-transition: all .1s ease-in-out;
    2132         -webkit-transition: all .1s ease-in-out;
    21332093        transition: all .1s ease-in-out;
    21342094}
    21352095
     
    21952155        display: inline-block;
    21962156        -webkit-font-smoothing: antialiased;
    21972157        -moz-osx-font-smoothing: grayscale;
    2198         -moz-transition: all .1s ease-in-out;
    2199         -webkit-transition: all .1s ease-in-out;
    22002158        transition: all .1s ease-in-out;
    22012159}
    22022160
     
    23622320        font-weight: 600;
    23632321        margin: 1px 0 0 2px;
    23642322        vertical-align: top;
    2365         -webkit-border-radius: 10px;
    23662323        border-radius: 10px;
    23672324        z-index: 26;
    23682325}
     
    23902347        line-height: 34px;
    23912348        margin-top: 10px;
    23922349        color: #aaa;
    2393         -webkit-transition: all .1s ease-in-out;
    2394         -moz-transition:    all .1s ease-in-out;
    2395         transition:         all .1s ease-in-out;
     2350        transition: all .1s ease-in-out;
    23962351}
    23972352
    23982353#collapse-menu:hover,
     
    24152370        height: 15px;
    24162371        margin: 10px 8px 10px 11px;
    24172372        width: 15px;
    2418 
    2419         -webkit-border-radius: 10px;
    24202373        border-radius: 10px;
    24212374}
    24222375
     
    24382391        position: relative;
    24392392        text-align: center;
    24402393        width: 20px;
    2441         -moz-transition: all .1s ease-in-out;
    2442         -webkit-transition: all .1s ease-in-out;
    24432394        transition: all .1s ease-in-out;
    2444 
    24452395        -webkit-font-smoothing: antialiased;
    24462396        -moz-osx-font-smoothing: grayscale;
    24472397}
    24482398
    24492399.folded #collapse-button div:after,
    24502400.rtl #collapse-button div:after {
    2451         -ms-transform: rotate(180deg);
    2452         -webkit-transform: rotate(180deg);
    24532401        transform: rotate(180deg);
    24542402}
    24552403
    24562404.rtl.folded #collapse-button div:after {
    2457         -ms-transform: none;
    2458         -webkit-transform: none;
    24592405        transform: none;
    24602406}
    24612407
     
    25652511        }
    25662512
    25672513        .auto-fold #collapse-button div:after {
    2568                 -ms-transform: rotate(180deg);
    2569                 -webkit-transform: rotate(180deg);
    25702514                transform: rotate(180deg);
    25712515        }
    25722516
    25732517        .rtl.auto-fold #collapse-button div:after {
    2574                 -ms-transform: none;
    2575                 -webkit-transform: none;
    25762518                transform: none;
    25772519        }
    25782520
     
    26142556        min-width: 0.7em;
    26152557        padding: 0 6px;
    26162558        display: inline-block;
    2617         -webkit-border-radius: 5px;
    26182559        border-radius: 5px;
    26192560        background-color: #bbb;
    26202561        color: #fff;
     
    26852626
    26862627html.wp-toolbar {
    26872628        padding-top: 32px;
    2688         -webkit-box-sizing: border-box;
    2689         -moz-box-sizing: border-box;
    26902629        box-sizing: border-box;
    26912630}
    26922631
     
    27662705}
    27672706
    27682707.postbox-container .meta-box-sortables {
    2769         -moz-box-sizing: border-box;
    2770         -webkit-box-sizing: border-box;
    2771         -ms-box-sizing: border-box;
    27722708        box-sizing: border-box;
    27732709}
    27742710
     
    29932929.postbox h3,
    29942930.stuffbox h3 {
    29952931        margin-top: 1px;
    2996         -webkit-user-select: none;
    2997         -moz-user-select: none;
    29982932        user-select: none;
    29992933}
    30002934
     
    30262960
    30272961.postbox.closed h3 {
    30282962        border: none;
    3029         -webkit-box-shadow: none;
    30302963        box-shadow: none;
    30312964}
    30322965
     
    30352968}
    30362969
    30372970.postbox table.widefat {
    3038         -webkit-box-shadow: none;
    30392971        box-shadow: none;
    30402972}
    30412973
     
    31083040        margin: 16px 0;
    31093041        padding: 23px 10px 0;
    31103042        border: 1px solid #e5e5e5;
    3111         -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    3112         box-shadow:         0 1px 1px rgba(0,0,0,0.04);
     3043        box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    31133044        background: #fff;
    31143045        font-size: 13px;
    31153046        line-height: 2.1em;
     
    31803111        position: absolute;
    31813112        left: -18px;
    31823113        margin-top: -2px;
    3183         -webkit-transition: all .1s ease-in-out;
    3184         -moz-transition:    all .1s ease-in-out;
    3185         transition:         all .1s ease-in-out;
     3114        transition: all .1s ease-in-out;
    31863115}
    31873116
    31883117.wp-core-ui .welcome-panel .button.button-hero {
     
    34963425#dashboard_quick_press input,
    34973426#dashboard_quick_press textarea {
    34983427        box-sizing: border-box;
    3499         -moz-box-sizing:border-box;
    3500         -webkit-box-sizing:border-box;
    35013428        margin: 0;
    35023429}
    35033430
     
    38693796
    38703797/* @todo: pick a consistent list table selector */
    38713798.wp-list-table a {
    3872         -moz-transition:    none;
    3873         -webkit-transition: none;
    3874         transition:         none;
     3799        transition: none;
    38753800}
    38763801
    38773802#the-list tr:last-child td,
    38783803#the-list tr:last-child th {
    38793804        border-bottom: none !important;
    3880         -webkit-box-shadow: none;
    38813805        box-shadow: none;
    38823806}
    38833807
     
    40023926}
    40033927
    40043928tr.locked-info, tr.wp-locked .locked-info {
    4005         -webkit-transition: height 1s, opacity 500ms;
    4006         -moz-transition:    height 1s, opacity 500ms;
    4007         -ms-transition:     height 1s, opacity 500ms;
    4008         -o-transition:      height 1s, opacity 500ms;
    4009         transition:         height 1s, opacity 500ms;
     3929        transition: height 1s, opacity 0.5s;
    40103930}
    40113931
    40123932.fixed .column-comments .sorting-indicator {
     
    46654585        position: relative;
    46664586        min-width: 255px;
    46674587        border: 1px solid #e5e5e5;
    4668         -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    4669         box-shadow:         0 1px 1px rgba(0,0,0,0.04);
     4588        box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    46704589        background: #fff;
    46714590}
    46724591
     
    48434762        border: 1px solid #e5e5e5;
    48444763        border-top: none;
    48454764        background-color: #f7f7f7;
    4846         -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    4847         box-shadow:         0 1px 1px rgba(0,0,0,0.04);
     4765        box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    48484766}
    48494767
    48504768#post-status-info td {
     
    51185036        height: 0.7em;
    51195037        top: 7px;
    51205038        max-width: 70%;
    5121         -moz-box-sizing: border-box;
    5122         -webkit-box-sizing: border-box;
    51235039        box-sizing: border-box;
    51245040        background-color: #fff;
    51255041}
     
    51285044        position: absolute;
    51295045        height: 100%;
    51305046        border-left: 1px solid #aaa;
    5131         -moz-box-sizing: border-box;
    5132         -webkit-box-sizing: border-box;
    51335047        box-sizing: border-box;
    51345048}
    51355049
     
    51645078        width: 100%;
    51655079        top: 50%;
    51665080        margin-left: -90px;
    5167         -webkit-transition: opacity 0.5s;
    5168         -moz-transition:    opacity 0.5s;
    5169         -ms-transition:     opacity 0.5s;
    5170         -o-transition:      opacity 0.5s;
    5171         transition:         opacity 0.5s;
     5081        transition: opacity 0.5s;
    51725082        filter: alpha(opacity=0); /* ie8 and earlier */
    51735083}
    51745084
     
    51885098}
    51895099
    51905100.revisions .diff {
    5191         -webkit-transition: opacity 0.5s;
    5192         -moz-transition:    opacity 0.5s;
    5193         -ms-transition:     opacity 0.5s;
    5194         -o-transition:      opacity 0.5s;
    5195         transition:         opacity 0.5s;
     5101        transition: opacity 0.5s;
    51965102}
    51975103
    51985104.revisions.loading .diff {
     
    54495355        top: -20px;
    54505356        width: 25px;
    54515357        height: 25px;
    5452         -webkit-transform: rotate(45deg);
    5453         -moz-transform:    rotate(45deg);
    5454         -ms-transform:     rotate(45deg);
    5455         -o-transform:      rotate(45deg);
    5456         transform:         rotate(45deg);
     5358        transform: rotate(45deg);
    54575359}
    54585360
    54595361.revisions-tooltip.flipped .revisions-tooltip-arrow > span {
     
    55145416        top: -20px;
    55155417        width: 25px;
    55165418        height: 25px;
    5517         -webkit-transform: rotate(45deg);
    5518         -moz-transform: rotate(45deg);
    5519         -ms-transform: rotate(45deg);
    5520         -o-transform: rotate(45deg);
    55215419        transform: rotate(45deg);
    55225420}
    55235421
     
    55585456.wp-slider .ui-slider-handle.focus {
    55595457        background: #2ea2cc;
    55605458        border: 1px solid #0074a2;
    5561         -webkit-box-shadow: inset 0 1px 0 #78c8e6, 0 1px 0 rgba(0,0,0,.15);
    55625459        box-shadow: inset 0 1px 0 #78c8e6, 0 1px 0 rgba(0,0,0,.15);
    55635460}
    55645461
     
    55715468        content: "\f229";
    55725469        font: normal 18px/1 'dashicons';
    55735470        speak: none;
    5574         -webkit-font-smoothing:antialiased;
     5471        -webkit-font-smoothing: antialiased;
    55755472        -moz-osx-font-smoothing: grayscale;
    55765473}
    55775474
     
    56905587.post-state-format:before,
    56915588.post-format-icon:before {
    56925589        color: #ddd;
    5693         -webkit-transition: all .1s ease-in-out;
    5694         -moz-transition:    all .1s ease-in-out;
    5695         transition:         all .1s ease-in-out;
     5590        transition: all .1s ease-in-out;
    56965591}
    56975592
    56985593a.post-state-format:hover:before,
     
    58185713}
    58195714
    58205715#post-body ul.add-menu-item-tabs li.tabs {
    5821         -webkit-border-top-left-radius: 3px;
    5822         -webkit-border-bottom-left-radius: 3px;
    58235716        border-top-left-radius: 3px;
    58245717        border-bottom-left-radius: 3px;
    58255718}
     
    62166109        margin-bottom: 2px;
    62176110        border-radius: 22px;
    62186111        background: #ddd;
    6219         -webkit-box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1);
    62206112        box-shadow: inset 0px 1px 2px rgba(0,0,0,0.1);
    62216113}
    62226114
     
    62276119        margin-top: -22px;
    62286120        border-radius: 22px;
    62296121        background-color: #0074a2;
    6230         -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
    62316122        box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
    62326123}
    62336124
     
    63826273        border: 1px solid #ddd;
    63836274        line-height: 1.8em;
    63846275        word-spacing: 3px;
    6385         -webkit-border-radius: 6px;
    63866276        border-radius: 6px;
    63876277}
    63886278
     
    68306720
    68316721#replycontent {
    68326722        height: 120px;
    6833         -webkit-box-shadow: none;
    68346723        box-shadow: none;
    68356724}
    68366725
     
    69166805
    69176806#the-comment-list th,
    69186807#the-comment-list td {
    6919         -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    6920         box-shadow:         inset 0 -1px 0 rgba(0, 0, 0, 0.1);
     6808        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    69216809}
    69226810
    69236811#the-comment-list tr:last-child th,
    69246812#the-comment-list tr:last-child td {
    6925     -webkit-box-shadow: none;
    69266813    box-shadow: none;
    69276814}
    69286815
     
    70016888        position: relative;
    70026889        width: 30.6%;
    70036890        border: 1px solid #dedede;
    7004         -webkit-box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
    7005         box-shadow:         0 1px 1px -1px rgba(0,0,0,0.1);
    7006         -webkit-box-sizing: border-box;
    7007         -moz-box-sizing:    border-box;
    7008         box-sizing:         border-box;
     6891        box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
     6892        box-sizing: border-box;
    70096893}
    70106894
    70116895.ie8 .theme-browser .theme {
     
    70276911        font-weight: 600;
    70286912        margin: 0;
    70296913        padding: 15px;
    7030         -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
    7031         box-shadow:         inset 0 1px 0 rgba(0,0,0,0.1);
     6914        box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
    70326915        overflow: hidden;
    70336916        white-space: nowrap;
    70346917        text-overflow: ellipsis;
     
    70406923.theme-browser .theme .theme-actions {
    70416924        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    70426925        opacity: 0;
    7043         -webkit-transition: opacity 0.1s ease-in-out;
    7044         transition:         opacity 0.1s ease-in-out;
     6926        transition: opacity 0.1s ease-in-out;
    70456927        position: absolute;
    70466928        bottom: 0;
    70476929        right: 0;
     
    70756957        display: block;
    70766958        overflow: hidden;
    70776959        position: relative;
    7078         -webkit-transition: opacity 0.2s ease-in-out;
    7079         transition:         opacity 0.2s ease-in-out;
     6960        transition: opacity 0.2s ease-in-out;
    70806961}
    70816962
    70826963.theme-browser .theme .theme-screenshot:after {
     
    70926973        top: 0;
    70936974        width: 100%;
    70946975        -webkit-transform: translateZ( 0 ); /* Prevents rendering bugs in Chrome */
    7095         -webkit-transition: opacity 0.2s ease-in-out;
    7096         transition:         opacity 0.2s ease-in-out;
     6976        transition: opacity 0.2s ease-in-out;
    70976977}
    70986978
    70996979.theme-browser .theme:hover .theme-screenshot {
     
    71217001        padding: 15px 12px;
    71227002        text-align: center;
    71237003        border-radius: 3px;
    7124         -webkit-transition: opacity 0.1s ease-in-out;
    7125         transition:         opacity 0.1s ease-in-out;
     7004        transition: opacity 0.1s ease-in-out;
    71267005}
    71277006.theme-browser .theme:focus {
    71287007        outline: 1px dotted #222;
     
    71917070        color: #fff;
    71927071        padding-right: 110px;
    71937072        font-weight: 300;
    7194         -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.5);
    7195         box-shadow:         inset 0 1px 1px rgba(0,0,0,0.5);
     7073        box-shadow: inset 0 1px 1px rgba(0,0,0,0.5);
    71967074}
    71977075
    71987076.theme-browser .theme.active .theme-name span {
     
    72617139        text-shadow: none;
    72627140        border: 5px dashed #d5d2ca;
    72637141        border: 5px dashed rgba(0, 0, 0, 0.1);
    7264         -webkit-transition: opacity 0.2s ease-in-out;
    7265         transition:         opacity 0.2s ease-in-out;
    7266         -webkit-box-sizing: border-box;
    7267         -moz-box-sizing:    border-box;
    7268         box-sizing:         border-box;
     7142        transition: opacity 0.2s ease-in-out;
     7143        box-sizing: border-box;
    72697144}
    72707145
    72717146.theme-browser .theme.add-new-theme span:after {
     
    74567331        right: 30px;
    74577332        bottom: 3%;
    74587333        background: #fff;
    7459         -webkit-box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1);
    7460         box-shadow:         0 1px 20px 5px rgba(0, 0, 0, 0.1);
     7334        box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1);
    74617335        z-index: 20;
    74627336        box-sizing: border-box;
    74637337}
     
    75557429/* First screenshot, shown big */
    75567430.theme-overlay .screenshot {
    75577431        border: 1px solid #fff;
    7558         -webkit-box-sizing: border-box;
    7559         -moz-box-sizing:    border-box;
    7560         box-sizing:         border-box;
     7432        box-sizing: border-box;
    75617433        overflow: hidden;
    75627434        position: relative;
    7563         -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
    7564         box-shadow:         0 0 0 1px rgba(0,0,0,0.2);
     7435        box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
    75657436}
    75667437
    75677438.theme-overlay .screenshot:after {
     
    76467517        padding: 2px 8px;
    76477518        border-radius: 2px;
    76487519        margin: 0 0 -10px;
    7649         -webkit-user-select: none;
    7650         -moz-user-select:    none;
    7651         -ms-user-select:     none;
    7652         user-select:         none;
     7520        user-select: none;
    76537521}
    76547522
    76557523.theme-overlay .theme-name {
     
    76677535        float: none;
    76687536        display: inline-block;
    76697537        margin-left: 10px;
    7670         -webkit-user-select: none;
    7671         -moz-user-select:    none;
    7672         -ms-user-select:     none;
    7673         user-select:         none;
     7538        user-select: none;
    76747539}
    76757540
    76767541.theme-overlay .theme-author {
     
    82938158.plugin-install #the-list td,
    82948159.upgrade .plugins td,
    82958160.upgrade .plugins th {
    8296         -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
    8297         box-shadow:         inset 0 -1px 0 rgba(0,0,0,0.1);
     8161        box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
    82988162}
    82998163
    83008164.plugins tr.active.plugin-update-tr + tr.inactive th,
     
    83028166.plugins tr.active + tr.inactive th,
    83038167.plugins tr.active + tr.inactive td {
    83048168        border-top: 1px solid rgba(0,0,0,0.03);
    8305 
    8306         -webkit-box-shadow: inset 0px 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1;
    8307         box-shadow:         inset 0px 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1;
     8169        box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1;
    83088170}
    83098171
    83108172.plugins .update td,
     
    83138175.upgrade .plugins tr:last-of-type th,
    83148176.plugins tr.active + tr.inactive.update th,
    83158177.plugins tr.active + tr.inactive.update td {
    8316         -webkit-box-shadow: none;
    83178178        box-shadow: none;
    83188179}
    83198180
     
    83838244.plugins .plugin-update {
    83848245        padding: 0;
    83858246        border: none;
    8386         -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
    8387         box-shadow:         inset 0 -1px 0 rgba(0,0,0,0.1);
     8247        box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
    83888248}
    83898249
    83908250/* update notices for active plugins */
     
    84348294        display: inline-block;
    84358295        width: 24%;
    84368296        padding: 5px 15px 15px;
    8437         -moz-box-sizing: border-box;
    84388297        box-sizing: border-box;
    84398298        margin-bottom: 3px;
    84408299}
     
    85008359        cursor: move;
    85018360        color: #333;
    85028361        background: #e6e6e6;
    8503         -webkit-border-radius: 5px;
    85048362        border-radius: 5px;
    85058363        border: 1px solid #b4b4b4;
    85068364        font-style: normal;
     
    85148372}
    85158373
    85168374.pressthis a:hover:after {
    8517         -webkit-transform: skew(20deg) rotate(9deg);
    8518         -moz-transform: skew(20deg) rotate(9deg);
    85198375        transform: skew(20deg) rotate(9deg);
    8520         -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
    85218376        box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
    85228377}
    85238378
     
    85468401        right: 10px;
    85478402        bottom: 9px;
    85488403        background: transparent;
    8549 
    8550         -webkit-transform: skew(20deg) rotate(6deg);
    8551         -moz-transform: skew(20deg) rotate(6deg);
    85528404        transform: skew(20deg) rotate(6deg);
    8553         -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
    85548405        box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
    85558406}
    85568407
     
    87548605        display: inline-block;
    87558606        width: 150px;
    87568607        text-rendering: optimizeLegibility;
    8757 
    8758         -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    8759         box-shadow:         0 1px 3px rgba(0,0,0,0.2);
     8608        box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    87608609}
    87618610
    87628611
     
    88208669.about-wrap .about-twentyfourteen img {
    88218670        margin: 2em 0 0 0;
    88228671        border: 1px solid #ddd;
    8823         -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    88248672        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    88258673}
    88268674
     
    89748822}
    89758823
    89768824.wp-full-overlay-sidebar {
    8977         -webkit-box-sizing: border-box;
    8978         -moz-box-sizing: border-box;
    89798825        box-sizing: border-box;
    89808826        position: fixed;
    89818827        width: 300px;
     
    90388884        z-index: 10;
    90398885        margin: 0;
    90408886        border-top: none;
    9041         -webkit-box-shadow: none;
    90428887        box-shadow: none;
    90438888}
    90448889
     
    90508895        bottom: 0;
    90518896        border-bottom: none;
    90528897        border-top: none;
    9053         -webkit-box-shadow: none;
    90548898        box-shadow: none;
    90558899}
    90568900
     
    91228966
    91238967.wp-full-overlay.collapsed .collapse-sidebar-arrow:before,
    91248968.rtl .wp-full-overlay .collapse-sidebar-arrow:before {
    9125         -ms-transform: rotate(180deg);
    9126         -webkit-transform: rotate(180deg);
    91278969        transform: rotate(180deg);
    91288970}
    91298971
    91308972.rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before {
    9131         -ms-transform: none;
    9132         -webkit-transform: none;
    91338973        transform: none;
    91348974}
    91358975
     
    91538993.wp-full-overlay-sidebar,
    91548994.wp-full-overlay .collapse-sidebar,
    91558995.wp-full-overlay-main {
    9156         -webkit-transition-property: left, right, top, bottom, width, margin;
    9157         -moz-transition-property:    left, right, top, bottom, width, margin;
    9158         -ms-transition-property:     left, right, top, bottom, width, margin;
    9159         -o-transition-property:      left, right, top, bottom, width, margin;
    9160         transition-property:         left, right, top, bottom, width, margin;
    9161         -webkit-transition-duration: 0.2s;
    9162         -moz-transition-duration:    0.2s;
    9163         -ms-transition-duration:     0.2s;
    9164         -o-transition-duration:      0.2s;
    9165         transition-duration:         0.2s;
     8996        transition-property: left, right, top, bottom, width, margin;
     8997        transition-duration: 0.2s;
    91668998}
    91678999
    91689000/*------------------------------------------------------------------------------
     
    92099041        height: 100%;
    92109042        width: 100%;
    92119043        z-index: 20;
    9212 
    9213         -webkit-transition: opacity 0.3s;
    9214         -moz-transition:    opacity 0.3s;
    9215         -ms-transition:     opacity 0.3s;
    9216         -o-transition:      opacity 0.3s;
    9217         transition:         opacity 0.3s;
     9044        transition: opacity 0.3s;
    92189045}
    92199046
    92209047#customize-container .collapse-sidebar {
     
    95499376        border-top: 1px solid #f9f9f9;
    95509377        border-bottom: 1px solid #dfdfdf;
    95519378        background-color: #f9f9f9;
    9552         -webkit-transition: none;
    9553         -moz-transition: none;
    95549379        transition: none;
    95559380}
    95569381
     
    95699394        font-weight: normal;
    95709395        padding-left: 6px;
    95719396        padding-right: 6px;
    9572         -webkit-border-top-left-radius: 3px;
    9573         -webkit-border-top-right-radius: 3px;
    95749397        border-top-left-radius: 3px;
    95759398        border-top-right-radius: 3px;
    95769399        border: 1px solid #dfdfdf;
     
    98049627}
    98059628
    98069629#activity-widget #the-comment-list .comment {
    9807         -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06);
    9808         box-shadow:         inset 0 1px 0 rgba(0, 0, 0, 0.06);
     9630        box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06);
    98099631}
    98109632
    98119633#activity-widget .comments #the-comment-list .alt {
     
    99349756        background-image: none;
    99359757        border-color: #edc048;
    99369758        color: #fff;
    9937         -webkit-box-shadow: none;
    99389759        box-shadow: none;
    99399760}
    99409761
     
    99479768        border-bottom-color: #f6e2ac;
    99489769        background: transparent none;
    99499770        color: #fff;
    9950         -webkit-box-shadow: none;
    99519771        box-shadow: none;
    99529772}
    99539773
     
    99959815        font-weight: normal;
    99969816        overflow: hidden;
    99979817        background: #fff;
    9998 
    9999         -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);
    10000         box-shadow:         0 1px 3px rgba(0,0,0,0.13);
     9818        box-shadow: 0 1px 3px rgba(0,0,0,0.13);
    100019819}
    100029820
    100039821.login form .forgetmenot {
     
    1078910607        z-index: 10; /* Keep .item-title's shadow from appearing on top of .menu-item-settings */
    1079010608        border: 1px solid #e5e5e5;
    1079110609        border-top: none;
    10792         -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    10793         box-shadow:         0 1px 1px rgba(0,0,0,0.04);
     10610        box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    1079410611}
    1079510612
    1079610613.menu-item-settings .field-move a {
     
    1094610763        font-weight: normal;
    1094710764        font-style: normal;
    1094810765        vertical-align: top;
    10949         -moz-transition: color .1s ease-in 0;
    10950         -webkit-transition: color .1s ease-in 0;
     10766        transition: color .1s ease-in 0;
    1095110767        text-align: center;
    1095210768        color: #0074a2;
    1095310769}
     
    1096110777}
    1096210778
    1096310779.rtl .star-rating .star-half {
    10964         -webkit-transform: rotateY(180deg);
    10965         -ms-transform:     rotateY(180deg);
    10966         transform:         rotateY(180deg);
     10780        transform: rotateY(180deg);
    1096710781}
    1096810782
    1096910783.star-rating .star-empty:before {
     
    1100310817        padding-bottom: 0;
    1100410818        margin-bottom: 0;
    1100510819        margin-top: 10px;
    11006         -webkit-border-top-left-radius: 3px;
    11007         -webkit-border-bottom-left-radius: 3px;
    1100810820        border-top-left-radius: 3px;
    1100910821        border-bottom-left-radius: 3px;
    1101010822}
     
    1103710849
    1103810850#plugin-information .fyi h2.mainheader {
    1103910851        padding: 5px;
    11040         -webkit-border-top-left-radius: 3px;
    1104110852        border-top-left-radius: 3px;
    1104210853        background-color: #cee1ef;
    1104310854}
     
    1104610857        padding: 10px 5px 10px 7px;
    1104710858        margin: 0;
    1104810859        list-style: none;
    11049         -webkit-border-bottom-left-radius: 3px;
    1105010860        border-bottom-left-radius: 3px;
    1105110861        background-color: #eaf3fa;
    1105210862}
     
    1112910939.press-this #header-logo {
    1113010940        float: left;
    1113110941        margin: 7px 7px 0;
    11132         -webkit-user-select: none;
    11133         -moz-user-select: none;
    1113410942        user-select: none;
    1113510943}
    1113610944
     
    1116710975.press-this #title {
    1116810976        margin-left: 0;
    1116910977        margin-right: 0;
    11170         -moz-box-sizing: border-box;
    11171         -webkit-box-sizing: border-box;
    11172         -ms-box-sizing: border-box;
    1117310978        box-sizing: border-box;
    1117410979}
    1117510980
     
    1161311418        margin: 0 auto 10px;
    1161411419        position: relative;
    1161511420        box-sizing: border-box;
    11616         -moz-box-sizing: border-box;
    11617         -webkit-box-sizing: border-box;
    1161811421}
    1161911422
    1162011423.widget-top {
     
    1163511438        overflow: hidden;
    1163611439        white-space: nowrap;
    1163711440        text-overflow: ellipsis;
    11638         -webkit-user-select: none;
    11639         -moz-user-select: none;
    1164011441        user-select: none;
    1164111442}
    1164211443
     
    1167111472        margin: 0 auto 10px;
    1167211473        height: 45px;
    1167311474        width: 100%;
    11674         -webkit-box-sizing: border-box;
    11675         -moz-box-sizing: border-box;
    1167611475        box-sizing: border-box;
    1167711476}
    1167811477
     
    1168911488/* Widget Sidebars */
    1169011489.sidebar-name {
    1169111490        position: relative;
    11692         -webkit-box-sizing: border-box;
    11693         -moz-box-sizing: border-box;
    1169411491        box-sizing: border-box;
    1169511492}
    1169611493
     
    1176611563
    1176711564#widgets-left .widgets-holder-wrap {
    1176811565        border: none;
    11769         -webkit-box-shadow: none;
    1177011566        box-shadow: none;
    1177111567}
    1177211568
     
    1192611722
    1192711723.widgets-holder-wrap .sidebar-name,
    1192811724.widgets-holder-wrap .sidebar-description {
    11929         -webkit-user-select: none;
    11930         -moz-user-select: none;
    1193111725        user-select: none;
    1193211726}
    1193311727
     
    1220111995        position: relative;
    1220211996        border-left: 1px solid #dfdfdf;
    1220311997        border-right: 1px solid #dfdfdf;
    12204 
    12205         -webkit-user-select: none;
    12206         -moz-user-select: none;
    1220711998        user-select: none;
    1220811999}
    1220912000
     
    1276412555                display: block;
    1276512556                top: 0;
    1276612557                left: -1px;
    12767                 -webkit-box-shadow: none;
    1276812558                box-shadow: none;
    1276912559        }
    1277012560
     
    1280712597                z-index: 99999;
    1280812598                border: none;
    1280912599                box-sizing: border-box;
    12810                 -moz-box-sizing: border-box;
    1281112600        }
    1281212601
    1281312602        .wrap .icon32 + h2 {
     
    1323313022                display: block;
    1323413023                width: 100%;
    1323513024                max-width: none;
    13236                 -moz-box-sizing: border-box;
    1323713025                box-sizing: border-box;
    1323813026        }
    1323913027
     
    1330713095
    1330813096        /* Form Tables */
    1330913097        .form-table {
    13310                 -moz-box-sizing: border-box;
    1331113098                box-sizing: border-box;
    1331213099        }
    1331313100
     
    1334513132                display: block;
    1334613133                max-width: none;
    1334713134                box-sizing: border-box;
    13348                 -moz-box-sizing: border-box;
    1334913135        }
    1335013136
    1335113137        input[type=text].small-text,
     
    1336413150        #pass-strength-result {
    1336513151                width: 100%;
    1336613152                box-sizing: border-box;
    13367                 -moz-box-sizing: border-box;
    1336813153                padding: 8px;
    1336913154        }
    1337013155
     
    1363513420        .wp-list-table.plugins .theme-title,
    1363613421        .wp-list-table.plugins tbody th {
    1363713422                box-shadow: none;
    13638                 -webkit-box-shadow: none;
    1363913423        }
    1364013424
    1364113425        .plugins tbody {
     
    1364313427        }
    1364413428
    1364513429        .plugins tr.active + tr.inactive td.column-description {
    13646                 -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    13647                 -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    13648                 -ms-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    13649                 -o-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    1365013430                box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    1365113431        }
    1365213432
     
    1373613516        }
    1373713517
    1373813518        table.plugin-install #the-list td {
    13739                 -webkit-box-shadow: none;
    1374013519                box-shadow: none;
    1374113520        }
    1374213521
    1374313522        table.plugin-install #the-list tr {
    1374413523                display: block;
    13745                 -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
    1374613524                box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
    1374713525        }
    1374813526
     
    1395113729                text-align: center;
    1395213730                text-decoration: none;
    1395313731                box-sizing: border-box;
    13954                 -moz-box-sizing: border-box;
    1395513732        }
    1395613733}
    1395713734
  • src/wp-includes/css/admin-bar.css

     
    99        letter-spacing: normal;
    1010        font: normal 13px/32px "Open Sans", sans-serif;
    1111        border-radius: 0;
    12         -webkit-box-sizing: content-box;
    13         -moz-box-sizing:    content-box;
    14         box-sizing:         content-box;
    15         -webkit-transition: none;
    16         -moz-transition:    none;
    17         -o-transition:      none;
    18         transition:         none;
     12        box-sizing: content-box;
     13        transition: none;
    1914        -webkit-font-smoothing: subpixel-antialiased; /* Prevent Safari from switching to standard antialiasing on hover */
    2015}
    2116
     
    10196}
    10297
    10398/* Prevent a Chrome bug that inadvertantly activates
    104    :hover states on an element that touches the extreme
     99   :hover states on an element that touches the extreme
    105100   top left corner of the viewport. See #18868 */
    106101#wpadminbar .quicklinks {
    107102        border-left: 1px solid transparent;
     
    140135#wpadminbar .shortlink-input {
    141136        margin: 0;
    142137        padding: 0;
    143         -webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    144138        box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    145139        background: #333;
    146140        display: none;
     
    250244#wpadminbar .ab-item:before,
    251245#wpadminbar #adminbarsearch:before {
    252246        position: relative;
    253         -moz-transition: all .1s ease-in-out;
    254         -webkit-transition: all .1s ease-in-out;
    255247        transition: all .1s ease-in-out;
    256248}
    257249
     
    326318        position: relative;
    327319        right: auto;
    328320        margin: 0;
    329         -webkit-box-shadow: none;
    330321        box-shadow: none;
    331322}
    332323
     
    347338        padding: 2px 5px;
    348339        font-size: 10px;
    349340        font-weight: bold;
    350         -webkit-border-radius: 10px;
    351341        border-radius: 10px;
    352342}
    353343
     
    362352
    363353#wpadminbar ul li:last-child,
    364354#wpadminbar ul li:last-child .ab-item {
    365         -webkit-box-shadow: none;
    366355        box-shadow: none;
    367356}
    368357
     
    587576        border: none;
    588577        outline: none;
    589578        cursor: pointer;
    590 
    591         -webkit-box-shadow: none;
    592579        box-shadow: none;
    593 
    594         -moz-box-sizing: border-box;
    595         -webkit-box-sizing: border-box;
    596         -ms-box-sizing: border-box;
    597580        box-sizing: border-box;
    598 
    599         -webkit-transition-duration: 400ms;
    600         -webkit-transition-property: width, background;
    601         -webkit-transition-timing-function: ease;
    602         -moz-transition-duration: 400ms;
    603         -moz-transition-property: width, background;
    604         -moz-transition-timing-function: ease;
    605         -o-transition-duration: 400ms;
    606         -o-transition-property: width, background;
    607         -o-transition-timing-function: ease;
     581        transition-duration: 400ms;
     582        transition-property: width, background;
     583        transition-timing-function: ease;
    608584}
    609585
    610586#wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus {
     
    689665        z-index: 100000;
    690666        line-height: normal;
    691667        text-decoration: none;
    692         -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
    693668        box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
    694669}
    695670
     
    867842                color: #999;
    868843                position: relative;
    869844        }
    870 
     845
    871846        #wpadminbar > #wp-toolbar > #wp-admin-bar-root-default .ab-icon,
    872847        #wpadminbar .ab-icon,
    873848        #wpadminbar .ab-item:before {
    874849                padding: 0;
    875850                margin-right: 0;
    876851        }
    877 
     852
    878853        #wpadminbar #wp-admin-bar-edit > .ab-item:before,
    879854        #wpadminbar #wp-admin-bar-my-sites > .ab-item:before,
    880855        #wpadminbar #wp-admin-bar-site-name > .ab-item:before,
     
    1005980        #wpadminbar li:hover ul li:hover ul li {
    1006981                display: list-item;
    1007982        }
    1008 
     983
    1009984        /* Override default min-width so dropdown lists aren't stretched
    1010985                to 100% viewport width at responsive sizes. */
    1011986        #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper {
    1012                 min-width: intrinsic;
    1013                 min-width: -webkit-fit-content;
    1014                 min-width: -moz-fit-content;
    1015987                min-width: fit-content;
    1016988        }
    1017989
     
    10401012        .network-admin #wpadminbar ul#wp-admin-bar-top-secondary > li#wp-admin-bar-my-account {
    10411013                margin-right: 0;
    10421014        }
    1043 
     1015
    10441016        /* Realign arrows on taller responsive submenus */
    1045 
     1017
    10461018        #wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before {
    10471019                top: 10px;
    10481020                left: 0;
     
    10541026        #wpadminbar {
    10551027                position: absolute;
    10561028        }
    1057 
     1029
    10581030        #wp-responsive-overlay {
    10591031                position: fixed;
    10601032                top: 0;
     
    10771049        #wpadminbar #wp-admin-bar-wp-logo.menupop .ab-sub-wrapper {
    10781050                margin-left: 0;
    10791051        }
    1080 
     1052
    10811053        #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper {
    10821054                margin: 0;
    10831055                width: 100%;
     
    10851057                left: auto;
    10861058                position: relative;
    10871059        }
    1088 
     1060
    10891061        #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper .ab-item {
    10901062                font-size: 16px;
    10911063                padding: 6px 15px 19px 30px;
    10921064        }
    1093 
     1065
    10941066        #wpadminbar li:hover ul li ul li {
    10951067                display: list-item;
    10961068        }
     
    10991071        #wpadminbar li#wp-admin-bar-updates {
    11001072                display: none;
    11011073        }
    1102 
     1074
    11031075        /* Make submenus full-width at this size */
    1104 
     1076
    11051077        #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper {
    11061078                position: static;
    1107                 -webkit-box-shadow: none;
    11081079                box-shadow: none;
    11091080        }
    11101081}
  • src/wp-includes/css/buttons.css

     
    4848        cursor: pointer;
    4949        border-width: 1px;
    5050        border-style: solid;
    51         -webkit-border-radius: 3px;
    5251        -webkit-appearance: none;
    5352        border-radius: 3px;
    5453        white-space: nowrap;
    55         -webkit-box-sizing: border-box;
    56         -moz-box-sizing:    border-box;
    57         box-sizing:         border-box;
     54        box-sizing: border-box;
    5855}
    5956
    6057/* Remove the dotted border on :focus and the extra padding in Firefox */
     
    107104.wp-core-ui input[type="reset"]:focus {
    108105        background: none;
    109106        border: none;
    110         -moz-box-shadow: none;
    111         -webkit-box-shadow: none;
    112107        box-shadow: none;
    113108        padding: 0 2px 1px;
    114109        width: auto;
     
    123118        color: #555;
    124119        border-color: #cccccc;
    125120        background: #f7f7f7;
    126 
    127         -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08);
    128121        box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08);
    129122        vertical-align: top;
    130123}
     
    147140.wp-core-ui .button.focus,
    148141.wp-core-ui .button:focus,
    149142.wp-core-ui .button-secondary:focus {
    150         -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,.2);
    151143        box-shadow: 1px 1px 1px rgba(0,0,0,.2);
    152144}
    153145
     
    159151        background: #eee;
    160152        border-color: #999;
    161153        color: #333;
    162         -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    163154        box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    164155}
    165156
     
    172163.wp-core-ui .button-disabled {
    173164        color: #aaa !important;
    174165        border-color: #ddd !important;
    175         -webkit-box-shadow: none !important;
    176         box-shadow:         none !important;
     166        box-shadow: none !important;
    177167        text-shadow: 0 1px 0 #fff !important;
    178168        cursor: default;
    179169}
     
    184174
    185175.wp-core-ui .button-primary {
    186176        background: #2ea2cc;
    187         border-color: #0074a2;
    188         -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.5), 0 1px 0 rgba(0,0,0,.15);
     177        border-color: #0074a2;
    189178        box-shadow: inset 0 1px 0 rgba(120,200,230,0.5), 0 1px 0 rgba(0,0,0,.15);
    190179        color: #fff;
    191180        text-decoration: none;
     
    197186.wp-core-ui .button-primary:focus {
    198187        background: #1e8cbe;
    199188        border-color: #0074a2;
    200         -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6);
    201189        box-shadow: inset 0 1px 0 rgba(120,200,230,0.6);
    202190        color: #fff;
    203191}
     
    205193.wp-core-ui .button-primary.focus,
    206194.wp-core-ui .button-primary:focus {
    207195        border-color: #0e3950;
    208         -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 1px 1px 2px rgba(0,0,0,0.4);
    209196        box-shadow: inset 0 1px 0 rgba(120,200,230,0.6), 1px 1px 2px rgba(0,0,0,0.4);
    210197}
    211198
     
    216203        background: #1b7aa6;
    217204        border-color: #005684;
    218205        color: rgba(255,255,255,0.95);
    219         -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
    220206        box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
    221207        vertical-align: top;
    222208}
     
    228214        color: #94cde7 !important;
    229215        background: #298cba !important;
    230216        border-color: #1b607f !important;
    231         -webkit-box-shadow: none !important;
    232         box-shadow:         none !important;
     217        box-shadow: none !important;
    233218        text-shadow: 0 -1px 0 rgba(0,0,0,0.1) !important;
    234219        cursor: default;
    235220}
     
    288273                height: auto;
    289274                margin-bottom: 4px;
    290275        }
    291 
     276
    292277        #media-upload.wp-core-ui .button {
    293278                padding: 0 10px 1px;
    294279                height: 24px;
     
    301286                position: relative;
    302287                margin: 0 14px 0 10px; /* 14px right margin to match all other buttons */
    303288        }
    304 
     289
    305290        /* Reset responsive styles in Press This, Customizer */
    306291
    307292        .wp-core-ui.wp-customizer .button,
     
    316301                margin: 0;
    317302                vertical-align: inherit;
    318303        }
    319 
     304
    320305        /* Reset responsive styles on Log in button on iframed login form */
    321 
     306
    322307        .interim-login .button.button-large {
    323308                height: 30px;
    324309                line-height: 28px;
    325310                padding: 0 12px 2px;
    326311        }
    327 
     312
    328313}
  • src/wp-includes/css/editor.css

     
    3939.mce-toolbar .mce-btn-group .mce-btn {
    4040        border: 1px solid transparent;
    4141        margin: 0 1px;
    42         -webkit-border-radius: 2px;
    4342        border-radius: 2px;
    4443        filter: none;
    4544}
     
    5049        box-shadow: 0 0 transparent;
    5150        border-color: #bbb;
    5251        background: #eee;
    53         background-image: -webkit-gradient(linear, left bottom, left top, from(#e5e5e5), to(#fff));
    54         background-image: -webkit-linear-gradient(bottom, #e5e5e5, #fff);
    5552        background-image: linear-gradient(to top, #e5e5e5, #fff);
    5653}
    5754
     
    8380        direction: ltr;
    8481        background: #fff;
    8582        border: 1px solid #ddd;
    86         -webkit-box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, .2);
    87         box-shadow:         inset 0 1px 1px -1px rgba(0, 0, 0, .2);
     83        box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, .2);
    8884}
    8985
    9086.mce-toolbar .mce-btn-group .mce-btn.mce-listbox:hover {
     
    295291        outline: none;
    296292        display: block;
    297293        resize: vertical;
    298         -moz-box-sizing: border-box;
    299         -webkit-box-sizing: border-box;
    300294        box-sizing: border-box;
    301295}
    302296
     
    307301.wp-editor-container textarea.wp-editor-area {
    308302        width: 100%;
    309303        margin: 0;
    310         -webkit-box-shadow: none;
    311304        box-shadow: none;
    312305}
    313306
     
    419412.quicktags-toolbar {
    420413        border-bottom-style: solid;
    421414        border-bottom-width: 1px;
    422         -webkit-border-top-right-radius: 3px;
    423         -webkit-border-top-left-radius: 3px;
    424415        border-top-right-radius: 3px;
    425416        border-top-left-radius: 3px;
    426417        padding: 2px 8px 0;
     
    440431        font: 12px/18px "Open Sans", sans-serif;
    441432        color: #464646;
    442433        border: 1px solid #c3c3c3;
    443         -webkit-border-radius: 3px;
    444434        border-radius: 3px;
    445435        background: #eee;
    446         background-image: -webkit-gradient(linear, left bottom, left top, from(#e3e3e3), to(#fff));
    447         background-image: -webkit-linear-gradient(bottom, #e3e3e3, #fff);
    448         background-image:    -moz-linear-gradient(bottom, #e3e3e3, #fff);
    449         background-image:      -o-linear-gradient(bottom, #e3e3e3, #fff);
    450436        background-image: linear-gradient(to top, #e3e3e3, #fff);
    451437}
    452438
     
    498484        padding: 2px;
    499485        border-width: 1px;
    500486        border-style: solid;
    501         -webkit-border-radius: 3px;
    502487        border-radius: 3px;
    503488}
    504489
     
    528513}
    529514
    530515#wp-link input[type="text"] {
    531         -webkit-box-sizing: border-box;
     516        box-sizing: border-box;
    532517}
    533518
    534519#wp-link input[type="text"],
    535520#wp-link textarea {
    536521        border-width: 1px;
    537522        border-style: solid;
    538         -webkit-border-radius: 4px;
    539523        border-radius: 4px;
    540524        font-size: 12px;
    541525        margin: 1px;
     
    954938        padding: 0;
    955939        z-index: 300002;
    956940        border: 0;
    957         -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.7);
    958         box-shadow:         0 5px 15px rgba(0,0,0,0.7);
     941        box-shadow: 0 5px 15px rgba(0,0,0,0.7);
    959942        background-color: #f5f5f5;
    960943}
    961944
     
    11601143        bottom: 30px;
    11611144        top: 60px;
    11621145        z-index: 150010;
    1163 
     1146
    11641147}
    11651148
    11661149.wp-fullscreen-wrap .wp-editor-container,
     
    11771160
    11781161#wp-fullscreen-status {
    11791162        margin: auto;
    1180         -webkit-transition: opacity 0.4s;
    11811163        transition: opacity 0.4s;
    11821164}
    11831165
    11841166.wp-fullscreen-active .wp-fullscreen-title,
    11851167.wp-fullscreen-active .wp-fullscreen-title:focus,
    11861168.wp-fullscreen-active .wp-editor-container {
    1187         -webkit-border-radius: 0;
    11881169        border-radius: 0;
    11891170        border: 1px dashed transparent;
    11901171        background: transparent;
    1191         -webkit-box-shadow: none;
    11921172        box-shadow: none;
    1193         -webkit-transition: border-color 0.4s;
    11941173        transition: border-color 0.4s;
    11951174}
    11961175
     
    12261205        top: 0;
    12271206        width: 100%;
    12281207        z-index: 150050;
    1229         -webkit-transition: opacity 0.4s;
    12301208        transition: opacity 0.4s;
    12311209}
    12321210
     
    12851263        text-shadow: 0 1px 0 #fff;
    12861264        background-color: #f4f4f4;
    12871265        background: #f4f4f4;
    1288         background-image: -webkit-gradient(linear, left bottom, left top, from(#e4e4e4), to(#f9f9f9));
    1289         background-image: -webkit-linear-gradient(bottom, #e4e4e4, #f9f9f9);
    1290         background-image:    -moz-linear-gradient(bottom, #e4e4e4, #f9f9f9);
    1291         background-image:      -o-linear-gradient(bottom, #e4e4e4, #f9f9f9);
    12921266        background-image: linear-gradient(to top, #e4e4e4, #f9f9f9);
    12931267}
    12941268
     
    12981272        color: #333;
    12991273        border-color: #999;
    13001274        background: #eee;
    1301         background-image: -webkit-gradient(linear, left top, left bottom, from(#e4e4e4), to(#f9f9f9));
    1302         background-image: -webkit-linear-gradient(top, #e4e4e4, #f9f9f9);
    1303         background-image:    -moz-linear-gradient(top, #e4e4e4, #f9f9f9);
    1304         background-image:      -o-linear-gradient(top, #e4e4e4, #f9f9f9);
    13051275        background-image: linear-gradient(to bottom, #e4e4e4, #f9f9f9);
    13061276}
    13071277
    13081278#wp-fullscreen-modes a:first-child {
    13091279        border-width: 1px;
    1310         -webkit-border-top-left-radius: 3px;
    1311         -webkit-border-bottom-left-radius: 3px;
    13121280        border-top-left-radius: 3px;
    13131281        border-bottom-left-radius: 3px;
    13141282}
    13151283
    13161284#wp-fullscreen-modes a:last-child {
    1317         -webkit-border-top-right-radius: 3px;
    1318         -webkit-border-bottom-right-radius: 3px;
    13191285        border-top-right-radius: 3px;
    13201286        border-bottom-right-radius: 3px;
    13211287}
     
    13411307    line-height: 20px;
    13421308    overflow: visible;
    13431309    text-align: center;
    1344     -moz-box-sizing: border-box;
    13451310    box-sizing: border-box;
    13461311}
    13471312
     
    13941359
    13951360.wp-fullscreen-active #wp-fullscreen-status,
    13961361.wp-fullscreen-active #fullscreen-topbar {
    1397         -webkit-transition-duration: 0.8s;
    13981362        transition-duration: 0.8s;
    13991363        opacity: 0;
    14001364        filter: alpha(opacity=0);
     
    14021366
    14031367.wp-fullscreen-active.wp-dfw-show-ui #wp-fullscreen-status,
    14041368.wp-fullscreen-active.wp-dfw-show-ui #fullscreen-topbar {
    1405         -webkit-transition-duration: 0.4s;
    14061369        transition-duration: 0.4s;
    14071370        opacity: 1;
    14081371        filter: alpha(opacity=100);
     
    14101373
    14111374.wp-fullscreen-active .wp-fullscreen-title,
    14121375.wp-fullscreen-active .wp-editor-container {
    1413         -webkit-transition-duration: 0.8s;
    14141376        transition-duration: 0.8s;
    14151377        border-color: transparent;
    14161378}
    14171379
    14181380.wp-fullscreen-active.wp-dfw-show-ui .wp-fullscreen-title,
    14191381.wp-fullscreen-active.wp-dfw-show-ui .wp-editor-container {
    1420         -webkit-transition-duration: 0.4s;
    14211382        transition-duration: 0.4s;
    14221383        border-color: #ccc;
    14231384}
     
    14271388.fade-400,
    14281389.fade-300 {
    14291390        opacity: 0;
    1430         -webkit-transition-property: opacity;
    14311391        transition-property: opacity;
    14321392}
    14331393
    14341394.fade-1000 {
    1435         -webkit-transition-duration: 1s;
    14361395        transition-duration: 1s;
    14371396}
    14381397
    14391398.fade-600 {
    1440         -webkit-transition-duration: 0.6s;
    14411399        transition-duration: 0.6s;
    14421400}
    14431401
    14441402.fade-400 {
    1445         -webkit-transition-duration: 0.4s;
    14461403        transition-duration: 0.4s;
    14471404}
    14481405
    14491406.fade-300 {
    1450         -webkit-transition-duration: 0.3s;
    14511407        transition-duration: 0.3s;
    14521408}
    14531409
  • src/wp-includes/css/jquery-ui-dialog.css

     
    254254        padding: 0;
    255255        z-index: 300002;
    256256        border: 0;
    257         -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.7);
    258         box-shadow:         0 5px 15px rgba(0,0,0,0.7);
     257        box-shadow: 0 5px 15px rgba(0,0,0,0.7);
    259258        background-color: #f5f5f5;
    260259}
    261260
  • src/wp-includes/css/media-views.css

     
    22 * Base Styles
    33 */
    44.media-modal * {
    5         -webkit-box-sizing: content-box;
    6         -moz-box-sizing:    content-box;
    7         box-sizing:         content-box;
     5        box-sizing: content-box;
    86}
    97
    108.media-modal,
     
    5755.media-frame select {
    5856        font-family: "Open Sans", sans-serif;
    5957        font-size: 12px;
    60         -moz-box-sizing: border-box;
    61         -webkit-box-sizing: border-box;
    62         -ms-box-sizing: border-box; /* ie8 only */
    6358        box-sizing: border-box;
    6459        border-width: 1px;
    6560        border-style: solid;
     
    9388/* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */
    9489.ui-sortable,
    9590.ui-draggable {
    96         -ms-touch-action: none;
    97         touch-action:     none;
     91        touch-action: none;
    9892}
    9993
    10094.meta-box-sortables.ui-sortable {
    101         -ms-touch-action: auto;
    102         touch-action:     auto;
     95        touch-action: auto;
    10396}
    10497
    10598.meta-box-sortables.ui-sortable .hndle {
    106         -ms-touch-action: none;
    107         touch-action:     none;
     99        touch-action: none;
    108100}
    109101
    110102/**
     
    404396        border-right-width: 1px;
    405397        border-right-style: solid;
    406398        border-right-color: #ccc;
    407         -webkit-user-select: none;
    408         -moz-user-select: none;
    409         -ms-user-select: none;
    410399        user-select: none;
    411400}
    412401
     
    451440        padding: 0 6px;
    452441        margin: 0;
    453442        clear: both;
    454         -webkit-user-select: none;
    455         -moz-user-select: none;
    456         -ms-user-select: none;
    457443        user-select: none;
    458444}
    459445
    460446.media-router a {
    461         -moz-transition:    none;
    462         -webkit-transition: none;
    463         transition:         none;
     447        transition: none;
    464448}
    465449
    466450.media-router > a {
     
    660644.attachment {
    661645        position: relative;
    662646        float: left;
    663 
    664647        padding: 0;
    665648        margin: 0 10px 20px;
    666649        color: #464646;
    667650        list-style: none;
    668651        text-align: center;
    669 
    670         -webkit-user-select: none;
    671         -moz-user-select:    none;
    672         -ms-user-select:     none;
    673         -o-user-select:      none;
    674         user-select:         none;
     652        user-select: none;
    675653}
    676654
    677655.selected.attachment {
     
    733711        left: 0;
    734712        width: 100%;
    735713        height: 100%;
    736         -webkit-transform: translate( 50%, 50% );
    737         -moz-transform:    translate( 50%, 50% );
    738         -ms-transform:     translate( 50%, 50% );
    739         -o-transform:      translate( 50%, 50% );
    740         transform:         translate( 50%, 50% );
     714        transform: translate( 50%, 50% );
    741715}
    742716
    743717.attachment .thumbnail .centered img {
    744         -webkit-transform: translate( -50%, -50% );
    745         -moz-transform:    translate( -50%, -50% );
    746         -ms-transform:     translate( -50%, -50% );
    747         -o-transform:      translate( -50%, -50% );
    748         transform:         translate( -50%, -50% );
     718        transform: translate( -50%, -50% );
    749719}
    750720
    751721.attachment .filename {
     
    919889        width: 0;
    920890        background: #1e8cbe;
    921891        border-radius: 10px;
    922         -webkit-transition: width 300ms;
    923         -moz-transition:    width 300ms;
    924         -ms-transition:     width 300ms;
    925         -o-transition:      width 300ms;
    926892        transition:         width 300ms;
    927893}
    928894
     
    1011977        font-weight: bold;
    1012978        color: #fff;
    1013979        background: #e00;
    1014         background-image: -webkit-gradient(linear, left top, left bottom, from(#e00), to(#a00));
    1015         background-image: -webkit-linear-gradient(top, #e00, #a00);
    1016         background-image:    -moz-linear-gradient(top, #e00, #a00);
    1017         background-image:      -o-linear-gradient(top, #e00, #a00);
    1018         background-image:   linear-gradient(to bottom, #e00, #a00);
     980        background-image: linear-gradient(to bottom, #e00, #a00);
    1019981        border-radius: 3px;
    1020982}
    1021983
     
    1033995        right: 0;
    1034996        bottom: 0;
    1035997        background: rgba( 0, 86, 132, 0.9 );
    1036 
    1037998        z-index: 250000;
    1038999        display: none;
    10391000        text-align: center;
    10401001        opacity: 0;
    1041 
    1042         -webkit-transition: opacity 250ms;
    1043         -moz-transition:    opacity 250ms;
    1044         -ms-transition:     opacity 250ms;
    1045         -o-transition:      opacity 250ms;
    1046         transition:         opacity 250ms;
     1002        transition: opacity 250ms;
    10471003}
    10481004
    10491005.uploader-window-content {
     
    10611017        top: 50%;
    10621018        left: 0;
    10631019        right: 0;
    1064         -webkit-transform: translateY( -50% );
    1065         -moz-transform:    translateY( -50% );
    1066         -ms-transform:     translateY( -50% );
    1067         -o-transform:      translateY( -50% );
    1068         transform:         translateY( -50% );
    1069 
     1020        transform: translateY( -50% );
    10701021        font-size: 40px;
    10711022        color: #fff;
    10721023        padding: 0;
     
    12601211        right: 0;
    12611212        bottom: 0;
    12621213        width: 25px;
    1263         background-image: -webkit-gradient(linear, right top, left top, from( rgba( 255, 255, 255, 1 ) ), to( rgba( 255, 255, 255, 0 ) ));
    1264         background-image: -webkit-linear-gradient(right, rgba( 255, 255, 255, 1 ) ,  rgba( 255, 255, 255, 0 ) );
    1265         background-image:    -moz-linear-gradient(right, rgba( 255, 255, 255, 1 ) ,  rgba( 255, 255, 255, 0 ) );
    1266         background-image:      -o-linear-gradient(right, rgba( 255, 255, 255, 1 ) ,  rgba( 255, 255, 255, 0 ) );
    1267         background-image:   linear-gradient(to left, rgba( 255, 255, 255, 1 ) ,  rgba( 255, 255, 255, 0 ) );
     1214        background-image: linear-gradient(to left, rgba( 255, 255, 255, 1 ) ,  rgba( 255, 255, 255, 0 ) );
    12681215}
    12691216
    12701217.media-selection .attachment .filename {
     
    16921639        .media-modal-close {
    16931640                right: 10px;
    16941641        }
    1695 
     1642
    16961643        /* Text inputs need to be 16px, or they force zooming on iOS */
    16971644        .media-frame input[type="text"],
    16981645        .media-frame input[type="password"],
     
    17401687        .media-frame-title {
    17411688                display: none;
    17421689        }
    1743 
     1690
    17441691        .media-frame-toolbar {
    17451692                position: absolute;
    17461693                bottom: 0px;
     
    17651712        .attachment-details h3 {
    17661713                margin-top: 45px;
    17671714        }
    1768 
     1715
    17691716        /* Shorten right-side links so they don't overlap the close button */
    17701717        .media-menu a:nth-child(2),
    17711718        .media-menu a:last-child {
     
    17911738                top: 84px;
    17921739                left: 0;
    17931740        }
    1794 
     1741
    17951742        .media-frame-content {
    17961743                left: 0;
    17971744                top: 118px;
     
    18001747        .media-frame .attachments-browser {
    18011748                padding-bottom: 300px;
    18021749        }
    1803 
     1750
    18041751        .media-sidebar {
    18051752                border-bottom: 1px solid #dddddd;
    18061753        }
    1807 
     1754
    18081755        .media-modal {
    18091756                width: auto;
    18101757        }
     
    19101857        .media-frame-content {
    19111858                top: 78px;
    19121859        }
    1913 
     1860
    19141861        .attachments-browser .attachments {
    19151862                top: 2px;
    19161863        }
  • src/wp-includes/css/wp-auth-check.css

     
    3030        padding: 30px 0 0;
    3131        background-color: #eee;
    3232        z-index: 1000001;
    33         -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    34         box-shadow:         0 3px 6px rgba(0,0,0,0.3);
     33        box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    3534}
    3635
    3736#wp-auth-check-wrap.fallback #wp-auth-check {
     
    7170        width: 22px;
    7271        color: #777;
    7372        -webkit-font-smoothing: antialiased !important;
     73        -moz-osx-font-smoothing: grayscale;
    7474}
    7575
    7676#wp-auth-check-wrap .wp-auth-check-close:hover:before {
     
    9595#wp-auth-check-wrap.fallback .wp-auth-fallback,
    9696#wp-auth-check-wrap.fallback .wp-auth-check-close {
    9797        display: block;
    98 }
    99  No newline at end of file
     98}
  • src/wp-includes/css/wp-pointer.css

     
    44        font-size: 13px;
    55        background: #fff;
    66        border: 1px solid #dfdfdf;
    7         -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.075);
    8         box-shadow:         0 3px 6px rgba(0,0,0,0.075);
     7        box-shadow: 0 3px 6px rgba(0,0,0,0.075);
    98}
    109
    1110.wp-pointer-content h3 {