Make WordPress Core

Changeset 27174


Ignore:
Timestamp:
02/13/2014 08:29:16 AM (11 years ago)
Author:
nacin
Message:

Dev/build tools: Use grunt-autoprefixer for CSS vendor prefixes.

We'll be using it for two distinct tasks:

  • Core CSS files will keep prefixes. grunt autoprefixer:core will update files directly in src/ as a pre-commit step, rather than doing it on build.
  • Color CSS files will receive prefixes when they are built.

This commit:

  • Adds prefixes we were missing to core CSS.
  • Removes prefixes that we no longer need from core CSS.
  • Removes all prefixes from colors CSS.

props ocean90.
fixes #27078.

Location:
trunk
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • trunk/Gruntfile.js

    r27172 r27174  
    1010    // Project configuration.
    1111    grunt.initConfig({
     12        autoprefixer: {
     13            options: {
     14                browsers: ['Android >= 2.1', 'Chrome >= 21', 'Explorer >= 7', 'Firefox >= 17', 'Opera >= 12.1', 'Safari >= 6.0']
     15            },
     16            core: {
     17                expand: true,
     18                cwd: SOURCE_DIR,
     19                dest: SOURCE_DIR,
     20                src: [
     21                    'wp-admin/css/*.css',
     22                    'wp-includes/css/*.css'
     23                ]
     24            },
     25            colors: {
     26                expand: true,
     27                cwd: BUILD_DIR,
     28                dest: BUILD_DIR,
     29                src: [
     30                    'wp-admin/css/colors/*/colors.css'
     31                ]
     32            }
     33        },
    1234        clean: {
    1335            all: [BUILD_DIR],
     
    96118                    'wp-includes/css/*.css',
    97119                    // Exceptions
    98                     '!wp-admin/css/theme.css', // Temporary file
    99120                    '!wp-admin/css/farbtastic.css'
    100121                ]
     
    377398
    378399    // Color schemes task.
    379     grunt.registerTask('colors', ['sass:colors']);
     400    grunt.registerTask('colors', ['sass:colors', 'autoprefixer:colors']);
    380401
    381402    // Build task.
  • trunk/package.json

    r27172 r27174  
    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    "grunt-contrib-imagemin" : "~0.4.1",
  • trunk/src/wp-admin/css/color-picker.css

    r26851 r27174  
    1010    background-color: #f7f7f7;
    1111    border: 1px solid #ccc;
     12    -webkit-border-radius: 3px;
    1213    border-radius: 3px;
    1314    cursor: pointer;
     
    1718    position: relative;
    1819    top: 1px;
    19     user-select: none;
     20    -webkit-user-select: none;
    2021    -moz-user-select: none;
    2122    -ms-user-select: none;
    22     -webkit-user-select: none;
     23    user-select: none;
    2324    vertical-align: bottom;
    2425    display: inline-block;
    2526    padding-left: 30px;
    26 
    2727    -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.08);
    2828    box-shadow: 0 1px 0 rgba(0,0,0,.08);
     
    3131.wp-color-result:after {
    3232    background: #f7f7f7;
     33    -webkit-border-radius: 0 2px 2px 0;
    3334    border-radius: 0 2px 2px 0;
    3435    border-left: 1px solid #ccc;
     
    4344    text-align: center;
    4445    top: 0;
    45 
    4646    -webkit-box-shadow: inset 0 1px 0 #fff;
    4747    box-shadow: inset 0 1px 0 #fff;
     
    9797
    9898.wp-picker-container .iris-picker {
     99    -webkit-border-radius: 0;
    99100    border-radius: 0;
    100101    border-color: #dfdfdf;
  • trunk/src/wp-admin/css/colors/_admin.scss

    r27106 r27174  
    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}
  • trunk/src/wp-admin/css/colors/_mixins.scss

    r26993 r27174  
    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 */
     
    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
     
    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    }
     
    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    }
  • trunk/src/wp-admin/css/customize-controls.css

    r26435 r27174  
    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    -webkit-box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1);
     88    box-shadow: 0 1px 1px -1px rgba(0, 0, 0, 0.1);
    8989}
    9090
     
    219219    background-color: transparent !important;
    220220    border: none !important;
     221    -webkit-box-shadow: none !important;
    221222    box-shadow: none !important;
     223    -webkit-border-radius: 0 !important;
    222224    border-radius: 0 !important;
    223225}
     
    257259    -webkit-user-select: none;
    258260    -moz-user-select: none;
     261    -ms-user-select: none;
    259262    user-select: none;
    260263}
     
    424427    display: block;
    425428    -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;
     429    transition: border-color 0.1s;
    430430}
    431431
  • trunk/src/wp-admin/css/install.css

    r26887 r27174  
    6969    background-image: url('../images/w-logo-blue.png?ver=20131202');
    7070    background-image: none, url('../images/wordpress-logo.svg?ver=20131107');
     71    -webkit-background-size: 80px 80px;
    7172    background-size: 80px 80px;
    7273    background-position: center top;
     
    100101    font-family: "Open Sans", sans-serif;
    101102    width: 100%;
     103    -webkit-box-sizing: border-box;
    102104    -moz-box-sizing: border-box;
    103     -webkit-box-sizing: border-box;
    104     -ms-box-sizing: border-box; /* ie8 only */
    105105    box-sizing: border-box;
    106106}
     
    143143    padding: 3px 5px;
    144144    border: 1px solid #ddd;
     145    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
    145146    box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
    146147}
     
    305306        display: block;
    306307        max-width: none;
     308        -webkit-box-sizing: border-box;
     309        -moz-box-sizing: border-box;
    307310        box-sizing: border-box;
    308         -moz-box-sizing: border-box;
    309     }
    310 
    311 }
     311    }
     312
     313}
  • trunk/src/wp-admin/css/media.css

    r26072 r27174  
    353353    .image-align-none-label {
    354354        background-image: url("../images/align-none-2x.png?ver=20120916");
     355        -webkit-background-size: 21px 15px;
    355356        background-size: 21px 15px;
    356357    }
     
    358359    .image-align-left-label {
    359360        background-image: url("../images/align-left-2x.png?ver=20120916");
     361        -webkit-background-size: 22px 15px;
    360362        background-size: 22px 15px;
    361363    }
     
    363365    .image-align-center-label {
    364366        background-image: url("../images/align-center-2x.png?ver=20120916");
     367        -webkit-background-size: 21px 15px;
    365368        background-size: 21px 15px;
    366369    }
     
    368371    .image-align-right-label {
    369372        background-image: url("../images/align-right-2x.png?ver=20120916");
     373        -webkit-background-size: 22px 15px;
    370374        background-size: 22px 15px;
    371375    }
  • trunk/src/wp-admin/css/wp-admin.css

    r27109 r27174  
    293293input[type="url"],
    294294textarea {
     295    -webkit-box-sizing: border-box;
    295296    -moz-box-sizing: border-box;
    296     -webkit-box-sizing: border-box;
    297     -ms-box-sizing: border-box; /* ie8 only */
    298297    box-sizing: border-box;
    299298}
     
    318317    -webkit-appearance: none;
    319318    -webkit-box-sizing: border-box;
     319    -moz-box-sizing: border-box;
    320320    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);
     321    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
     322    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    323323}
    324324
     
    343343
    344344input[type=radio] {
     345    -webkit-border-radius: 50%;
    345346    border-radius: 50%;
    346347    margin-right: 4px;
     
    353354textarea.disabled {
    354355    -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);
     356    box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
    356357    border-color: rgba(222, 222, 222, .75);
    357358    background: rgba(255, 255, 255, .5);
     
    387388    content: '\2022';
    388389    text-indent: -9999px;
     390    -webkit-border-radius: 50px;
    389391    border-radius: 50px;
    390392    font-size: 24px;
     
    482484    padding: 3px 5px;
    483485    line-height: 15px;
     486    -webkit-border-radius: 0;
    484487    border-radius: 0; /* Reset mobile webkit's default element styling */
    485488}
     
    493496    color: #0074a2;
    494497    -webkit-transition-property: border, background, color;
    495     -moz-transition-property:    border, background, color;
    496     transition-property:         border, background, color;
     498    transition-property: border, background, color;
    497499    -webkit-transition-duration: .05s;
    498     -moz-transition-duration:    .05s;
    499     transition-duration:         .05s;
     500    transition-duration: .05s;
    500501    -webkit-transition-timing-function: ease-in-out;
    501     -moz-transition-timing-function:    ease-in-out;
    502     transition-timing-function:         ease-in-out;
     502    transition-timing-function: ease-in-out;
    503503}
    504504
     
    881881    padding: 1px 12px;
    882882    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);
     883    -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
     884    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
    886885}
    887886
     
    890889    border-left: 4px solid #dd3d36;
    891890    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);
     891    -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
     892    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
    895893}
    896894
     
    930928    text-decoration: none;
    931929    border: none;
     930    -webkit-border-radius: 2px;
    932931    border-radius: 2px;
    933932    background: #e0e0e0;
     
    960959select {
    961960    border: 1px solid #ddd;
     961    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
    962962    box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
    963963    background-color: #fff;
     
    11421142    -moz-osx-font-smoothing: grayscale;
    11431143    -webkit-transition: all .1s ease-in-out;
    1144     -moz-transition:    all .1s ease-in-out;
    1145     transition:         all .1s ease-in-out;
     1144    transition: all .1s ease-in-out;
    11461145}
    11471146
     
    13061305    margin: 5px 0;
    13071306    -webkit-border-bottom-left-radius: 3px;
     1307    border-bottom-left-radius: 3px;
    13081308    -webkit-border-bottom-right-radius: 3px;
    1309     border-bottom-left-radius: 3px;
    13101309    border-bottom-right-radius: 3px;
    13111310    border: none;
     
    14561455    text-decoration: none !important;
    14571456    vertical-align: top;
    1458 
    14591457    -webkit-font-smoothing: antialiased;
    14601458    -moz-osx-font-smoothing: grayscale;
     
    15231521
    15241522.ui-autocomplete-input.open {
     1523    -webkit-border-bottom-right-radius: 0;
    15251524    border-bottom-right-radius: 0;
     1525    -webkit-border-bottom-left-radius: 0;
    15261526    border-bottom-left-radius: 0;
    15271527}
     
    15331533    position: absolute;
    15341534    z-index: 10000;
     1535    -webkit-border-bottom-right-radius: 3px;
    15351536    border-bottom-right-radius: 3px;
     1537    -webkit-border-bottom-left-radius: 3px;
    15361538    border-bottom-left-radius: 3px;
    15371539    border: 1px solid #aaa;
     
    16611663    background-color: #fff;
    16621664    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);
     1665    -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
     1666    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
    16661667}
    16671668
     
    17581759    border-top: none;
    17591760    -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.025);
    1760     box-shadow:         0 1px 0 rgba(0,0,0,.025);
     1761    box-shadow: 0 1px 0 rgba(0,0,0,.025);
    17611762}
    17621763
     
    17691770    border-top: none;
    17701771    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);
     1772    -webkit-box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
     1773    box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
    17731774}
    17741775
     
    17911792    border-color: #aaa;
    17921793    -webkit-box-shadow: 0 2px 3px rgba(0,0,0,0.15);
    1793     box-shadow:         0 2px 3px rgba(0,0,0,0.15);
     1794    box-shadow: 0 2px 3px rgba(0,0,0,0.15);
    17941795}
    17951796
     
    18961897#contextual-help-wrap.no-sidebar #contextual-help-back {
    18971898    right: 0;
    1898 
    18991899    border-right-width: 0;
    19001900    -webkit-border-bottom-right-radius: 2px;
     
    19391939    border-left: 2px solid #2ea2cc;
    19401940    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);
     1941    -webkit-box-shadow: 0 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02);
     1942    box-shadow: 0 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02);
    19441943}
    19451944
     
    19901989    -webkit-user-select: none;
    19911990    -moz-user-select: none;
     1991    -ms-user-select: none;
    19921992    user-select: none;
    19931993}
     
    20342034    z-index: 9999;
    20352035    background-color: #333;
    2036 
    20372036    -webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    2038     box-shadow:         0 3px 5px rgba(0,0,0,0.2);
     2037    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    20392038}
    20402039
     
    21292128    padding-right: 16px;
    21302129    padding-left: 14px;
    2131     -moz-transition: all .1s ease-in-out;
    21322130    -webkit-transition: all .1s ease-in-out;
    21332131    transition: all .1s ease-in-out;
     
    21832181    background-repeat: no-repeat;
    21842182    background-position: center;
     2183    -webkit-background-size: 20px auto;
    21852184    background-size: 20px auto;
    21862185}
     
    21962195    -webkit-font-smoothing: antialiased;
    21972196    -moz-osx-font-smoothing: grayscale;
    2198     -moz-transition: all .1s ease-in-out;
    21992197    -webkit-transition: all .1s ease-in-out;
    22002198    transition: all .1s ease-in-out;
     
    23922390    color: #aaa;
    23932391    -webkit-transition: all .1s ease-in-out;
    2394     -moz-transition:    all .1s ease-in-out;
    2395     transition:         all .1s ease-in-out;
     2392    transition: all .1s ease-in-out;
    23962393}
    23972394
     
    24162413    margin: 10px 8px 10px 11px;
    24172414    width: 15px;
    2418 
    24192415    -webkit-border-radius: 10px;
    24202416    border-radius: 10px;
     
    24392435    text-align: center;
    24402436    width: 20px;
    2441     -moz-transition: all .1s ease-in-out;
    24422437    -webkit-transition: all .1s ease-in-out;
    24432438    transition: all .1s ease-in-out;
    2444 
    24452439    -webkit-font-smoothing: antialiased;
    24462440    -moz-osx-font-smoothing: grayscale;
     
    24492443.folded #collapse-button div:after,
    24502444.rtl #collapse-button div:after {
     2445    -webkit-transform: rotate(180deg);
    24512446    -ms-transform: rotate(180deg);
    2452     -webkit-transform: rotate(180deg);
    24532447    transform: rotate(180deg);
    24542448}
    24552449
    24562450.rtl.folded #collapse-button div:after {
     2451    -webkit-transform: none;
    24572452    -ms-transform: none;
    2458     -webkit-transform: none;
    24592453    transform: none;
    24602454}
     
    25662560
    25672561    .auto-fold #collapse-button div:after {
     2562        -webkit-transform: rotate(180deg);
    25682563        -ms-transform: rotate(180deg);
    2569         -webkit-transform: rotate(180deg);
    25702564        transform: rotate(180deg);
    25712565    }
    25722566
    25732567    .rtl.auto-fold #collapse-button div:after {
     2568        -webkit-transform: none;
    25742569        -ms-transform: none;
    2575         -webkit-transform: none;
    25762570        transform: none;
    25772571    }
     
    27672761
    27682762.postbox-container .meta-box-sortables {
     2763    -webkit-box-sizing: border-box;
    27692764    -moz-box-sizing: border-box;
    2770     -webkit-box-sizing: border-box;
    2771     -ms-box-sizing: border-box;
    27722765    box-sizing: border-box;
    27732766}
     
    29962989    -webkit-user-select: none;
    29972990    -moz-user-select: none;
     2991    -ms-user-select: none;
    29982992    user-select: none;
    29992993}
     
    31103104    border: 1px solid #e5e5e5;
    31113105    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    3112     box-shadow:         0 1px 1px rgba(0,0,0,0.04);
     3106    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    31133107    background: #fff;
    31143108    font-size: 13px;
     
    31823176    margin-top: -2px;
    31833177    -webkit-transition: all .1s ease-in-out;
    3184     -moz-transition:    all .1s ease-in-out;
    3185     transition:         all .1s ease-in-out;
     3178    transition: all .1s ease-in-out;
    31863179}
    31873180
     
    34963489#dashboard_quick_press input,
    34973490#dashboard_quick_press textarea {
     3491    -webkit-box-sizing: border-box;
     3492    -moz-box-sizing: border-box;
    34983493    box-sizing: border-box;
    3499     -moz-box-sizing:border-box;
    3500     -webkit-box-sizing:border-box;
    35013494    margin: 0;
    35023495}
     
    38703863/* @todo: pick a consistent list table selector */
    38713864.wp-list-table a {
    3872     -moz-transition:    none;
    38733865    -webkit-transition: none;
    3874     transition:         none;
     3866    transition: none;
    38753867}
    38763868
     
    40033995
    40043996tr.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;
     3997    -webkit-transition: height 1s, opacity 0.5s;
     3998    transition: height 1s, opacity 0.5s;
    40103999}
    40114000
     
    46674656    border: 1px solid #e5e5e5;
    46684657    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    4669     box-shadow:         0 1px 1px rgba(0,0,0,0.04);
     4658    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    46704659    background: #fff;
    46714660}
     
    48454834    background-color: #f7f7f7;
    48464835    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    4847     box-shadow:         0 1px 1px rgba(0,0,0,0.04);
     4836    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    48484837}
    48494838
     
    51105099    height: 82px;
    51115100    background: #fff;
     5101    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    51125102    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    51135103}
     
    51195109    top: 7px;
    51205110    max-width: 70%;
     5111    -webkit-box-sizing: border-box;
    51215112    -moz-box-sizing: border-box;
    5122     -webkit-box-sizing: border-box;
    51235113    box-sizing: border-box;
    51245114    background-color: #fff;
     
    51295119    height: 100%;
    51305120    border-left: 1px solid #aaa;
     5121    -webkit-box-sizing: border-box;
    51315122    -moz-box-sizing: border-box;
    5132     -webkit-box-sizing: border-box;
    51335123    box-sizing: border-box;
    51345124}
     
    51665156    margin-left: -90px;
    51675157    -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;
     5158    transition: opacity 0.5s;
    51725159    filter: alpha(opacity=0); /* ie8 and earlier */
    51735160}
     
    51905177.revisions .diff {
    51915178    -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;
     5179    transition: opacity 0.5s;
    51965180}
    51975181
     
    52085192    margin-top: 20px;
    52095193    background-color: #fff;
     5194    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    52105195    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    52115196}
    52125197
    52135198.revisions.pinned .revisions-meta {
     5199    -webkit-box-shadow: none;
    52145200    box-shadow: none;
    52155201}
     
    52705256    padding: 15px;
    52715257    background-color: #fff;
     5258    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    52725259    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    52735260}
     
    54515438    height: 25px;
    54525439    -webkit-transform: rotate(45deg);
    5453     -moz-transform:    rotate(45deg);
    5454     -ms-transform:     rotate(45deg);
    5455     -o-transform:      rotate(45deg);
    5456     transform:         rotate(45deg);
     5440    -ms-transform: rotate(45deg);
     5441    transform: rotate(45deg);
    54575442}
    54585443
     
    54965481    z-index: 9999;
    54975482    background-color: #fff;
     5483    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    54985484    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    54995485}
     
    55165502    height: 25px;
    55175503    -webkit-transform: rotate(45deg);
    5518     -moz-transform: rotate(45deg);
    55195504    -ms-transform: rotate(45deg);
    5520     -o-transform: rotate(45deg);
    55215505    transform: rotate(45deg);
    55225506}
     
    55455529
    55465530.wp-slider .ui-slider-handle {
     5531    -webkit-border-radius: 50%;
    55475532    border-radius: 50%;
    55485533    height: 18px;
     
    55725557    font: normal 18px/1 'dashicons';
    55735558    speak: none;
    5574     -webkit-font-smoothing:antialiased;
     5559    -webkit-font-smoothing: antialiased;
    55755560    -moz-osx-font-smoothing: grayscale;
    55765561}
     
    56925677    color: #ddd;
    56935678    -webkit-transition: all .1s ease-in-out;
    5694     -moz-transition:    all .1s ease-in-out;
    5695     transition:         all .1s ease-in-out;
     5679    transition: all .1s ease-in-out;
    56965680}
    56975681
     
    58205804#post-body ul.add-menu-item-tabs li.tabs {
    58215805    -webkit-border-top-left-radius: 3px;
     5806    border-top-left-radius: 3px;
    58225807    -webkit-border-bottom-left-radius: 3px;
    5823     border-top-left-radius: 3px;
    58245808    border-bottom-left-radius: 3px;
    58255809}
     
    62156199    overflow: hidden;
    62166200    margin-bottom: 2px;
     6201    -webkit-border-radius: 22px;
    62176202    border-radius: 22px;
    62186203    background: #ddd;
     
    62266211    height: 100%;
    62276212    margin-top: -22px;
     6213    -webkit-border-radius: 22px;
    62286214    border-radius: 22px;
    62296215    background-color: #0074a2;
     
    64786464    top: 0;
    64796465    background: #fff url('../images/spinner.gif') no-repeat scroll 22px 10px;
     6466    -webkit-background-size: 20px 20px;
    64806467    background-size: 20px 20px;
    64816468    opacity: 0.7;
     
    64886475.spinner {
    64896476    background: url('../images/spinner.gif') no-repeat;
     6477    -webkit-background-size: 20px 20px;
    64906478    background-size: 20px 20px;
    64916479    display: none;
     
    69186906#the-comment-list td {
    69196907    -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);
     6908    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    69216909}
    69226910
     
    69696957.themes-php .wrap .theme-count {
    69706958    color: #fff;
     6959    -webkit-border-radius: 30px;
    69716960    border-radius: 30px;
    69726961    background: #777;
     
    70036992    border: 1px solid #dedede;
    70046993    -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);
     6994    box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
    70066995    -webkit-box-sizing: border-box;
    7007     -moz-box-sizing:    border-box;
    7008     box-sizing:         border-box;
     6996    -moz-box-sizing: border-box;
     6997    box-sizing: border-box;
    70096998}
    70106999
     
    70297018    padding: 15px;
    70307019    -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);
     7020    box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
    70327021    overflow: hidden;
    70337022    white-space: nowrap;
     
    70427031    opacity: 0;
    70437032    -webkit-transition: opacity 0.1s ease-in-out;
    7044     transition:         opacity 0.1s ease-in-out;
     7033    transition: opacity 0.1s ease-in-out;
    70457034    position: absolute;
    70467035    bottom: 0;
     
    70777066    position: relative;
    70787067    -webkit-transition: opacity 0.2s ease-in-out;
    7079     transition:         opacity 0.2s ease-in-out;
     7068    transition: opacity 0.2s ease-in-out;
    70807069}
    70817070
     
    70937082    width: 100%;
    70947083    -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;
     7084    -webkit-transition: opacity 0.2s ease-in-out; /* Prevents rendering bugs in Chrome */
     7085    transition: opacity 0.2s ease-in-out;
    70977086}
    70987087
     
    71217110    padding: 15px 12px;
    71227111    text-align: center;
     7112    -webkit-border-radius: 3px;
    71237113    border-radius: 3px;
    71247114    -webkit-transition: opacity 0.1s ease-in-out;
    7125     transition:         opacity 0.1s ease-in-out;
     7115    transition: opacity 0.1s ease-in-out;
    71267116}
    71277117.theme-browser .theme:focus {
     
    71937183    font-weight: 300;
    71947184    -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);
     7185    box-shadow: inset 0 1px 1px rgba(0,0,0,0.5);
    71967186}
    71977187
     
    72357225.theme-browser .theme.add-new-theme {
    72367226    border: none;
     7227    -webkit-box-shadow: none;
    72377228    box-shadow: none;
    72387229}
     
    72637254    border: 5px dashed rgba(0, 0, 0, 0.1);
    72647255    -webkit-transition: opacity 0.2s ease-in-out;
    7265     transition:         opacity 0.2s ease-in-out;
     7256    transition: opacity 0.2s ease-in-out;
    72667257    -webkit-box-sizing: border-box;
    7267     -moz-box-sizing:    border-box;
    7268     box-sizing:         border-box;
     7258    -moz-box-sizing: border-box;
     7259    box-sizing: border-box;
    72697260}
    72707261
     
    72727263    background: #e5e5e5;
    72737264    background: rgba(153, 153, 153, 0.1);
     7265    -webkit-border-radius: 50%;
    72747266    border-radius: 50%;
    72757267    display: inline-block;
     
    73157307    background: none;
    73167308    text-align: center;
     7309    -webkit-box-shadow: none;
    73177310    box-shadow: none;
    73187311    font-weight: 400;
     
    74587451    background: #fff;
    74597452    -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);
     7453    box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1);
    74617454    z-index: 20;
     7455    -webkit-box-sizing: border-box;
     7456    -moz-box-sizing: border-box;
    74627457    box-sizing: border-box;
    74637458}
     
    75017496    background: #f3f3f3;
    75027497    z-index: 30;
     7498    -webkit-box-sizing: border-box;
     7499    -moz-box-sizing: border-box;
    75037500    box-sizing: border-box;
    75047501    border-top: 1px solid #eee;
     
    75217518    text-decoration: none;
    75227519    border-color: transparent;
     7520    -webkit-box-shadow: none;
    75237521    box-shadow: none;
    75247522    background: transparent;
     
    75577555    border: 1px solid #fff;
    75587556    -webkit-box-sizing: border-box;
    7559     -moz-box-sizing:    border-box;
    7560     box-sizing:         border-box;
     7557    -moz-box-sizing: border-box;
     7558    box-sizing: border-box;
    75617559    overflow: hidden;
    75627560    position: relative;
    75637561    -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);
     7562    box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
    75657563}
    75667564
     
    76457643    display: inline-block;
    76467644    padding: 2px 8px;
     7645    -webkit-border-radius: 2px;
    76477646    border-radius: 2px;
    76487647    margin: 0 0 -10px;
    76497648    -webkit-user-select: none;
    7650     -moz-user-select:    none;
    7651     -ms-user-select:     none;
    7652     user-select:         none;
     7649    -moz-user-select: none;
     7650    -ms-user-select: none;
     7651    user-select: none;
    76537652}
    76547653
     
    76697668    margin-left: 10px;
    76707669    -webkit-user-select: none;
    7671     -moz-user-select:    none;
    7672     -ms-user-select:     none;
    7673     user-select:         none;
     7670    -moz-user-select: none;
     7671    -ms-user-select: none;
     7672    user-select: none;
    76747673}
    76757674
     
    77137712    border: 1px solid #eee;
    77147713    border-left: 4px solid #d54e21;
     7714    -webkit-border-radius: 3px;
    77157715    border-radius: 3px;
    77167716    padding: 5px 20px 10px;
     
    82958295.upgrade .plugins th {
    82968296    -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);
     8297    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
    82988298}
    82998299
     
    83038303.plugins tr.active + tr.inactive td {
    83048304    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;
     8305    -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1;
     8306    box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1;
    83088307}
    83098308
     
    83858384    border: none;
    83868385    -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);
     8386    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
    83888387}
    83898388
     
    84358434    width: 24%;
    84368435    padding: 5px 15px 15px;
     8436    -webkit-box-sizing: border-box;
    84378437    -moz-box-sizing: border-box;
    84388438    box-sizing: border-box;
     
    85168516.pressthis a:hover:after {
    85178517    -webkit-transform: skew(20deg) rotate(9deg);
    8518     -moz-transform: skew(20deg) rotate(9deg);
     8518    -ms-transform: skew(20deg) rotate(9deg);
    85198519    transform: skew(20deg) rotate(9deg);
    85208520    -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
     
    85478547    bottom: 9px;
    85488548    background: transparent;
    8549 
    85508549    -webkit-transform: skew(20deg) rotate(6deg);
    8551     -moz-transform: skew(20deg) rotate(6deg);
     8550    -ms-transform: skew(20deg) rotate(6deg);
    85528551    transform: skew(20deg) rotate(6deg);
    85538552    -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
     
    87448743    background: #0074a2, url('../images/wordpress-logo-white.svg?ver=20131110') no-repeat; /* multiple backgrounds are ignored by browsers that don't support SVGs */
    87458744    background-position: center 24px;
     8745    -webkit-background-size: 85px 85px;
    87468746    background-size: 85px 85px;
    87478747    color: #78c8e6;
     
    87558755    width: 150px;
    87568756    text-rendering: optimizeLegibility;
    8757 
    87588757    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    8759     box-shadow:         0 1px 3px rgba(0,0,0,0.2);
     8758    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    87608759}
    87618760
     
    90809079    margin-left: 15px;
    90819080    padding: 0;
     9081    -webkit-border-radius: 50%;
    90829082    border-radius: 50%;
    90839083    color: #777;
     
    91059105
    91069106.wp-full-overlay .collapse-sidebar-arrow:before {
     9107    -webkit-border-radius: 50%;
    91079108    border-radius: 50%;
    91089109    float: left;
     
    91239124.wp-full-overlay.collapsed .collapse-sidebar-arrow:before,
    91249125.rtl .wp-full-overlay .collapse-sidebar-arrow:before {
     9126    -webkit-transform: rotate(180deg);
    91259127    -ms-transform: rotate(180deg);
    9126     -webkit-transform: rotate(180deg);
    91279128    transform: rotate(180deg);
    91289129}
    91299130
    91309131.rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before {
     9132    -webkit-transform: none;
    91319133    -ms-transform: none;
    9132     -webkit-transform: none;
    91339134    transform: none;
    91349135}
     
    91559156.wp-full-overlay-main {
    91569157    -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;
     9158    transition-property: left, right, top, bottom, width, margin;
    91619159    -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;
     9160    transition-duration: 0.2s;
    91669161}
    91679162
     
    92029197.customize-loading #customize-container {
    92039198    background: #fff url('../images/spinner.gif') no-repeat fixed center center;
     9199    -webkit-background-size: 20px 20px;
    92049200    background-size: 20px 20px;
    92059201}
     
    92109206    width: 100%;
    92119207    z-index: 20;
    9212 
    92139208    -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;
     9209    transition: opacity 0.3s;
    92189210}
    92199211
     
    93029294#theme-installer .wp-full-overlay-main {
    93039295    background: #fff url('../images/spinner.gif') no-repeat fixed center center;
     9296    -webkit-background-size: 20px 20px;
    93049297    background-size: 20px 20px;
    93059298}
     
    95519544    background-color: #f9f9f9;
    95529545    -webkit-transition: none;
    9553     -moz-transition: none;
    95549546    transition: none;
    95559547}
     
    95719563    padding-right: 6px;
    95729564    -webkit-border-top-left-radius: 3px;
     9565    border-top-left-radius: 3px;
    95739566    -webkit-border-top-right-radius: 3px;
    9574     border-top-left-radius: 3px;
    95759567    border-top-right-radius: 3px;
    95769568    border: 1px solid #dfdfdf;
     
    98069798#activity-widget #the-comment-list .comment {
    98079799    -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);
     9800    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06);
    98099801}
    98109802
     
    99969988    overflow: hidden;
    99979989    background: #fff;
    9998 
    99999990    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);
    10000     box-shadow:         0 1px 3px rgba(0,0,0,0.13);
     9991    box-shadow: 0 1px 3px rgba(0,0,0,0.13);
    100019992}
    100029993
     
    1003710028    background-image: url('../images/w-logo-blue.png?ver=20131202');
    1003810029    background-image: none, url('../images/wordpress-logo.svg?ver=20131107');
     10030    -webkit-background-size: 80px 80px;
    1003910031    background-size: 80px 80px;
    1004010032    background-position: center top;
     
    1079110783    border-top: none;
    1079210784    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    10793     box-shadow:         0 1px 1px rgba(0,0,0,0.04);
     10785    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    1079410786}
    1079510787
     
    1094710939    font-style: normal;
    1094810940    vertical-align: top;
    10949     -moz-transition: color .1s ease-in 0;
    1095010941    -webkit-transition: color .1s ease-in 0;
     10942    transition: color .1s ease-in 0;
    1095110943    text-align: center;
    1095210944    color: #0074a2;
     
    1096310955.rtl .star-rating .star-half {
    1096410956    -webkit-transform: rotateY(180deg);
    10965     -ms-transform:     rotateY(180deg);
    10966     transform:         rotateY(180deg);
     10957    -ms-transform: rotateY(180deg);
     10958    transform: rotateY(180deg);
    1096710959}
    1096810960
     
    1100510997    margin-top: 10px;
    1100610998    -webkit-border-top-left-radius: 3px;
     10999    border-top-left-radius: 3px;
    1100711000    -webkit-border-bottom-left-radius: 3px;
    11008     border-top-left-radius: 3px;
    1100911001    border-bottom-left-radius: 3px;
    1101011002}
     
    1113211124    -webkit-user-select: none;
    1113311125    -moz-user-select: none;
     11126    -ms-user-select: none;
    1113411127    user-select: none;
    1113511128}
     
    1116811161    margin-left: 0;
    1116911162    margin-right: 0;
     11163    -webkit-box-sizing: border-box;
    1117011164    -moz-box-sizing: border-box;
    11171     -webkit-box-sizing: border-box;
    11172     -ms-box-sizing: border-box;
    1117311165    box-sizing: border-box;
    1117411166}
     
    1161311605    margin: 0 auto 10px;
    1161411606    position: relative;
     11607    -webkit-box-sizing: border-box;
     11608    -moz-box-sizing: border-box;
    1161511609    box-sizing: border-box;
    11616     -moz-box-sizing: border-box;
    11617     -webkit-box-sizing: border-box;
    1161811610}
    1161911611
     
    1163811630    -webkit-user-select: none;
    1163911631    -moz-user-select: none;
     11632    -ms-user-select: none;
    1164011633    user-select: none;
    1164111634}
     
    1180111794    margin: 0 0 20px 0;
    1180211795    border: none;
     11796    -webkit-box-shadow: none;
    1180311797    box-shadow: none;
    1180411798}
     
    1188311877#widgets-right .widgets-holder-wrap.widget-hover {
    1188411878    border-color: #777;
     11879    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    1188511880    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    1188611881}
     
    1192911924    -webkit-user-select: none;
    1193011925    -moz-user-select: none;
     11926    -ms-user-select: none;
    1193111927    user-select: none;
    1193211928}
     
    1206012056.widget-liquid-left #widgets-left.chooser #available-widgets .widget,
    1206112057.widget-liquid-left #widgets-left.chooser .inactive-sidebar {
     12058    -webkit-transition: opacity 0.1s linear;
    1206212059    transition: opacity 0.1s linear;
    1206312060}
     
    1209912096    outline: none;
    1210012097    position: relative;
     12098    -webkit-transition: background 0.2s ease-in-out;
    1210112099    transition: background 0.2s ease-in-out;
    1210212100}
     
    1220212200    border-left: 1px solid #dfdfdf;
    1220312201    border-right: 1px solid #dfdfdf;
    12204 
    1220512202    -webkit-user-select: none;
    1220612203    -moz-user-select: none;
     12204    -ms-user-select: none;
    1220712205    user-select: none;
    1220812206}
     
    1243112429    tr.wp-locked .locked-indicator {
    1243212430        background-image: url('../images/lock-2x.png');
     12431        -webkit-background-size: 16px 16px;
    1243312432        background-size: 16px 16px;
    1243412433    }
     
    1243712436    #post-body .wp_themeSkin .mceStatusbar a.mceResize {
    1243812437        background: transparent url('../images/resize-2x.gif') no-repeat scroll right bottom;
     12438        -webkit-background-size: 11px 11px;
    1243912439        background-size: 11px 11px;
    1244012440    }
     
    1244812448    div.star-holder {
    1244912449        background: url('../images/stars-2x.png?ver=20121108') repeat-x bottom left;
     12450        -webkit-background-size: 21px 37px;
    1245012451        background-size: 21px 37px;
    1245112452    }
     
    1245412455    div.star-holder .star-rating {
    1245512456        background: url('../images/stars-2x.png?ver=20121108') repeat-x top left;
     12457        -webkit-background-size: 21px 37px;
    1245612458        background-size: 21px 37px;
    1245712459    }
     
    1245912461    .wp-full-overlay .collapse-sidebar-arrow {
    1246012462        background-image: url('../images/arrows-2x.png');
     12463        -webkit-background-size: 15px 123px;
    1246112464        background-size: 15px 123px;
    1246212465    }
     
    1280712810        z-index: 99999;
    1280812811        border: none;
     12812        -webkit-box-sizing: border-box;
     12813        -moz-box-sizing: border-box;
    1280912814        box-sizing: border-box;
    12810         -moz-box-sizing: border-box;
    1281112815    }
    1281212816
     
    1323413238        width: 100%;
    1323513239        max-width: none;
     13240        -webkit-box-sizing: border-box;
    1323613241        -moz-box-sizing: border-box;
    1323713242        box-sizing: border-box;
     
    1330813313    /* Form Tables */
    1330913314    .form-table {
     13315        -webkit-box-sizing: border-box;
    1331013316        -moz-box-sizing: border-box;
    1331113317        box-sizing: border-box;
     
    1334513351        display: block;
    1334613352        max-width: none;
     13353        -webkit-box-sizing: border-box;
     13354        -moz-box-sizing: border-box;
    1334713355        box-sizing: border-box;
    13348         -moz-box-sizing: border-box;
    1334913356    }
    1335013357
     
    1336413371    #pass-strength-result {
    1336513372        width: 100%;
     13373        -webkit-box-sizing: border-box;
     13374        -moz-box-sizing: border-box;
    1336613375        box-sizing: border-box;
    13367         -moz-box-sizing: border-box;
    1336813376        padding: 8px;
    1336913377    }
     
    1363513643    .wp-list-table.plugins .theme-title,
    1363613644    .wp-list-table.plugins tbody th {
     13645        -webkit-box-shadow: none;
    1363713646        box-shadow: none;
    13638         -webkit-box-shadow: none;
    1363913647    }
    1364013648
     
    1364513653    .plugins tr.active + tr.inactive td.column-description {
    1364613654        -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);
    1365013655        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    1365113656    }
     
    1395113956        text-align: center;
    1395213957        text-decoration: none;
     13958        -webkit-box-sizing: border-box;
     13959        -moz-box-sizing: border-box;
    1395313960        box-sizing: border-box;
    13954         -moz-box-sizing: border-box;
    1395513961    }
    1395613962}
  • trunk/src/wp-includes/css/admin-bar.css

    r27006 r27174  
    99    letter-spacing: normal;
    1010    font: normal 13px/32px "Open Sans", sans-serif;
     11    -webkit-border-radius: 0;
    1112    border-radius: 0;
    1213    -webkit-box-sizing: content-box;
    13     -moz-box-sizing:    content-box;
    14     box-sizing:         content-box;
     14    -moz-box-sizing: content-box;
     15    box-sizing: content-box;
    1516    -webkit-transition: none;
    16     -moz-transition:    none;
    17     -o-transition:      none;
    18     transition:         none;
     17    transition: none;
    1918    -webkit-font-smoothing: subpixel-antialiased; /* Prevent Safari from switching to standard antialiasing on hover */
    2019}
     
    102101
    103102/* Prevent a Chrome bug that inadvertantly activates
    104    :hover states on an element that touches the extreme 
     103   :hover states on an element that touches the extreme
    105104   top left corner of the viewport. See #18868 */
    106105#wpadminbar .quicklinks {
     
    251250#wpadminbar #adminbarsearch:before {
    252251    position: relative;
    253     -moz-transition: all .1s ease-in-out;
    254252    -webkit-transition: all .1s ease-in-out;
    255253    transition: all .1s ease-in-out;
     
    588586    outline: none;
    589587    cursor: pointer;
    590 
    591588    -webkit-box-shadow: none;
    592589    box-shadow: none;
    593 
     590    -webkit-box-sizing: border-box;
    594591    -moz-box-sizing: border-box;
    595     -webkit-box-sizing: border-box;
    596     -ms-box-sizing: border-box;
    597592    box-sizing: border-box;
    598 
    599593    -webkit-transition-duration: 400ms;
     594    transition-duration: 400ms;
    600595    -webkit-transition-property: width, background;
     596    transition-property: width, background;
    601597    -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;
     598    transition-timing-function: ease;
    608599}
    609600
     
    868859        position: relative;
    869860    }
    870    
     861
    871862    #wpadminbar > #wp-toolbar > #wp-admin-bar-root-default .ab-icon,
    872863    #wpadminbar .ab-icon,
     
    875866        margin-right: 0;
    876867    }
    877    
     868
    878869    #wpadminbar #wp-admin-bar-edit > .ab-item:before,
    879870    #wpadminbar #wp-admin-bar-my-sites > .ab-item:before,
     
    1006997        display: list-item;
    1007998    }
    1008    
     999
    10091000    /* Override default min-width so dropdown lists aren't stretched
    10101001        to 100% viewport width at responsive sizes. */
    10111002    #wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper {
    1012         min-width: intrinsic;
    10131003        min-width: -webkit-fit-content;
    10141004        min-width: -moz-fit-content;
     
    10411031        margin-right: 0;
    10421032    }
    1043    
     1033
    10441034    /* Realign arrows on taller responsive submenus */
    1045    
     1035
    10461036    #wpadminbar .ab-top-secondary .menupop .menupop > .ab-item:before {
    10471037        top: 10px;
     
    10551045        position: absolute;
    10561046    }
    1057    
     1047
    10581048    #wp-responsive-overlay {
    10591049        position: fixed;
     
    10781068        margin-left: 0;
    10791069    }
    1080    
     1070
    10811071    #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper {
    10821072        margin: 0;
     
    10861076        position: relative;
    10871077    }
    1088    
     1078
    10891079    #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper .ab-item {
    10901080        font-size: 16px;
    10911081        padding: 6px 15px 19px 30px;
    10921082    }
    1093    
     1083
    10941084    #wpadminbar li:hover ul li ul li {
    10951085        display: list-item;
     
    11001090        display: none;
    11011091    }
    1102    
     1092
    11031093    /* Make submenus full-width at this size */
    1104    
     1094
    11051095    #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper {
    11061096        position: static;
  • trunk/src/wp-includes/css/buttons.css

    r27038 r27174  
    4949    border-width: 1px;
    5050    border-style: solid;
     51    -webkit-appearance: none;
    5152    -webkit-border-radius: 3px;
    52     -webkit-appearance: none;
    5353    border-radius: 3px;
    5454    white-space: nowrap;
    5555    -webkit-box-sizing: border-box;
    56     -moz-box-sizing:    border-box;
    57     box-sizing:         border-box;
     56    -moz-box-sizing: border-box;
     57    box-sizing: border-box;
    5858}
    5959
     
    108108    background: none;
    109109    border: none;
    110     -moz-box-shadow: none;
    111110    -webkit-box-shadow: none;
    112111    box-shadow: none;
     
    124123    border-color: #cccccc;
    125124    background: #f7f7f7;
    126 
    127125    -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08);
    128126    box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba(0,0,0,.08);
     
    160158    border-color: #999;
    161159    color: #333;
    162     -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
     160    -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    163161    box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    164162}
     
    174172    border-color: #ddd !important;
    175173    -webkit-box-shadow: none !important;
    176     box-shadow:         none !important;
     174    box-shadow: none !important;
    177175    text-shadow: 0 1px 0 #fff !important;
    178176    cursor: default;
     
    185183.wp-core-ui .button-primary {
    186184    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);
     185    border-color: #0074a2;
     186    -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.5), 0 1px 0 rgba(0,0,0,.15);
    189187    box-shadow: inset 0 1px 0 rgba(120,200,230,0.5), 0 1px 0 rgba(0,0,0,.15);
    190188    color: #fff;
     
    198196    background: #1e8cbe;
    199197    border-color: #0074a2;
    200     -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6);
     198    -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,0.6);
    201199    box-shadow: inset 0 1px 0 rgba(120,200,230,0.6);
    202200    color: #fff;
     
    217215    border-color: #005684;
    218216    color: rgba(255,255,255,0.95);
    219     -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
     217    -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
    220218    box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
    221219    vertical-align: top;
     
    230228    border-color: #1b607f !important;
    231229    -webkit-box-shadow: none !important;
    232     box-shadow:         none !important;
     230    box-shadow: none !important;
    233231    text-shadow: 0 -1px 0 rgba(0,0,0,0.1) !important;
    234232    cursor: default;
     
    249247.wp-core-ui .button-group > .button {
    250248    display: inline-block;
     249    -webkit-border-radius: 0;
    251250    border-radius: 0;
    252251    margin-right: -1px;
     
    263262
    264263.wp-core-ui .button-group > .button:first-child {
     264    -webkit-border-radius: 3px 0 0 3px;
    265265    border-radius: 3px 0 0 3px;
    266266}
    267267
    268268.wp-core-ui .button-group > .button:last-child {
     269    -webkit-border-radius: 0 3px 3px 0;
    269270    border-radius: 0 3px 3px 0;
    270271}
     
    289290        margin-bottom: 4px;
    290291    }
    291    
     292
    292293    #media-upload.wp-core-ui .button {
    293294        padding: 0 10px 1px;
     
    302303        margin: 0 14px 0 10px; /* 14px right margin to match all other buttons */
    303304    }
    304    
     305
    305306    /* Reset responsive styles in Press This, Customizer */
    306307
     
    317318        vertical-align: inherit;
    318319    }
    319    
     320
    320321    /* Reset responsive styles on Log in button on iframed login form */
    321    
     322
    322323    .interim-login .button.button-large {
    323324        height: 30px;
     
    325326        padding: 0 12px 2px;
    326327    }
    327    
    328 }
     328
     329}
  • trunk/src/wp-includes/css/editor.css

    r27165 r27174  
    66    border: 0;
    77    background: #fff;
     8    -webkit-filter: none;
    89    filter: none;
    910}
     
    3334    border-color: transparent;
    3435    background: transparent;
     36    -webkit-box-shadow: none;
    3537    box-shadow: none;
    3638}
     
    4244    -webkit-border-radius: 2px;
    4345    border-radius: 2px;
     46    -webkit-filter: none;
    4447    filter: none;
    4548}
     
    4851.mce-toolbar .mce-btn-group .mce-btn:hover,
    4952.mce-toolbar .mce-btn-group .mce-btn.mce-active {
     53    -webkit-box-shadow: 0 0 transparent;
    5054    box-shadow: 0 0 transparent;
    5155    border-color: #bbb;
     
    8084
    8185.mce-toolbar .mce-btn-group .mce-btn.mce-listbox {
     86    -webkit-border-radius: 0;
    8287    border-radius: 0;
    8388    direction: ltr;
     
    8590    border: 1px solid #ddd;
    8691    -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);
     92    box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, .2);
    8893}
    8994
     
    307312    display: block;
    308313    resize: vertical;
     314    -webkit-box-sizing: border-box;
    309315    -moz-box-sizing: border-box;
    310     -webkit-box-sizing: border-box;
    311316    box-sizing: border-box;
    312317}
     
    432437    border-bottom-width: 1px;
    433438    -webkit-border-top-right-radius: 3px;
     439    border-top-right-radius: 3px;
    434440    -webkit-border-top-left-radius: 3px;
    435     border-top-right-radius: 3px;
    436441    border-top-left-radius: 3px;
    437442    padding: 2px 8px 0;
     
    457462    background-image: -webkit-gradient(linear, left bottom, left top, from(#e3e3e3), to(#fff));
    458463    background-image: -webkit-linear-gradient(bottom, #e3e3e3, #fff);
    459     background-image:    -moz-linear-gradient(bottom, #e3e3e3, #fff);
    460     background-image:      -o-linear-gradient(bottom, #e3e3e3, #fff);
    461464    background-image: linear-gradient(to top, #e3e3e3, #fff);
    462465}
     
    541544#wp-link input[type="text"] {
    542545    -webkit-box-sizing: border-box;
     546    -moz-box-sizing: border-box;
     547    box-sizing: border-box;
    543548}
    544549
     
    967972    border: 0;
    968973    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.7);
    969     box-shadow:         0 5px 15px rgba(0,0,0,0.7);
     974    box-shadow: 0 5px 15px rgba(0,0,0,0.7);
    970975    background-color: #f5f5f5;
    971976}
     
    11391144    left: 0;
    11401145    right: 0;
     1146    -webkit-filter: inherit;
    11411147    filter: inherit;
    11421148}
     
    11721178    top: 60px;
    11731179    z-index: 150010;
    1174    
     1180
    11751181}
    11761182
     
    12991305    background-image: -webkit-gradient(linear, left bottom, left top, from(#e4e4e4), to(#f9f9f9));
    13001306    background-image: -webkit-linear-gradient(bottom, #e4e4e4, #f9f9f9);
    1301     background-image:    -moz-linear-gradient(bottom, #e4e4e4, #f9f9f9);
    1302     background-image:      -o-linear-gradient(bottom, #e4e4e4, #f9f9f9);
    13031307    background-image: linear-gradient(to top, #e4e4e4, #f9f9f9);
    13041308}
     
    13121316    background-image: -webkit-gradient(linear, left top, left bottom, from(#e4e4e4), to(#f9f9f9));
    13131317    background-image: -webkit-linear-gradient(top, #e4e4e4, #f9f9f9);
    1314     background-image:    -moz-linear-gradient(top, #e4e4e4, #f9f9f9);
    1315     background-image:      -o-linear-gradient(top, #e4e4e4, #f9f9f9);
    13161318    background-image: linear-gradient(to bottom, #e4e4e4, #f9f9f9);
    13171319}
     
    13201322    border-width: 1px;
    13211323    -webkit-border-top-left-radius: 3px;
     1324    border-top-left-radius: 3px;
    13221325    -webkit-border-bottom-left-radius: 3px;
    1323     border-top-left-radius: 3px;
    13241326    border-bottom-left-radius: 3px;
    13251327}
     
    13271329#wp-fullscreen-modes a:last-child {
    13281330    -webkit-border-top-right-radius: 3px;
     1331    border-top-right-radius: 3px;
    13291332    -webkit-border-bottom-right-radius: 3px;
    1330     border-top-right-radius: 3px;
    13311333    border-bottom-right-radius: 3px;
    13321334}
     
    13531355    overflow: visible;
    13541356    text-align: center;
     1357    -webkit-box-sizing: border-box;
    13551358    -moz-box-sizing: border-box;
    13561359    box-sizing: border-box;
     
    14921495    #wp-link .toggle-arrow {
    14931496        background: transparent url('../images/toggle-arrow-2x.png') top left no-repeat;
     1497        -webkit-background-size: 19px 69px;
    14941498        background-size: 19px 69px;
    14951499    }
  • trunk/src/wp-includes/css/jquery-ui-dialog.css

    r26528 r27174  
    256256    border: 0;
    257257    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.7);
    258     box-shadow:         0 5px 15px rgba(0,0,0,0.7);
     258    box-shadow: 0 5px 15px rgba(0,0,0,0.7);
    259259    background-color: #f5f5f5;
    260260}
  • trunk/src/wp-includes/css/media-views.css

    r27106 r27174  
    44.media-modal * {
    55    -webkit-box-sizing: content-box;
    6     -moz-box-sizing:    content-box;
    7     box-sizing:         content-box;
     6    -moz-box-sizing: content-box;
     7    box-sizing: content-box;
    88}
    99
     
    5858    font-family: "Open Sans", sans-serif;
    5959    font-size: 12px;
     60    -webkit-box-sizing: border-box;
    6061    -moz-box-sizing: border-box;
    61     -webkit-box-sizing: border-box;
    62     -ms-box-sizing: border-box; /* ie8 only */
    6362    box-sizing: border-box;
    6463    border-width: 1px;
     
    9493.ui-sortable,
    9594.ui-draggable {
    96     -ms-touch-action: none;
    97     touch-action:     none;
     95    touch-action: none;
    9896}
    9997
    10098.meta-box-sortables.ui-sortable {
    101     -ms-touch-action: auto;
    102     touch-action:     auto;
     99    touch-action: auto;
    103100}
    104101
    105102.meta-box-sortables.ui-sortable .hndle {
    106     -ms-touch-action: none;
    107     touch-action:     none;
     103    touch-action: none;
    108104}
    109105
     
    184180    overflow: auto;
    185181    min-height: 300px;
     182    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.7);
    186183    box-shadow: 0 5px 15px rgba(0,0,0,0.7);
    187184    background: #fcfcfc;
     
    459456
    460457.media-router a {
    461     -moz-transition:    none;
    462458    -webkit-transition: none;
    463     transition:         none;
     459    transition: none;
    464460}
    465461
     
    593589.media-frame.hide-router .media-frame-title {
    594590    border-bottom: 1px solid #dfdfdf;
     591    -webkit-box-shadow: 0 4px 4px -4px rgba( 0, 0, 0, 0.1 );
    595592    box-shadow: 0 4px 4px -4px rgba( 0, 0, 0, 0.1 );
    596593}
     
    661658    position: relative;
    662659    float: left;
    663 
    664660    padding: 0;
    665661    margin: 0 10px 20px;
     
    667663    list-style: none;
    668664    text-align: center;
    669 
    670665    -webkit-user-select: none;
    671     -moz-user-select:    none;
    672     -ms-user-select:     none;
    673     -o-user-select:      none;
    674     user-select:         none;
     666    -moz-user-select: none;
     667    -ms-user-select: none;
     668    user-select: none;
    675669}
    676670
    677671.selected.attachment {
     672    -webkit-box-shadow:
     673        0 0 0 1px #fff,
     674        0 0 0 3px #ccc;
    678675    box-shadow:
    679676        0 0 0 1px #fff,
     
    685682    width: 199px;
    686683    height: 199px;
     684    -webkit-box-shadow:
     685        inset 0 0 15px rgba( 0, 0, 0, 0.1 ),
     686        inset 0 0 0 1px rgba( 0, 0, 0, 0.05 );
    687687    box-shadow:
    688688        inset 0 0 15px rgba( 0, 0, 0, 0.1 ),
     
    717717    right: 0;
    718718    bottom: 0;
     719    -webkit-box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 );
    719720    box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 );
    720721    overflow: hidden;
     
    735736    height: 100%;
    736737    -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% );
     738    -ms-transform: translate( 50%, 50% );
     739    transform: translate( 50%, 50% );
    741740}
    742741
    743742.attachment .thumbnail .centered img {
    744743    -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% );
     744    -ms-transform: translate( -50%, -50% );
     745    transform: translate( -50%, -50% );
    749746}
    750747
     
    761758    font-weight: bold;
    762759    background: rgba( 255, 255, 255, 0.8 );
     760    -webkit-box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.15 );
    763761    box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.15 );
    764762}
     
    793791    background-position: -96px 4px;
    794792    border-width: 0;
     793    -webkit-border-radius: 3px;
    795794    border-radius: 3px;
     795    -webkit-box-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.3 );
    796796    box-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.3 );
    797797}
    798798
    799799.attachment .close:hover {
     800    -webkit-box-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.6 );
    800801    box-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.6 );
    801802}
     
    814815    outline: none;
    815816    background: #eee;
     817    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba( 0, 0, 0, 0.4 );
    816818    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba( 0, 0, 0, 0.4 );
    817819}
     
    833835
    834836.attachment.details {
     837    -webkit-box-shadow: 0 0 0 1px #fff,
     838                0 0 0 5px #1e8cbe;
    835839    box-shadow: 0 0 0 1px #fff,
    836840                0 0 0 5px #1e8cbe;
     
    839843.attachment.details .check {
    840844    background-color: #1e8cbe;
     845    -webkit-box-shadow: 0 0 0 1px #fff,
     846                0 0 0 2px #1e8cbe;
    841847    box-shadow: 0 0 0 1px #fff,
    842848                0 0 0 2px #1e8cbe;
     
    858864    padding: 8px;
    859865    font-size: 12px;
     866    -webkit-border-radius: 0;
    860867    border-radius: 0;
    861868}
     
    909916    width: 70%;
    910917    margin: 10px auto;
     918    -webkit-border-radius: 10px;
    911919    border-radius: 10px;
    912920    background: #dfdfdf;
     
    919927    width: 0;
    920928    background: #1e8cbe;
     929    -webkit-border-radius: 10px;
    921930    border-radius: 10px;
    922     -webkit-transition: width 300ms;
    923     -moz-transition:    width 300ms;
    924     -ms-transition:     width 300ms;
    925     -o-transition:      width 300ms;
     931    -webkit-transition:         width 300ms;
    926932    transition:         width 300ms;
    927933}
     
    953959.media-sidebar .media-uploader-status {
    954960    border-bottom: 1px solid #dfdfdf;
     961    -webkit-box-shadow: 0 1px 0 #fff;
    955962    box-shadow: 0 1px 0 #fff;
    956963}
     
    10031010    border: 1px #c00 solid;
    10041011    background: #ffebe8;
     1012    -webkit-border-radius: 3px;
    10051013    border-radius: 3px;
    10061014}
     
    10141022    background-image: -webkit-gradient(linear, left top, left bottom, from(#e00), to(#a00));
    10151023    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);
     1024    background-image: linear-gradient(to bottom, #e00, #a00);
     1025    -webkit-border-radius: 3px;
    10191026    border-radius: 3px;
    10201027}
     
    10341041    bottom: 0;
    10351042    background: rgba( 0, 86, 132, 0.9 );
    1036 
    10371043    z-index: 250000;
    10381044    display: none;
    10391045    text-align: center;
    10401046    opacity: 0;
    1041 
    10421047    -webkit-transition: opacity 250ms;
    1043     -moz-transition:    opacity 250ms;
    1044     -ms-transition:     opacity 250ms;
    1045     -o-transition:      opacity 250ms;
    1046     transition:         opacity 250ms;
     1048    transition: opacity 250ms;
    10471049}
    10481050
     
    10631065    right: 0;
    10641066    -webkit-transform: translateY( -50% );
    1065     -moz-transform:    translateY( -50% );
    1066     -ms-transform:     translateY( -50% );
    1067     -o-transform:      translateY( -50% );
    1068     transform:         translateY( -50% );
    1069 
     1067    -ms-transform: translateY( -50% );
     1068    transform: translateY( -50% );
    10701069    font-size: 40px;
    10711070    color: #fff;
     
    12381237
    12391238.attachment.selection.selected {
     1239    -webkit-box-shadow: none;
    12401240    box-shadow: none;
    12411241}
    12421242
    12431243.attachment.selection.details {
     1244    -webkit-box-shadow:
     1245        0 0 0 1px #fff,
     1246        0 0 0 4px #1e8cbe;
    12441247    box-shadow:
    12451248        0 0 0 1px #fff,
     
    12481251
    12491252.media-selection .attachment.selection.details {
     1253    -webkit-box-shadow:
     1254        0 0 0 1px #fff,
     1255        0 0 0 3px #1e8cbe;
    12501256    box-shadow:
    12511257        0 0 0 1px #fff,
     
    12611267    bottom: 0;
    12621268    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 ) );
     1269    background-image: -webkit-gradient(linear, right top, left top, from(rgba( 255, 255, 255, 1 )), to(rgba( 255, 255, 255, 0 )));
     1270    background-image: -webkit-linear-gradient(right, rgba( 255, 255, 255, 1 ), rgba( 255, 255, 255, 0 ));
     1271    background-image: linear-gradient(to left, rgba( 255, 255, 255, 1 ) ,  rgba( 255, 255, 255, 0 ) );
    12681272}
    12691273
     
    12781282.media-frame .spinner {
    12791283    background: url('../images/spinner.gif') no-repeat;
     1284    -webkit-background-size: 20px 20px;
    12801285    background-size: 20px 20px;
    12811286    display: none;
     
    13231328    color: #666;
    13241329    border-bottom: 1px solid #e5e5e5;
     1330    -webkit-box-shadow: 0 1px 0 #fff;
    13251331    box-shadow: 0 1px 0 #fff;
    13261332    padding-bottom: 11px;
     
    13461352    width: 120px;
    13471353    height: 80px;
     1354    -webkit-box-shadow: inset 0 0 15px rgba( 0, 0, 0, 0.1 );
    13481355    box-shadow: inset 0 0 15px rgba( 0, 0, 0, 0.1 );
    13491356}
     
    13611368    right: 0;
    13621369    bottom: 0;
     1370    -webkit-box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.15 );
    13631371    box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.15 );
    13641372    overflow: hidden;
     
    14391447    width: 100%;
    14401448    min-width: 200px;
     1449    -webkit-box-shadow: inset 2px 2px 4px -2px rgba( 0, 0, 0, 0.1 );
    14411450    box-shadow: inset 2px 2px 4px -2px rgba( 0, 0, 0, 0.1 );
    14421451}
     
    14871496    right: 0;
    14881497    bottom: 0;
     1498    -webkit-box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 );
    14891499    box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 );
    14901500    overflow: hidden;
     
    16931703        right: 10px;
    16941704    }
    1695    
     1705
    16961706    /* Text inputs need to be 16px, or they force zooming on iOS */
    16971707    .media-frame input[type="text"],
     
    17411751        display: none;
    17421752    }
    1743    
     1753
    17441754    .media-frame-toolbar {
    17451755        position: absolute;
     
    17661776        margin-top: 45px;
    17671777    }
    1768        
     1778
    17691779    /* Shorten right-side links so they don't overlap the close button */
    17701780    .media-menu a:nth-child(2),
     
    17921802        left: 0;
    17931803    }
    1794    
     1804
    17951805    .media-frame-content {
    17961806        left: 0;
     
    18011811        padding-bottom: 300px;
    18021812    }
    1803    
     1813
    18041814    .media-sidebar {
    18051815        border-bottom: 1px solid #dddddd;
    18061816    }
    1807    
     1817
    18081818    .media-modal {
    18091819        width: auto;
     
    19111921        top: 78px;
    19121922    }
    1913    
     1923
    19141924    .attachments-browser .attachments {
    19151925        top: 2px;
     
    19391949    .media-modal-icon {
    19401950        background-image: url(../images/uploader-icons-2x.png);
     1951        -webkit-background-size: 134px 15px;
    19411952        background-size: 134px 15px;
    19421953    }
  • trunk/src/wp-includes/css/wp-auth-check.css

    r26441 r27174  
    3232    z-index: 1000001;
    3333    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    34     box-shadow:         0 3px 6px rgba(0,0,0,0.3);
     34    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    3535}
    3636
     
    4242#wp-auth-check-wrap #wp-auth-check-form {
    4343    background: url(../images/wpspin-2x.gif) no-repeat center center;
     44    -webkit-background-size: 16px 16px;
    4445    background-size: 16px 16px;
    4546    height: 100%;
     
    7273    color: #777;
    7374    -webkit-font-smoothing: antialiased !important;
     75    -moz-osx-font-smoothing: grayscale;
    7476}
    7577
  • trunk/src/wp-includes/css/wp-pointer.css

    r27106 r27174  
    66    border: 1px solid #dfdfdf;
    77    -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.075);
    8     box-shadow:         0 3px 6px rgba(0,0,0,0.075);
     8    box-shadow: 0 3px 6px rgba(0,0,0,0.075);
    99}
    1010
     
    2323.wp-pointer-content h3:before {
    2424    background: #fff;
     25    -webkit-border-radius: 50%;
    2526    border-radius: 50%;
    2627    color: #2ea2cc;
Note: See TracChangeset for help on using the changeset viewer.