Make WordPress Core

Changeset 41062


Ignore:
Timestamp:
07/16/2017 01:14:36 AM (8 years ago)
Author:
jorbin
Message:

Update autoprefixer browser support matrix

WordPress no longer supports many old old browsers: https://make.wordpress.org/core/2017/04/23/target-browser-coverage/

This also removes alot of no longer necessary CSS. It served us well, but we are never getting back together with IE8,9,10.

So, in the (paraphrased) words of Taylor Swift:

I remember when we dropped support the first time
Saying, "This is it, I've had enough, " 'cause like
We hadn't seen many users in a month
When you said you needed flexbox. (What?)
Then you postMessage again and say
"IE8, I miss you and I swear I'm gonna change, trust me."
Remember how that lasted for a day?
I say, "I hate the box model, " we break up, you call me, "I love css-grids."
Ooh, we called it off again last night
But ooh, this time I'm telling you, I'm telling you

We are never ever ever supporting IE 8,9,10,
We are never ever ever supporting IE 8,9,10,
You go talk to EDGE, talk to my FIREFOX, talk to CHROME
But we are never ever ever ever getting back together
Like, ever...

Fixes #37651.
Props stunnedbeast, netweb, jorbin.

Location:
trunk
Files:
32 edited

Legend:

Unmodified
Added
Removed
  • trunk/Gruntfile.js

    r41043 r41062  
    2727                    autoprefixer({
    2828                        browsers: [
    29                             'Android >= 2.1',
    30                             'Chrome >= 21',
    31                             'Edge >= 12',
    32                             'Explorer >= 7',
    33                             'Firefox >= 17',
    34                             'Opera >= 12.1',
    35                             'Safari >= 6.0'
     29                            '> 1%',
     30                            'ie >= 11',
     31                            'last 1 Android versions',
     32                            'last 1 ChromeAndroid versions',
     33                            'last 2 Chrome versions',
     34                            'last 2 Firefox versions',
     35                            'last 2 Safari versions',
     36                            'last 2 iOS versions',
     37                            'last 2 Edge versions',
     38                            'last 2 Opera versions'
    3639                        ],
    3740                        cascade: false
  • trunk/src/wp-admin/css/about.css

    r40885 r41062  
    5252    background: #0073aa url(../images/w-logo-white.png?ver=20160308) no-repeat;
    5353    background-position: center 25px;
    54     -webkit-background-size: 80px 80px;
    5554    background-size: 80px 80px;
    5655    color: #fff;
     
    6463    width: 140px;
    6564    text-rendering: optimizeLegibility;
    66     -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    6765    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    6866}
     
    162160
    163161.about-wrap [class$="-col"] {
    164     display: -ms-flexbox;
    165     display: -webkit-flex;
    166162    display: -webkit-box;
    167     display: -moz-box;
    168163    display: flex;
    169164    -webkit-box-pack: justify;
    170     -webkit-justify-content: space-between;
    171     -moz-box-pack: justify;
    172     -ms-flex-pack: justify;
    173165    justify-content: space-between;
    174166    -webkit-box-align: center;
    175     -webkit-align-items: center;
    176     -moz-box-align: center;
    177     -ms-flex-align: center;
    178167    align-items: center;
    179     -webkit-flex-wrap: wrap;
    180     -ms-flex-wrap: wrap;
    181168    flex-wrap: wrap;
    182169}
     
    188175
    189176.about-wrap [class$="-col"] .col {
    190     -webkit-flex: 1;
    191     -ms-flex: 1;
    192177    -webkit-box-flex: 1;
    193     -moz-box-flex: 1;
    194178    flex: 1;
    195179}
     
    202186.about-wrap .three-col .col {
    203187    -webkit-align-self: flex-start;
    204     -ms-flex-item-align: start;
    205188    align-self: flex-start;
    206189    min-width: 31%;
     
    261244.about-wrap .two-col-text {
    262245    -webkit-column-count: 2;
    263     -moz-column-count: 2;
    264246    column-count: 2;
    265247    -webkit-column-gap: 40px;
    266     -moz-column-gap: 40px;
    267248    column-gap: 40px;
    268249}
     
    449430    .about-wrap .two-col-text {
    450431        -webkit-column-count: 1;
    451         -moz-column-count: 1;
    452432        column-count: 1;
    453433    }
  • trunk/src/wp-admin/css/admin-menu.css

    r39141 r41062  
    4848    -webkit-font-smoothing: antialiased;
    4949    -moz-osx-font-smoothing: grayscale;
    50     -webkit-transition: all .1s ease-in-out;
    5150    transition: all .1s ease-in-out;
    5251}
     
    204203    z-index: 9999;
    205204    background-color: #32373c;
    206     -webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    207205    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    208206}
     
    228226    border: 0 none;
    229227    margin-top: 0;
    230     -webkit-box-shadow: none;
    231228    box-shadow: none;
    232229    background-color: #32373c;
     
    302299    padding-right: 16px;
    303300    padding-left: 14px;
    304     -webkit-transition: all .1s ease-in-out;
    305301    transition: all .1s ease-in-out;
    306302}
     
    359355    background-repeat: no-repeat;
    360356    background-position: center;
    361     -webkit-background-size: 20px auto;
    362357    background-size: 20px auto;
    363358}
     
    367362    color: rgba(240,245,250,0.6);
    368363    padding: 7px 0;
    369     -webkit-transition: all .1s ease-in-out;
    370364    transition: all .1s ease-in-out;
    371365}
     
    527521    margin: 1px 0 0 2px;
    528522    vertical-align: top;
    529     -webkit-border-radius: 10px;
    530523    border-radius: 10px;
    531524    z-index: 26;
     
    608601.rtl #collapse-button .collapse-button-icon:after {
    609602    -webkit-transform: rotate(180deg);
    610     -ms-transform: rotate(180deg);
    611603    transform: rotate(180deg);
    612604}
     
    614606.rtl.folded #collapse-button .collapse-button-icon:after {
    615607    -webkit-transform: none;
    616     -ms-transform: none;
    617608    transform: none;
    618609}
     
    620611#collapse-button .collapse-button-icon:after,
    621612#collapse-button .collapse-button-label {
    622     -webkit-transition: all .1s ease-in-out;
    623613    transition: all .1s ease-in-out;
    624614}
     
    742732    .auto-fold #collapse-button .collapse-button-icon:after {
    743733        -webkit-transform: rotate(180deg);
    744         -ms-transform: rotate(180deg);
    745734        transform: rotate(180deg);
    746735    }
     
    748737    .rtl.auto-fold #collapse-button .collapse-button-icon:after {
    749738        -webkit-transform: none;
    750         -ms-transform: none;
    751739        transform: none;
    752740    }
     
    829817        top: 0;
    830818        left: -1px;
    831         -webkit-box-shadow: none;
    832819        box-shadow: none;
    833820    }
     
    871858        z-index: 99999;
    872859        border: none;
    873         -webkit-box-sizing: border-box;
    874         -moz-box-sizing: border-box;
    875860        box-sizing: border-box;
    876861    }
     
    916901        text-align: center;
    917902        text-decoration: none;
    918         -webkit-box-sizing: border-box;
    919         -moz-box-sizing: border-box;
    920903        box-sizing: border-box;
    921904    }
  • trunk/src/wp-admin/css/color-picker.css

    r40471 r41062  
    1010    background-color: #f7f7f7;
    1111    border: 1px solid #ccc;
    12     -webkit-border-radius: 3px;
    1312    border-radius: 3px;
    1413    cursor: pointer;
     
    2524    display: inline-block;
    2625    padding-left: 30px;
    27     -webkit-box-shadow: 0 1px 0 #ccc;
    2826    box-shadow: 0 1px 0 #ccc;
    2927}
     
    3129.wp-color-result:after {
    3230    background: #f7f7f7;
    33     -webkit-border-radius: 0 2px 2px 0;
    3431    border-radius: 0 2px 2px 0;
    3532    border-left: 1px solid #ccc;
     
    7572.wp-color-result:focus {
    7673    border-color: #5b9dd9;
    77     -webkit-box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    7874    box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    7975}
     
    9389
    9490.wp-picker-container .iris-picker {
    95     -webkit-border-radius: 0;
    9691    border-radius: 0;
    9792    border-color: #ddd;
     
    128123.iris-picker .ui-square-handle:focus,
    129124.iris-picker .iris-strip .ui-slider-handle:focus {
    130     -webkit-box-shadow:
    131         0 0 0 1px #5b9dd9,
    132         0 0 2px 1px rgba(30, 140, 190, .8);
    133125    box-shadow:
    134126        0 0 0 1px #5b9dd9,
  • trunk/src/wp-admin/css/common.css

    r40928 r41062  
    151151    z-index: 100000;
    152152    line-height: normal;
    153     -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
    154153    box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
    155154    text-decoration: none;
     
    185184.comment-ays {
    186185    border: 1px solid #e5e5e5;
    187     -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    188186    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    189187}
     
    248246a {
    249247    color: #0073aa;
    250     -webkit-transition-property: border, background, color;
    251248    transition-property: border, background, color;
    252     -webkit-transition-duration: .05s;
    253249    transition-duration: .05s;
    254     -webkit-transition-timing-function: ease-in-out;
    255250    transition-timing-function: ease-in-out;
    256251}
     
    270265.wp-person a:focus .gravatar {
    271266    color: #124964;
    272     -webkit-box-shadow:
    273         0 0 0 1px #5b9dd9,
    274         0 0 2px 1px rgba(30, 140, 190, .8);
    275267    box-shadow:
    276268        0 0 0 1px #5b9dd9,
     
    284276#adminmenu a:focus,
    285277.screen-reader-text:focus {
    286     -webkit-box-shadow: none;
    287278    box-shadow: none;
    288279    outline: none;
     
    609600    border: none;
    610601    border: 1px solid #ccc;
    611     -webkit-border-radius: 2px;
    612602    border-radius: 2px;
    613603    background: #f7f7f7;
     
    639629.wrap .page-title-action:focus {
    640630    border-color: #5b9dd9;
    641     -webkit-box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
    642631    box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
    643632}
     
    657646#widgets-left .widget-top:hover {
    658647    border-color: #999;
    659     -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    660648    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    661649}
     
    726714    background: none !important;
    727715    padding: 0 !important;
    728     -webkit-box-shadow: none !important;
    729716    box-shadow: none !important;
    730717}
     
    802789.tagchecklist .ntdelbutton .remove-tag-icon:before {
    803790    margin-left: 2px;
    804     -webkit-border-radius: 50%;
    805791    border-radius: 50%;
    806792    color: #0073aa;
     
    823809
    824810.tagchecklist .ntdelbutton:focus .remove-tag-icon:before {
    825     -webkit-box-shadow:
    826         0 0 0 1px #5b9dd9,
    827         0 0 2px 1px rgba(30, 140, 190, .8);
    828811    box-shadow:
    829812        0 0 0 1px #5b9dd9,
     
    984967    display: inline-block;
    985968    position: relative;
    986     -webkit-box-sizing: border-box;
    987     -moz-box-sizing: border-box;
    988969    box-sizing: border-box;
    989970    margin: 12px 0 25px;
    990971    padding: 0 10px;
    991972    width: 100%;
    992     -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    993973    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    994974    border: 1px solid #e5e5e5;
     
    1014994    top: -1px;
    1015995    padding: 4px 10px;
    1016     -webkit-border-radius: 30px;
    1017996    border-radius: 30px;
    1018997    background: #72777c;
     
    10541033
    10551034.filter-links .current {
    1056     -webkit-box-shadow: none;
    10571035    box-shadow: none;
    10581036    border-bottom: 4px solid #666;
     
    10991077    color: #666;
    11001078    vertical-align: baseline;
    1101     -webkit-box-shadow: none;
    11021079    box-shadow: none;
    11031080}
     
    11321109.wp-filter .button.drawer-toggle:active {
    11331110    background: transparent;
    1134     -webkit-box-shadow: none;
    11351111    box-shadow: none;
    11361112    -webkit-transform: none;
    1137     -ms-transform: none;
    11381113    transform: none;
    11391114}
     
    11631138
    11641139.show-filters .wp-filter .button.drawer-toggle {
    1165     -webkit-border-radius: 2px;
    11661140    border-radius: 2px;
    11671141    background: #72777c;
     
    11791153
    11801154.filter-group {
    1181     -webkit-box-sizing: border-box;
    1182     -moz-box-sizing: border-box;
    11831155    box-sizing: border-box;
    11841156    position: relative;
     
    11891161    background: #fff;
    11901162    border: 1px solid #e5e5e5;
    1191     -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    11921163    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    11931164}
     
    12641235    padding: 4px 8px;
    12651236    border: 1px solid #e5e5e5;
    1266     -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    12671237    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    12681238    background: #fff;
     
    13631333    background: #fff;
    13641334    border-left: 4px solid #fff;
    1365     -webkit-box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
    13661335    box-shadow: 0 1px 1px 0 rgba( 0, 0, 0, 0.1 );
    13671336    margin: 5px 15px 2px;
     
    13911360
    13921361.notice-alt {
    1393     -webkit-box-shadow: none;
    13941362    box-shadow: none;
    13951363}
     
    14301398.notice-dismiss:focus {
    14311399    outline: none;
    1432     -webkit-box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, .8);
    14331400    box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, .8);
    14341401}
     
    15441511    background-color: #fff;
    15451512    border-left: 4px solid #ffba00;
    1546     -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
    15471513    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
    15481514}
     
    15951561
    15961562.button.updated-message {
    1597     -webkit-transition-property: border, background, color;
    15981563    transition-property: border, background, color;
    1599     -webkit-transition-duration: .05s;
    16001564    transition-duration: .05s;
    1601     -webkit-transition-timing-function: ease-in-out;
    16021565    transition-timing-function: ease-in-out;
    16031566}
     
    16551618    border: 1px solid #ddd;
    16561619    border-top: none;
    1657     -webkit-box-shadow: 0 1px 0 rgba(0,0,0,.025);
    16581620    box-shadow: 0 1px 0 rgba(0,0,0,.025);
    16591621}
     
    16671629    border-top: none;
    16681630    background: #fff;
    1669     -webkit-box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
    16701631    box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
    16711632}
     
    16791640    border: 0;
    16801641    background: none;
    1681     -webkit-border-radius: 0;
    16821642    border-radius: 0;
    16831643    color: #72777c;
     
    16931653
    16941654#screen-meta-links .show-settings:active {
    1695     -webkit-box-shadow: none;
    16961655    box-shadow: none;
    16971656    -webkit-transform: none;
    1698     -ms-transform: none;
    16991657    transform: none;
    17001658}
     
    18301788    right: 0;
    18311789    border-right-width: 0;
    1832     -webkit-border-bottom-right-radius: 2px;
    18331790    border-bottom-right-radius: 2px;
    18341791}
     
    18711828    border-left: 2px solid #00a0d2;
    18721829    background: #f6fbfd;
    1873     -webkit-box-shadow: 0 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02);
    18741830    box-shadow: 0 2px 0 rgba(0,0,0,0.02), 0 1px 0 rgba(0,0,0,0.02);
    18751831}
     
    19131869html.wp-toolbar {
    19141870    padding-top: 32px;
    1915     -webkit-box-sizing: border-box;
    1916     -moz-box-sizing: border-box;
    19171871    box-sizing: border-box;
    19181872}
     
    19611915
    19621916.postbox-container .meta-box-sortables {
    1963     -webkit-box-sizing: border-box;
    1964     -moz-box-sizing: border-box;
    19651917    box-sizing: border-box;
    19661918}
     
    20922044.postbox.closed h3 {
    20932045    border: none;
    2094     -webkit-box-shadow: none;
    20952046    box-shadow: none;
    20962047}
     
    21012052
    21022053.postbox table.widefat {
    2103     -webkit-box-shadow: none;
    21042054    box-shadow: none;
    21052055}
     
    21872137.nav-tab-active,
    21882138.nav-tab:focus:active {
    2189     -webkit-box-shadow: none;
    21902139    box-shadow: none;
    21912140}
     
    22352184.spinner {
    22362185    background: url(../images/spinner.gif) no-repeat;
    2237     -webkit-background-size: 20px 20px;
    22382186    background-size: 20px 20px;
    22392187    display: inline-block;
     
    24712419    font-style: normal;
    24722420    vertical-align: top;
    2473     -webkit-transition: color .1s ease-in 0;
    24742421    transition: color .1s ease-in 0;
    24752422    text-align: center;
     
    24872434.rtl .star-rating .star-half {
    24882435    -webkit-transform: rotateY(180deg);
    2489     -ms-transform: rotateY(180deg);
    24902436    transform: rotateY(180deg);
    24912437}
     
    25312477    margin-right: 0;
    25322478    height: 250px;
    2533     -webkit-background-size: cover;
    25342479    background-size: cover;
    25352480}
     
    25512496    font-size: 30px;
    25522497    line-height: 50px;
    2553     -webkit-box-sizing: border-box;
    2554     -moz-box-sizing: border-box;
    25552498    box-sizing: border-box;
    25562499    max-width: 100%;
     
    25602503    background: rgba( 30, 30, 30, 0.9 );
    25612504    text-shadow: 0 1px 3px rgba( 0, 0, 0, 0.4 );
    2562     -webkit-box-shadow: 0 0 30px rgba( 255, 255, 255, 0.1 );
    25632505    box-shadow: 0 0 30px rgba( 255, 255, 255, 0.1 );
    2564     -webkit-border-radius: 8px;
    25652506    border-radius: 8px;
    25662507}
     
    25782519    width: 100%;
    25792520    background: transparent;
    2580     -webkit-box-shadow: inset 0 0 50px 4px rgba( 0, 0, 0, 0.2 ), inset 0 -1px 0 rgba( 0, 0, 0, 0.1 );
    25812521    box-shadow: inset 0 0 50px 4px rgba( 0, 0, 0, 0.2 ), inset 0 -1px 0 rgba( 0, 0, 0, 0.1 );
    25822522}
     
    26032543    font-size: 14px;
    26042544    text-decoration: none;
    2605     -webkit-transition: none;
    26062545    transition: none;
    26072546}
     
    26352574    min-height: 100%;
    26362575    /* Height of title + tabs + install now */
    2637     min-height: -webkit-calc( 100% - 152px );
    26382576    min-height: calc( 100% - 152px );
    26392577}
     
    26412579#plugin-information-content.with-banner {
    26422580    /* Height of banner + tabs + install now */
    2643     min-height: -webkit-calc( 100% - 346px );
    26442581    min-height: calc( 100% - 346px );
    26452582}
     
    27952732    width: auto;
    27962733    height: auto;
    2797     -webkit-box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.3 );
    27982734    box-shadow: 0 1px 2px rgba( 0, 0, 0, 0.3 );
    27992735}
     
    29662902    margin: -10px 0 0 -10px;
    29672903    background: #fcfcfc url(../images/spinner.gif) no-repeat center;
    2968     -webkit-background-size: 20px 20px;
    29692904    background-size: 20px 20px;
    29702905    -webkit-transform: translateZ(0);
     
    30322967    color: #00a0d2;
    30332968    outline: none;
    3034     -webkit-box-shadow: none;
    30352969    box-shadow: none;
    30362970}
     
    31123046    margin-top: 4px;
    31133047    width: 20px;
    3114     -webkit-border-radius: 50%;
    31153048    border-radius: 50%;
    31163049    text-indent: -1px; /* account for the dashicon alignment */
     
    31283061
    31293062.js .postbox .handlediv:focus {
    3130     -webkit-box-shadow: none;
    31313063    box-shadow: none;
    31323064    outline: none;
     
    31343066
    31353067.js .postbox .handlediv:focus .toggle-indicator:before {
    3136     -webkit-box-shadow:
    3137         0 0 0 1px #5b9dd9,
    3138         0 0 2px 1px rgba(30, 140, 190, .8);
    31393068    box-shadow:
    31403069        0 0 0 1px #5b9dd9,
     
    32513180.widget-top .widget-action .toggle-indicator:before {
    32523181    padding: 1px 2px 1px 0px;
    3253     -webkit-border-radius: 50%;
    32543182    border-radius: 50%;
    32553183}
     
    32813209
    32823210.widget-top .widget-action:focus .toggle-indicator:before {
    3283     -webkit-box-shadow:
    3284         0 0 0 1px #5b9dd9,
    3285         0 0 2px 1px rgba(30,140,190,.8);
    32863211    box-shadow:
    32873212        0 0 0 1px #5b9dd9,
     
    33133238.ui-draggable-handle,
    33143239.ui-sortable-handle {
    3315     -ms-touch-action: none;
    33163240    touch-action: none;
    33173241}
     
    35673491    div.star-holder .star-rating {
    35683492        background: url(../images/stars-2x.png?ver=20121108) repeat-x bottom left;
    3569         -webkit-background-size: 21px 37px;
    35703493        background-size: 21px 37px;
    35713494    }
  • trunk/src/wp-admin/css/customize-controls.css

    r40671 r41062  
    6363    z-index: 9;
    6464    width: 100%;
    65     -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .1);
    6665    box-shadow: 0 1px 0 rgba(0, 0, 0, .1);
    6766}
     
    131130    height: 20px;
    132131    cursor: pointer;
    133     -webkit-box-shadow: none;
    134132    box-shadow: none;
    135133    -webkit-appearance: none;
     
    201199    border-bottom: 1px solid #ddd;
    202200    border-left: 4px solid #fff;
    203     -webkit-transition: .15s color ease-in-out,
    204                 .15s background-color ease-in-out,
    205                 .15s border-color ease-in-out;
    206201    transition: .15s color ease-in-out,
    207202                .15s background-color ease-in-out,
     
    281276    margin: 0;
    282277    padding: 12px;
    283     -webkit-box-sizing: border-box;
    284     -moz-box-sizing: border-box;
    285278    box-sizing: border-box;
    286279}
     
    293286    margin: 0;
    294287    padding: 0;
    295     -webkit-box-sizing: border-box;
    296     -moz-box-sizing: border-box;
    297288    box-sizing: border-box;
    298     -webkit-transition: 0.18s -webkit-transform cubic-bezier(0.645, 0.045, 0.355, 1);
    299289    transition: 0.18s -webkit-transform cubic-bezier(0.645, 0.045, 0.355, 1);
    300     -webkit-transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1);
    301290    transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1);
    302     -webkit-transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1), 0.18s -webkit-transform cubic-bezier(0.645, 0.045, 0.355, 1);
    303291    transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1), 0.18s -webkit-transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
    304292}
    305293
    306294#customize-theme-controls .customize-pane-child.skip-transition {
    307     -webkit-transition: none;
    308295    transition: none;
    309296}
     
    317304    overflow: auto;
    318305    -webkit-transform: none;
    319     -ms-transform: none;
    320306    transform: none;
    321307}
     
    330316    overflow: hidden;
    331317    -webkit-transform: translateX(100%);
    332     -ms-transform: translateX(100%);
    333318    transform: translateX(100%);
    334319}
     
    338323#customize-theme-controls .customize-themes-panel.customize-pane-child.current-panel {
    339324    -webkit-transform: none;
    340     -ms-transform: none;
    341325    transform: none;
    342326}
     
    354338    overflow: hidden;
    355339    -webkit-transform: translateX(-100%);
    356     -ms-transform: translateX(-100%);
    357340    transform: translateX(-100%);
    358341}
     
    376359.in-themes-panel #customize-info {
    377360    -webkit-transform: translateX(100%);
    378     -ms-transform: translateX(100%);
    379361    transform: translateX(100%);
    380362}
     
    467449    text-align: left;
    468450    cursor: pointer;
    469     -webkit-transition: color .15s ease-in-out,
    470                 border-color .15s ease-in-out,
    471                 background .15s ease-in-out;
    472451    transition: color .15s ease-in-out,
    473452                border-color .15s ease-in-out,
    474453                background .15s ease-in-out;
    475     -webkit-box-sizing: content-box;
    476     -moz-box-sizing: content-box;
    477454    box-sizing: content-box;
    478455}
     
    490467    border-right: 1px solid #ddd;
    491468    border-left: 4px solid #fff;
    492     -webkit-box-shadow: none;
    493469    box-shadow: none;
    494470    cursor: pointer;
    495     -webkit-transition: color .15s ease-in-out,
    496                 border-color .15s ease-in-out,
    497                 background .15s ease-in-out;
    498471    transition: color .15s ease-in-out,
    499472                border-color .15s ease-in-out,
     
    533506    border-top-color: #0073aa;
    534507    outline: none;
    535     -webkit-box-shadow: none;
    536508    box-shadow: none;
    537509}
     
    546518    border-left-color: #0073aa;
    547519    outline: none;
    548     -webkit-box-shadow: none;
    549520    box-shadow: none;
    550521}
     
    568539.wp-full-overlay-sidebar .wp-full-overlay-header {
    569540    background-color: #eee;
    570     -webkit-transition: padding ease-in-out .18s;
    571541    transition: padding ease-in-out .18s;
    572542}
     
    736706#available-menu-items .accordion-section-content .new-content-item,
    737707.customize-control-dropdown-pages .new-content-item {
    738     width: -webkit-calc(100% - 30px);
    739708    width: calc(100% - 30px);
    740709    padding: 8px 15px;
     
    744713    background: #eee;
    745714    display: -webkit-box;
    746     display: -moz-box;
    747     display: -ms-flexbox;
    748     display: -webkit-flex;
    749715    display: flex;
    750716}
     
    759725.customize-control-dropdown-pages .new-content-item .create-item-input {
    760726    -webkit-box-flex: 10;
    761     -webkit-flex-grow: 10;
    762     -moz-box-flex: 10;
    763     -ms-flex-positive: 10;
    764     -ms-flex: 10;
    765727    flex-grow: 10;
    766728}
     
    770732    margin: 2px 0 2px 6px;
    771733    -webkit-box-flex: 10;
    772     -webkit-flex-grow: 10;
    773     -moz-box-flex: 10;
    774     -ms-flex-positive: 10;
    775     -ms-flex: 10;
    776734    flex-grow: 1;
    777735}
     
    815773#customize-controls .customize-control-widget_form.has-error .widget .widget-top,
    816774.customize-control-nav_menu_item.has-error .menu-item-bar .menu-item-handle {
    817     -webkit-box-shadow: inset 0 0 0 2px #dc3232;
    818775    box-shadow: inset 0 0 0 2px #dc3232;
    819     -webkit-transition: .15s box-shadow linear;
    820776    transition: .15s box-shadow linear;
    821777}
     
    987943    cursor: default;
    988944    border: 1px dashed #b4b9be;
    989     -webkit-box-sizing: border-box;
    990     -moz-box-sizing: border-box;
    991945    box-sizing: border-box;
    992946    padding: 9px 0;
     
    1040994    top: 0; left: 0; bottom: 0; right: 0;
    1041995    border: 4px solid #00a0d2;
    1042     -webkit-border-radius: 2px;
    1043996    border-radius: 2px;
    1044997}
     
    10781031.customize-control-header .random.placeholder {
    10791032    cursor: pointer;
    1080     -webkit-border-radius: 2px;
    10811033    border-radius: 2px;
    10821034    height: 40px;
     
    11221074.customize-control-header .choice:focus {
    11231075    outline: none;
    1124     -webkit-box-shadow:
    1125         0 0 0 1px #5b9dd9,
    1126         0 0 3px 1px rgba(30, 140, 190, .8);
    11271076    box-shadow:
    11281077        0 0 0 1px #5b9dd9,
     
    11791128    border-right: 0;
    11801129    border-left: 0;
    1181     height: -webkit-calc( 100vh - 185px );
    11821130    height: calc( 100vh - 185px );
    11831131    resize: none;
     
    11861134    margin-left: -12px;
    11871135    width: 299px;
    1188     width: -webkit-calc( 100% + 24px );
    11891136    width: calc( 100% + 24px );
    11901137    margin-bottom: -12px;
     
    11961143    }
    11971144    .customize-section-description-container + #customize-control-custom_css:last-child textarea {
    1198         height: -webkit-calc( 100vh - 140px );
    11991145        height: calc( 100vh - 140px );
    12001146    }
     
    12761222    padding: 0 8px;
    12771223    background: #f1f1f1;
    1278     -webkit-box-sizing: border-box;
    1279     -moz-box-sizing: border-box;
    12801224    box-sizing: border-box;
    12811225}
     
    14061350    max-width: 700px;
    14071351    min-width: 0;
    1408     -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);
    14091352    box-shadow: 0 1px 3px rgba(0,0,0,0.13);
    14101353}
     
    14371380    float: right;
    14381381    margin-left: 10px;
    1439     -webkit-transition: all 0.2s;
    14401382    transition: all 0.2s;
    14411383    -webkit-user-select: none;
     
    14631405    font: normal 20px/1 dashicons;
    14641406    vertical-align: middle;
    1465     -webkit-transition: all 0.2s;
    14661407    transition: all 0.2s;
    14671408    -webkit-font-smoothing: antialiased;
     
    15081449    background: transparent;
    15091450    border: none;
    1510     -webkit-box-shadow: none;
    15111451    box-shadow: none;
    15121452}
     
    15751515    border-color: #929793;
    15761516    color: #32373c;
    1577     -webkit-box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
    15781517    box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
    15791518}
     
    15831522#accordion-section-add_menu .add-new-menu-item.open:before {
    15841523    -webkit-transform: rotate(45deg);
    1585     -ms-transform: rotate(45deg);
    15861524    transform: rotate(45deg);
    15871525}
     
    16001538    z-index: 4;
    16011539    background: #eee;
    1602     -webkit-transition: left .18s;
    16031540    transition: left .18s;
    16041541    border-right: 1px solid #ddd;
     
    16351572#available-menu-items-search .accordion-section-title {
    16361573    padding: 13px 15px;
    1637     -webkit-box-sizing: border-box;
    1638     -moz-box-sizing: border-box;
    16391574    box-sizing: border-box;
    16401575}
     
    17111646#available-widgets-filter .clear-results:focus,
    17121647#available-menu-items-search .clear-results:focus {
    1713     -webkit-box-shadow:
    1714         0 0 0 1px #5b9dd9,
    1715         0 0 2px 1px rgba(30, 140, 190, .8);
    17161648    box-shadow:
    17171649        0 0 0 1px #5b9dd9,
     
    17451677    border: none;
    17461678    background: transparent;
    1747     -webkit-box-shadow: none;
    17481679    box-shadow: none;
    17491680}
     
    17561687    border-bottom: 1px solid #ddd;
    17571688    border-left: 4px solid #fff;
    1758     -webkit-transition: .15s color ease-in-out,
    1759                 .15s background-color ease-in-out,
    1760                 .15s border-color ease-in-out;
    17611689    transition: .15s color ease-in-out,
    17621690                .15s background-color ease-in-out,
     
    18391767        color: #555d66;
    18401768        cursor: pointer;
    1841         -webkit-transition: color .1s ease-in-out, background .1s ease-in-out;
    18421769        transition: color .1s ease-in-out, background .1s ease-in-out;
    18431770    }
  • trunk/src/wp-admin/css/customize-nav-menus.css

    r40480 r41062  
    3131.wp-customizer .menu-item-settings,
    3232.wp-customizer .menu-item-settings .description-thin {
    33     -webkit-box-sizing: border-box;
    34     -moz-box-sizing: border-box;
    3533    box-sizing: border-box;
    3634}
     
    146144    height: 38px;
    147145    margin-right: 0 !important;
    148     -webkit-box-shadow: none;
    149146    box-shadow: none;
    150147    outline: none;
     
    250247.customize-screen-options-toggle:focus:before,
    251248#customize-controls .customize-info .customize-help-toggle:focus:before {
    252     -webkit-border-radius: 100%;
    253249    border-radius: 100%;
    254250}
     
    284280    padding: 1px 2px 1px 0px;
    285281    speak: none;
    286     -webkit-border-radius: 50%;
    287282    border-radius: 50%;
    288283    color: #72777c;
     
    389384    margin-top: 0;
    390385    margin-bottom: 1px;
    391     max-width: -webkit-calc(100% - 2px);
    392386    max-width: calc(100% - 2px);
    393387    float: left;
     
    433427    top: 9px;
    434428    left: 5px;
    435     -webkit-border-radius: 50%;
    436429    border-radius: 50%;
    437430    font: normal 20px/1 dashicons;
     
    446439.menu-item-bar .item-delete:hover,
    447440.menu-item-bar .item-delete:focus {
    448     -webkit-box-shadow: none;
    449441    box-shadow: none;
    450442    outline: none;
     
    477469    border-right: none;
    478470    background: #fff;
    479     -webkit-transition: background-color 0.15s;
    480471    transition: background-color 0.15s;
    481472    /* Reset the value inherited from the base .accordion-section-title style. Ticket #37589. */
     
    520511    top: 5px;
    521512    right: 5px;
    522     -webkit-box-shadow: none;
    523513    box-shadow: none;
    524514    outline: none;
     
    591581
    592582#available-menu-items .menu-item-handle {
    593     -webkit-box-shadow: none;
    594583    box-shadow: none;
    595584    margin-top: -1px;
     
    612601    width: 30px;
    613602    height: 38px;
    614     -webkit-box-shadow: none;
    615603    box-shadow: none;
    616604    outline: none;
     
    630618    display: inline-block;
    631619    height: 20px;
    632     -webkit-border-radius: 50%;
    633620    border-radius: 50%;
    634621    font: normal 20px/1.05 dashicons; /* line height is to account for the dashicon's vertical alignment */
     
    668655    width: 100%;
    669656    padding: 1px 15px 15px;
    670     -webkit-box-sizing: border-box;
    671     -moz-box-sizing: border-box;
    672657    box-sizing: border-box;
    673658}
     
    696681
    697682#customize-preview {
    698     -webkit-transition: all 0.2s;
    699683    transition: all 0.2s;
    700684}
     
    741725
    742726.added-menu-item .menu-item-handle {
    743     -webkit-transition-property: opacity, background, color;
    744727    transition-property: opacity, background, color;
    745     -webkit-transition-duration: 1.25s;
    746728    transition-duration: 1.25s;
    747     -webkit-transition-timing-function: cubic-bezier( .25, -2.5, .75, 8 );
    748729    transition-timing-function: cubic-bezier( .25, -2.5, .75, 8 ); /* Replacement for .hide().fadeIn('slow') in JS to add emphasis when it's loaded. */
    749730}
     
    843824.menu-item-bar .item-delete:focus:before,
    844825#available-menu-items .item-add:focus:before {
    845     -webkit-box-shadow:
    846         0 0 0 1px #5b9dd9,
    847         0 0 2px 1px rgba(30, 140, 190, .8);
    848826    box-shadow:
    849827        0 0 0 1px #5b9dd9,
  • trunk/src/wp-admin/css/customize-widgets.css

    r40631 r41062  
    2222.customize-control-widget_form .widget-top {
    2323    background: #fff;
    24     -webkit-transition: opacity 0.5s;
    2524    transition: opacity 0.5s;
    2625}
     
    7776
    7877.customize-control-widget_form.wide-widget-control .widget-top {
    79     -webkit-transition: background-color 0.4s;
    8078    transition: background-color 0.4s;
    8179}
     
    115113.customize-control-widget_form.highlighted {
    116114    outline: none;
    117     -webkit-box-shadow: 0 0 2px rgba(30,140,190,0.8);
    118115    box-shadow: 0 0 2px rgba(30,140,190,0.8);
    119116    position: relative;
     
    240237
    241238.ios #available-widgets {
    242     -webkit-transition: left 0s;
    243239    transition: left 0s;
    244240}
     
    267263
    268264#customize-preview {
    269     -webkit-transition: all 0.2s;
    270265    transition: all 0.2s;
    271266}
     
    306301    font: normal 20px/1 dashicons;
    307302    text-align: center;
    308     -webkit-box-sizing: border-box;
    309     -moz-box-sizing: border-box;
    310303    box-sizing: border-box;
    311304    -webkit-font-smoothing: antialiased;
     
    446439
    447440    .widget-top {
    448         -webkit-box-shadow: none;
    449441        box-shadow: none;
    450442        margin-top: -1px;
  • trunk/src/wp-admin/css/dashboard.css

    r40794 r41062  
    105105    padding: 23px 10px 0;
    106106    border: 1px solid #e5e5e5;
    107     -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    108107    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    109108    background: #fff;
     
    155154    top: 8px;
    156155    left: 0;
    157     -webkit-transition: all .1s ease-in-out;
    158156    transition: all .1s ease-in-out;
    159157}
     
    618616#dashboard_quick_press input,
    619617#dashboard_quick_press textarea {
    620     -webkit-box-sizing: border-box;
    621     -moz-box-sizing: border-box;
    622618    box-sizing: border-box;
    623619    margin: 0;
     
    953949#activity-widget #the-comment-list .comment,
    954950#activity-widget #the-comment-list .pingback {
    955     -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06);
    956951    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.06);
    957952}
     
    10861081    border-color: #edc048;
    10871082    color: #fff;
    1088     -webkit-box-shadow: none;
    10891083    box-shadow: none;
    10901084}
     
    10991093    background: transparent none;
    11001094    color: #fff;
    1101     -webkit-box-shadow: none;
    11021095    box-shadow: none;
    11031096}
  • trunk/src/wp-admin/css/deprecated-media.css

    r37740 r41062  
    3232    background-color: #f9f9f9;
    3333    text-decoration: none;
    34     -webkit-transition: none;
    3534    transition: none;
    3635}
     
    395394    .image-align-none-label {
    396395        background-image: url(../images/align-none-2x.png?ver=20120916);
    397         -webkit-background-size: 21px 15px;
    398396        background-size: 21px 15px;
    399397    }
     
    401399    .image-align-left-label {
    402400        background-image: url(../images/align-left-2x.png?ver=20120916);
    403         -webkit-background-size: 22px 15px;
    404401        background-size: 22px 15px;
    405402    }
     
    407404    .image-align-center-label {
    408405        background-image: url(../images/align-center-2x.png?ver=20120916);
    409         -webkit-background-size: 21px 15px;
    410406        background-size: 21px 15px;
    411407    }
     
    413409    .image-align-right-label {
    414410        background-image: url(../images/align-right-2x.png?ver=20120916);
    415         -webkit-background-size: 22px 15px;
    416411        background-size: 22px 15px;
    417412    }
  • trunk/src/wp-admin/css/edit.css

    r40655 r41062  
    155155    min-width: 255px;
    156156    border: 1px solid #e5e5e5;
    157     -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    158157    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    159158    background: #fff;
     
    280279    width: auto;
    281280    vertical-align: top;
    282     background-image: -webkit-linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4), -webkit-linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4);
    283281    background-image: linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4), linear-gradient(45deg, #c4c4c4 25%, transparent 25%, transparent 75%, #c4c4c4 75%, #c4c4c4);
    284282    background-position: 0 0, 10px 10px;
    285     -webkit-background-size: 20px 20px;
    286283    background-size: 20px 20px;
    287284}
     
    316313    border-top: none;
    317314    background-color: #f7f7f7;
    318     -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    319315    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    320316    z-index: 999;
     
    369365
    370366.wp-editor-expand #wp-content-editor-container {
    371     -webkit-box-shadow: none;
    372367    box-shadow: none;
    373368    margin-top: -1px;
     
    512507    margin-left: -225px;
    513508    background: #fff;
    514     -webkit-box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
    515509    box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
    516510    line-height: 1.5;
     
    796790.post-format-icon:before {
    797791    color: #ddd;
    798     -webkit-transition: all .1s ease-in-out;
    799792    transition: all .1s ease-in-out;
    800793}
     
    12311224.focus-on #screen-meta {
    12321225    opacity: 0;
    1233     -webkit-transition-duration: 0.6s;
    12341226    transition-duration: 0.6s;
    1235     -webkit-transition-property: opacity;
    12361227    transition-property: opacity;
    1237     -webkit-transition-timing-function: ease-in-out;
    12381228    transition-timing-function: ease-in-out;
    12391229}
     
    12551245.focus-off #screen-meta {
    12561246    opacity: 1;
    1257     -webkit-transition-duration: 0.2s;
    12581247    transition-duration: 0.2s;
    1259     -webkit-transition-property: opacity;
    12601248    transition-property: opacity;
    1261     -webkit-transition-timing-function: ease-in-out;
    12621249    transition-timing-function: ease-in-out;
    12631250}
     
    12691256.focus-on #adminmenuback,
    12701257.focus-on #adminmenuwrap {
    1271     -webkit-transition-duration: 0.6s;
    12721258    transition-duration: 0.6s;
    1273     -webkit-transition-property: -webkit-transform;
    12741259    transition-property: -webkit-transform;
    12751260    transition-property: transform;
    12761261    transition-property: transform, -webkit-transform;
    1277     -webkit-transition-timing-function: ease-in-out;
    12781262    transition-timing-function: ease-in-out;
    12791263}
     
    12821266.focus-on #adminmenuwrap {
    12831267    -webkit-transform: translateX( -100% );
    1284     -ms-transform: translateX( -100% );
    12851268    transform: translateX( -100% );
    12861269}
     
    12891272.focus-off #adminmenuwrap {
    12901273    -webkit-transform: translateX( 0 );
    1291     -ms-transform: translateX( 0 );
    12921274    transform: translateX( 0 );
    1293     -webkit-transition-duration: 0.2s;
    12941275    transition-duration: 0.2s;
    1295     -webkit-transition-property: -webkit-transform;
    12961276    transition-property: -webkit-transform;
    12971277    transition-property: transform;
    12981278    transition-property: transform, -webkit-transform;
    1299     -webkit-transition-timing-function: ease-in-out;
    13001279    transition-timing-function: ease-in-out;
    13011280}
     
    13131292    #post-body .wp_themeSkin .mceStatusbar a.mceResize {
    13141293        background: transparent url(../images/resize-2x.gif) no-repeat scroll right bottom;
    1315         -webkit-background-size: 11px 11px;
    13161294        background-size: 11px 11px;
    13171295    }
  • trunk/src/wp-admin/css/forms.css

    r40823 r41062  
    22input,
    33textarea {
    4     -webkit-box-sizing: border-box;
    5     -moz-box-sizing: border-box;
    64    box-sizing: border-box;
    75}
     
    2725textarea {
    2826    border: 1px solid #ddd;
    29     -webkit-box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 );
    3027    box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 );
    3128    background-color: #fff;
    3229    color: #32373c;
    3330    outline: none;
    34     -webkit-transition: 0.05s border-color ease-in-out;
    3531    transition: 0.05s border-color ease-in-out;
    3632}
     
    5652textarea:focus {
    5753    border-color: #5b9dd9;
    58     -webkit-box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
    5954    box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
    6055}
     
    9085    min-width: 16px;
    9186    -webkit-appearance: none;
    92     -webkit-box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.1 );
    9387    box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.1 );
    94     -webkit-transition: .05s border-color ease-in-out;
    9588    transition: .05s border-color ease-in-out;
    9689}
     
    120113
    121114input[type="radio"] {
    122     -webkit-border-radius: 50%;
    123115    border-radius: 50%;
    124116    margin-right: 4px;
     
    147139    content: "\2022";
    148140    text-indent: -9999px;
    149     -webkit-border-radius: 50px;
    150141    border-radius: 50px;
    151142    font-size: 24px;
     
    192183    font-size: 14px;
    193184    padding: 3px 5px;
    194     -webkit-border-radius: 0;
    195185    border-radius: 0; /* Reset mobile webkit's default element styling */
    196186}
     
    250240.form-invalid select, .form-invalid select:focus {
    251241    border-color: #dc3232 !important;
    252     -webkit-box-shadow: 0 0 2px rgba( 204, 0, 0, 0.8 );
    253     box-shadow: 0 0 2px rgba( 204, 0, 0, 0.8 );
     242 box-shadow: 0 0 2px rgba( 204, 0, 0, 0.8 );
    254243}
    255244
     
    287276    background: rgba( 255, 255, 255, 0.5 );
    288277    border-color: rgba( 222, 222, 222, 0.75 );
    289     -webkit-box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.04 );
    290278    box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.04 );
    291279    color: rgba( 51, 51, 51, 0.5 );
     
    297285input[type="range"].disabled {
    298286    background: none;
    299     -webkit-box-shadow: none;
    300287    box-shadow: none;
    301288    cursor: default;
     
    341328    padding: 1.5em 0;
    342329    margin: 5px 0;
    343     -webkit-border-bottom-left-radius: 3px;
    344330    border-bottom-left-radius: 3px;
    345     -webkit-border-bottom-right-radius: 3px;
    346331    border-bottom-right-radius: 3px;
    347332    border: none;
     
    467452    text-align: center;
    468453    width: 25em;
    469     -webkit-box-sizing: border-box;
    470     -moz-box-sizing: border-box;
    471454    box-sizing: border-box;
    472455    opacity: 0;
     
    585568    z-index: 10000;
    586569    border: 1px solid #5b9dd9;
    587     -webkit-box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 );
    588570    box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 );
    589571    background-color: #fff;
     
    733715    width: 24%;
    734716    padding: 5px 15px 15px;
    735     -webkit-box-sizing: border-box;
    736     -moz-box-sizing: border-box;
    737717    box-sizing: border-box;
    738718    margin-bottom: 3px;
     
    791771    max-width: 520px;
    792772    border: 1px solid #e5e5e5;
    793     -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    794773    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    795774    background: #fff;
     
    827806    color: #32373c;
    828807    background: #e5e5e5;
    829     -webkit-border-radius: 5px;
    830808    border-radius: 5px;
    831809    border: 1px solid #b4b9be;
     
    850828    background: transparent;
    851829    -webkit-transform: skew(20deg) rotate(6deg);
    852     -ms-transform: skew(20deg) rotate(6deg);
    853830    transform: skew(20deg) rotate(6deg);
    854     -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
    855831    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
    856832}
     
    858834.pressthis-bookmarklet:hover:after {
    859835    -webkit-transform: skew(20deg) rotate(9deg);
    860     -ms-transform: skew(20deg) rotate(9deg);
    861836    transform: skew(20deg) rotate(9deg);
    862     -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
    863837    box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
    864838}
     
    11771151
    11781152    .form-table {
    1179         -webkit-box-sizing: border-box;
    1180         -moz-box-sizing: border-box;
    11811153        box-sizing: border-box;
    11821154    }
     
    12251197        display: block;
    12261198        max-width: none;
    1227         -webkit-box-sizing: border-box;
    1228         -moz-box-sizing: border-box;
    12291199        box-sizing: border-box;
    12301200    }
     
    12541224    #pass-strength-result {
    12551225        width: 100%;
    1256         -webkit-box-sizing: border-box;
    1257         -moz-box-sizing: border-box;
    12581226        box-sizing: border-box;
    12591227        padding: 8px;
     
    13481316        background: transparent;
    13491317        border: none;
    1350         -webkit-box-shadow: none;
    13511318        box-shadow: none;
    13521319        line-height: 2;
  • trunk/src/wp-admin/css/install.css

    r38672 r41062  
    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}
     
    2726a:focus {
    2827    color: #124964;
    29     -webkit-box-shadow:
    30         0 0 0 1px #5b9dd9,
    31         0 0 2px 1px rgba(30, 140, 190, .8);
    3228    box-shadow:
    3329        0 0 0 1px #5b9dd9,
     
    9490    background-image: url(../images/w-logo-blue.png?ver=20131202);
    9591    background-image: none, url(../images/wordpress-logo.svg?ver=20131107);
    96     -webkit-background-size: 84px;
    9792    background-size: 84px;
    9893    background-position: center top;
     
    114109
    115110#logo a:focus {
    116     -webkit-box-shadow: none;
    117111    box-shadow: none;
    118112}
     
    135129    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    136130    width: 100%;
    137     -webkit-box-sizing: border-box;
    138     -moz-box-sizing: border-box;
    139131    box-sizing: border-box;
    140132}
     
    176168    padding: 3px 5px;
    177169    border: 1px solid #ddd;
    178     -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
    179170    box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
    180171}
     
    238229    text-align: center;
    239230    width: 218px;
    240     -webkit-box-sizing: border-box;
    241     -moz-box-sizing: border-box;
    242231    box-sizing: border-box;
    243232    opacity: 0;
     
    387376        display: block;
    388377        max-width: none;
    389         -webkit-box-sizing: border-box;
    390         -moz-box-sizing: border-box;
    391378        box-sizing: border-box;
    392379    }
     
    428415.spinner {
    429416    background: url(../images/spinner.gif) no-repeat;
    430     -webkit-background-size: 20px 20px;
    431417    background-size: 20px 20px;
    432418    visibility: hidden;
  • trunk/src/wp-admin/css/list-tables.css

    r38965 r41062  
    5050.column-comments .comment-count-no-comments,
    5151.column-comments .comment-count-approved {
    52     -webkit-box-sizing: border-box;
    53     -moz-box-sizing: border-box;
    5452    box-sizing: border-box;
    5553    display: block;
     
    5755    min-width: 24px;
    5856    height: 2em;
    59     -webkit-border-radius: 5px;
    6057    border-radius: 5px;
    6158    background-color: #72777c;
     
    109106    height: 17px;
    110107    border: 2px solid #fff;
    111     -webkit-border-radius: 11px;
    112108    border-radius: 11px;
    113109    background: #ca4a1f;
     
    209205#replycontent {
    210206    height: 120px;
    211     -webkit-box-shadow: none;
    212207    box-shadow: none;
    213208}
     
    251246#the-comment-list th,
    252247#the-comment-list td {
    253     -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    254248    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    255249}
     
    257251#the-comment-list tr:last-child th,
    258252#the-comment-list tr:last-child td {
    259     -webkit-box-shadow: none;
    260253    box-shadow: none;
    261254}
     
    385378/* @todo: pick a consistent list table selector */
    386379.wp-list-table a {
    387     -webkit-transition: none;
    388380    transition: none;
    389381}
     
    392384#the-list tr:last-child th {
    393385    border-bottom: none !important;
    394     -webkit-box-shadow: none;
    395386    box-shadow: none;
    396387}
     
    512503
    513504.wp-list-table .toggle-row:focus:before {
    514     -webkit-box-shadow:
    515         0 0 0 1px #5b9dd9,
    516         0 0 2px 1px rgba(30, 140, 190, .8);
    517505    box-shadow:
    518506        0 0 0 1px #5b9dd9,
     
    525513
    526514.wp-list-table .toggle-row:active {
    527     -webkit-box-shadow: none;
    528515    box-shadow: none;
    529516}
     
    533520    top: -5px;
    534521    left: 10px;
    535     -webkit-border-radius: 50%;
    536522    border-radius: 50%;
    537523    display: block;
     
    590576
    591577tr.locked-info, tr.wp-locked .locked-info {
    592     -webkit-transition: height 1s, opacity 0.5s;
    593578    transition: height 1s, opacity 0.5s;
    594579}
     
    716701    color: #fff;
    717702    background: #00a0d2;
    718     -webkit-box-shadow: none;
    719703    box-shadow: none;
    720704    outline: none; /* IE8 */
     
    12781262.upgrade .plugins td,
    12791263.upgrade .plugins th {
    1280     -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
    12811264    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
    12821265}
     
    12871270.plugins tr.active + tr.inactive td {
    12881271    border-top: 1px solid rgba(0,0,0,0.03);
    1289     -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1;
    12901272    box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1;
    12911273}
     
    13011283.plugins tr.active + tr.inactive.updated th,
    13021284.plugins tr.active + tr.inactive.updated td {
    1303     -webkit-box-shadow: none;
    13041285    box-shadow: none;
    13051286}
     
    13441325
    13451326.plugins .plugin-update-tr .plugin-update {
    1346     -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
    13471327    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
    13481328    overflow: hidden; /* clearfix */
     
    14301410    margin: 0 8px 16px;
    14311411    width: 48.5%;
    1432     width: -webkit-calc( 50% - 8px );
    14331412    width: calc( 50% - 8px );
    14341413    background-color: #fff;
    14351414    border: 1px solid #ddd;
    1436     -webkit-box-sizing: border-box;
    1437     -moz-box-sizing: border-box;
    14381415    box-sizing: border-box;
    14391416}
     
    14511428    .plugin-card {
    14521429        width: 30%;
    1453         width: -webkit-calc( 33.1% - 8px );
    14541430        width: calc( 33.1% - 8px );
    14551431    }
     
    15351511    margin: 0;
    15361512    padding-left: 16px;
    1537     -webkit-box-shadow: 0 -1px 0 #ddd;
    15381513    box-shadow: 0 -1px 0 #ddd;
    15391514}
     
    15651540    clear: right;
    15661541    width: 65%;
    1567     width: -webkit-calc( 100% - 180px );
    15681542    width: calc( 100% - 180px );
    15691543}
     
    18381812
    18391813    #the-comment-list .is-expanded td {
    1840         -webkit-box-shadow: none;
    18411814        box-shadow: none;
    18421815    }
    18431816
    18441817    #the-comment-list .is-expanded td:last-child {
    1845         -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    18461818        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    18471819    }
     
    18921864        padding: 0;
    18931865        border: none;
    1894         -webkit-border-radius: 0;
    18951866        border-radius: 0;
    18961867        background: none;
     
    19421913        width: 100%;
    19431914        max-width: none;
    1944         -webkit-box-sizing: border-box;
    1945         -moz-box-sizing: border-box;
    19461915        box-sizing: border-box;
    19471916    }
     
    20562025    .plugins #the-list .update td,
    20572026    .wp-list-table.plugins #the-list .theme-title {
    2058         -webkit-box-shadow: none;
    20592027        box-shadow: none;
    20602028        border-top: none;
     
    20722040    .plugins tr.active + tr.inactive td.column-description,
    20732041    .plugins .plugin-update-tr:before {
    2074         -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    20752042        box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    20762043    }
     
    21372104
    21382105    table.plugin-install #the-list td {
    2139         -webkit-box-shadow: none;
    21402106        box-shadow: none;
    21412107    }
     
    21432109    table.plugin-install #the-list tr {
    21442110        display: block;
    2145         -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
    21462111        box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
    21472112    }
  • trunk/src/wp-admin/css/login.css

    r40778 r41062  
    2020a {
    2121    color: #0073aa;
    22     -webkit-transition-property: border, background, color;
    2322    transition-property: border, background, color;
    24     -webkit-transition-duration: .05s;
    2523    transition-duration: .05s;
    26     -webkit-transition-timing-function: ease-in-out;
    2724    transition-timing-function: ease-in-out;
    2825}
     
    3936a:focus {
    4037    color: #124964;
    41     -webkit-box-shadow:
    42         0 0 0 1px #5b9dd9,
    43         0 0 2px 1px rgba(30, 140, 190, .8);
    4438    box-shadow:
    4539        0 0 0 1px #5b9dd9,
     
    6256    margin-bottom: 20px;
    6357    background-color: #fff;
    64     -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
    6558    box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
    6659}
     
    8881    overflow: hidden;
    8982    background: #fff;
    90     -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.13);
    9183    box-shadow: 0 1px 3px rgba(0,0,0,0.13);
    9284}
     
    128120    background-image: url(../images/w-logo-blue.png?ver=20131202);
    129121    background-image: none, url(../images/wordpress-logo.svg?ver=20131107);
    130     -webkit-background-size: 84px;
    131122    background-size: 84px;
    132123    background-position: center top;
     
    205196
    206197.login-action-rp input[type="text"] {
    207     -webkit-box-shadow: none;
    208198    box-shadow: none;
    209199    margin: 0;
  • trunk/src/wp-admin/css/media.css

    r40570 r41062  
    125125.media-upload-form .media-item,
    126126.media-upload-form .media-item .error {
    127     -webkit-box-shadow: 0 1px 0 #ddd;
    128127    box-shadow: 0 1px 0 #ddd;
    129128}
     
    164163    padding: 0;
    165164    overflow: hidden;
    166     -webkit-border-radius: 22px;
    167165    border-radius: 22px;
    168166    background: #ddd;
    169     -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    170167    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
    171168}
     
    176173    height: 100%;
    177174    margin-top: -22px;
    178     -webkit-border-radius: 22px;
    179175    border-radius: 22px;
    180176    background-color: #0073aa;
    181     -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
    182177    box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
    183178}
     
    229224.find-box {
    230225    background-color: #fff;
    231     -webkit-box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
    232226    box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
    233227    width: 600px;
     
    264258    overflow-y: scroll;
    265259    width: 100%;
    266     -webkit-box-sizing: border-box;
    267     -moz-box-sizing: border-box;
    268260    box-sizing: border-box;
    269261}
     
    321313#find-posts-close:focus {
    322314    outline: none;
    323     -webkit-box-shadow:
    324         0 0 0 1px #5b9dd9,
    325         0 0 2px 1px rgba(30, 140, 190, .8);
    326315    box-shadow:
    327316        0 0 0 1px #5b9dd9,
     
    473462    padding: 0 16px;
    474463    border-left: 4px solid #dd3d36;
    475     -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
    476464    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
    477465    background-color: #fff;
     
    492480    padding: 4px 0 0;
    493481    border: none;
    494     -webkit-box-shadow: none;
    495482    box-shadow: none;
    496483    background: none;
     
    540527.media-frame.mode-grid .selected.attachment:focus,
    541528.media-frame.mode-grid .attachment.details:focus {
    542     -webkit-box-shadow:
    543         inset 0 0 2px 3px #f1f1f1,
    544         inset 0 0 0 7px #5b9dd9;
    545529    box-shadow:
    546530        inset 0 0 2px 3px #f1f1f1,
     
    550534
    551535.media-frame.mode-grid .selected.attachment {
    552     -webkit-box-shadow:
    553         inset 0 0 0 5px #f1f1f1,
    554         inset 0 0 0 7px #ccc;
    555536    box-shadow:
    556537        inset 0 0 0 5px #f1f1f1,
     
    559540
    560541.media-frame.mode-grid .attachment.details {
    561     -webkit-box-shadow:
    562         inset 0 0 0 3px #f1f1f1,
    563         inset 0 0 0 7px #1e8cbe;
    564542    box-shadow:
    565543        inset 0 0 0 3px #f1f1f1,
     
    664642    border: 0;
    665643    border-left: 1px solid #ddd;
    666     -webkit-transition: color .1s ease-in-out, background .1s ease-in-out;
    667644    transition: color .1s ease-in-out, background .1s ease-in-out;
    668645}
     
    703680    color: #000;
    704681    outline: none;
    705     -webkit-box-shadow: none;
    706682    box-shadow: none;
    707683}
     
    750726    right: 0;
    751727    left: 0;
    752     -webkit-box-shadow: inset 0px 4px 4px -4px rgba(0, 0, 0, 0.1);
    753728    box-shadow: inset 0px 4px 4px -4px rgba(0, 0, 0, 0.1);
    754729}
     
    761736
    762737.edit-attachment-frame .attachment-media-view .thumbnail {
    763     -webkit-box-sizing: border-box;
    764     -moz-box-sizing: border-box;
    765738    box-sizing: border-box;
    766739    padding: 16px;
     
    773746    max-width: 100%;
    774747    max-height: 90%;
    775     max-height: -webkit-calc( 100% - 42px );
    776748    max-height: calc( 100% - 42px ); /* leave space for actions underneath */
    777749}
     
    793765.edit-attachment-frame .attachment-info {
    794766    overflow: auto;
    795     -webkit-box-sizing: border-box;
    796     -moz-box-sizing: border-box;
    797767    box-sizing: border-box;
    798768    margin-bottom: 0;
     
    800770    width: 35%;
    801771    height: 100%;
    802     -webkit-box-shadow: inset 0px 4px 4px -4px rgba(0, 0, 0, 0.1);
    803772    box-shadow: inset 0px 4px 4px -4px rgba(0, 0, 0, 0.1);
    804773    border-bottom: 0;
     
    916885    margin: -10px 0 0 -10px;
    917886    background: transparent url(../images/spinner.gif) no-repeat center;
    918     -webkit-background-size: 20px 20px;
    919887    background-size: 20px 20px;
    920888    -webkit-transform: translateZ(0);
     
    10941062    line-height: 1;
    10951063    cursor: pointer;
    1096     -webkit-box-sizing: content-box;
    1097     -moz-box-sizing: content-box;
    10981064    box-sizing: content-box;
    1099     -webkit-box-shadow: none;
    11001065    box-shadow: none;
    11011066}
     
    11051070    border-color: #5b9dd9;
    11061071    outline: none;
    1107     -webkit-box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    11081072    box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    11091073}
  • trunk/src/wp-admin/css/nav-menus.css

    r40052 r41062  
    607607    margin-left: 4px;
    608608    width: 20px;
    609     -webkit-border-radius: 50%;
    610609    border-radius: 50%;
    611610    text-indent: -1px; /* account for the dashicon alignment */
     
    621620
    622621.nav-menus-php .item-edit:focus {
    623     -webkit-box-shadow: none;
    624622    box-shadow: none;
    625623}
    626624
    627625.nav-menus-php .item-edit:focus:before {
    628     -webkit-box-shadow:
    629         0 0 0 1px #5b9dd9,
    630         0 0 2px 1px rgba(30, 140, 190, .8);
    631626    box-shadow:
    632627        0 0 0 1px #5b9dd9,
     
    647642    border: 1px solid #e5e5e5;
    648643    border-top: none;
    649     -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    650644    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    651645}
  • trunk/src/wp-admin/css/press-this.css

    r40356 r41062  
    2222*:before,
    2323*:after {
    24     -webkit-box-sizing: border-box;
    25     -moz-box-sizing: border-box;
    2624    box-sizing: border-box;
    2725}
     
    132130
    133131hr {
    134     -webkit-box-sizing: content-box;
    135     -moz-box-sizing: content-box;
    136132    box-sizing: content-box;
    137133    height: 0;
     
    194190input[type="checkbox"],
    195191input[type="radio"] {
    196     -webkit-box-sizing: border-box;
    197     -moz-box-sizing: border-box;
    198192    box-sizing: border-box;
    199193    padding: 0;
     
    207201input[type="search"] {
    208202    -webkit-appearance: textfield;
    209     -webkit-box-sizing: content-box;
    210     -moz-box-sizing: content-box;
    211203    box-sizing: content-box;
    212204}
     
    332324    border-width: 1px;
    333325    border-style: solid;
    334     -webkit-border-radius: 3px;
    335326    border-radius: 3px;
    336327    font-size: 13px;
     
    360351    padding: 8px;
    361352    list-style: none;
    362     -webkit-box-shadow: 1px 0 4px rgba( 0, 0, 0, 0.15 );
    363353    box-shadow: 1px 0 4px rgba( 0, 0, 0, 0.15 );
    364354}
     
    401391    text-decoration: none;
    402392    outline: none;
    403     -webkit-transition: none;
    404393    transition: none;
    405394}
     
    416405.split-button-primary,
    417406.split-button-toggle {
    418     -webkit-border-radius: 0;
    419407    border-radius: 0;
    420408    display: block;
     
    431419    border-width: 1px;
    432420    border-style: solid;
    433     -webkit-box-shadow: 0 1px 0 #006799;
    434     box-shadow: 0 1px 0 #006799;
     421 box-shadow: 0 1px 0 #006799;
    435422    color: #fff;
    436423    text-shadow: 0 -1px 1px #006799,
     
    441428
    442429.split-button-primary {
    443     -webkit-border-top-left-radius: 3px;
    444430    border-top-left-radius: 3px;
    445     -webkit-border-bottom-left-radius: 3px;
    446431    border-bottom-left-radius: 3px;
    447432    border-right: 0 none;
     
    451436.split-button-toggle {
    452437    padding: 0;
    453     -webkit-border-top-right-radius: 3px;
    454438    border-top-right-radius: 3px;
    455     -webkit-border-bottom-right-radius: 3px;
    456439    border-bottom-right-radius: 3px;
    457440    border-left: 1px solid #006799;
     
    474457.split-button-toggle:focus {
    475458    outline: none;
    476     -webkit-box-shadow: 0 1px 0 #0073aa,
    477         0 0 2px 1px #33b3db;
    478459    box-shadow: 0 1px 0 #0073aa,
    479460        0 0 2px 1px #33b3db;
     
    484465    background: #0073aa;
    485466    border-color: #006799;
    486     -webkit-box-shadow: inset 0 2px 10px #006799, 0 1px 0 #0073aa;
    487     box-shadow: inset 0 2px 10px #006799, 0 1px 0 #0073aa;
     467 box-shadow: inset 0 2px 10px #006799, 0 1px 0 #0073aa;
    488468}
    489469
     
    510490[type="search"] {
    511491    -webkit-appearance: textfield;
    512     -webkit-box-sizing: content-box;
    513     -moz-box-sizing: content-box;
    514492    box-sizing: content-box;
    515493}
     
    653631    vertical-align: top;
    654632    text-align: center;
    655     -webkit-transition: color .1s ease-in 0;
    656633    transition: color .1s ease-in 0;
    657634    -webkit-font-smoothing: antialiased;
     
    670647
    671648.post-format:checked + .post-format-icon {
    672     -webkit-box-shadow: inset 6px 0 0 #00a0d2;
    673649    box-shadow: inset 6px 0 0 #00a0d2;
    674650    background: rgba(46, 162, 204, 0.1);
     
    764740    bottom: 1px;
    765741    border: 0;
    766     -webkit-border-radius: 0;
    767742    border-radius: 0;
    768743    margin: 0;
     
    770745    background: #f7f7f7;
    771746    border-left: 1px solid #f1f1f1;
    772     -webkit-box-shadow: none;
    773747    box-shadow: none;
    774748}
     
    781755    border-color: #20708e;
    782756    color: #fff;
    783     -webkit-box-shadow: none;
    784757    box-shadow: none;
    785758}
     
    842815    height: 20px;
    843816    width: 20px;
    844     -webkit-border-radius: 50%;
    845817    border-radius: 50%;
    846818    background: transparent;
     
    862834
    863835.tagchecklist .ntdelbutton:focus .remove-tag-icon:before {
    864     -webkit-box-shadow:
    865         0 0 0 1px #5b9dd9,
    866         0 0 2px 1px rgba(30, 140, 190, .8);
    867836    box-shadow:
    868837        0 0 0 1px #5b9dd9,
     
    934903    padding: 0.85714em 1.07143em;
    935904    border: 0;
    936     -webkit-border-radius: 0;
    937905    border-radius: 0;
    938906    border-bottom: 1px solid #e5e5e5;
     
    958926    color: #0073aa;
    959927    text-decoration: none;
    960     -webkit-transition: none;
    961928    transition: none;
    962929}
     
    988955    right: 0;
    989956    border: 0;
    990     -webkit-border-radius: 0;
    991957    border-radius: 0;
    992958    padding: 12px 16px;
     
    1015981    height: 34px;
    1016982    border: 0;
    1017     -webkit-border-radius: 0;
    1018983    border-radius: 0;
    1019984    border: 1px solid #e5e5e5;
    1020985    background: #fff;
    1021     -webkit-background-size: 20px 20px;
    1022986    background-size: 20px 20px;
    1023987    overflow: hidden;
     
    1033997.postform:focus {
    1034998    border-color: #0073aa;
    1035     -webkit-box-shadow: 0 0 0 3px #00a0d2;
    1036999    box-shadow: 0 0 0 3px #00a0d2;
    10371000    outline: 0;
     
    10831046
    10841047.category.selected {
    1085     -webkit-box-shadow: inset 6px 0 0 #00a0d2;
    10861048    box-shadow: inset 6px 0 0 #00a0d2;
    10871049    background: #E9F5F9;
     
    11061068    vertical-align: top;
    11071069    text-align: center;
    1108     -webkit-transition: color .1s ease-in 0;
    11091070    transition: color .1s ease-in 0;
    11101071    -webkit-font-smoothing: antialiased;
     
    11801141html {
    11811142    background: #fff;
    1182     -webkit-box-shadow: -10px 0 0 rgba(0, 0, 0, 0.3);
    11831143    box-shadow: -10px 0 0 rgba(0, 0, 0, 0.3);
    11841144}
     
    12321192    font-size: 13px;
    12331193    text-decoration: none;
    1234     -webkit-transition: none;
    12351194    transition: none;
    12361195}
     
    13391298    height: 8px;
    13401299    margin-top: -4px;
    1341     -webkit-border-radius: 50%;
    13421300    border-radius: 50%;
    13431301    background: #00a0d2;
     
    13641322@media (max-width: 900px) {
    13651323    .scan form {
    1366         -webkit-transition: opacity .3s ease-in-out;
    13671324        transition: opacity .3s ease-in-out;
    13681325    }
     
    13971354    border: 0;
    13981355    border-left: 1px solid #f1f1f1;
    1399     -webkit-border-radius: 0;
    14001356    border-radius: 0;
    14011357    color: #555;
     
    14731429    visibility: hidden;
    14741430    background: url(../images/spinner.gif) no-repeat center;
    1475     -webkit-background-size: 20px 20px;
    14761431    background-size: 20px 20px;
    14771432    opacity: 0.7;
     
    15271482.post-title-placeholder:focus {
    15281483    outline: 0;
    1529     -webkit-box-shadow: inset 0px -3px 0 #00a0d2;
    15301484    box-shadow: inset 0px -3px 0 #00a0d2;
    15311485    border-color: #00a0d2;
     
    16371591.is-embed:focus {
    16381592    outline: 0;
    1639     -webkit-box-shadow: inset 0 0 0 3px #00a0d2;
    16401593    box-shadow: inset 0 0 0 3px #00a0d2;
    16411594}
     
    16491602    background-position: center;
    16501603    background-repeat: no-repeat;
    1651     -webkit-background-size: cover;
    16521604    background-size: cover;
    16531605    background-color: #d8d8d8;
     
    16731625    font-weight: 400;
    16741626    font-style: normal;
    1675     -webkit-transition: color .1s ease-in 0;
    16761627    transition: color .1s ease-in 0;
    16771628    -webkit-font-smoothing: antialiased;
     
    17641715    .press-this-actions {
    17651716        -webkit-transform: translateY(0);
    1766         -ms-transform: translateY(0);
    17671717        transform: translateY(0);
    1768         -webkit-transition: -webkit-transform .3s ease-in-out;
    17691718        transition: -webkit-transform .3s ease-in-out;
    17701719        transition: transform .3s ease-in-out;
     
    17731722    .press-this-actions.is-hidden {
    17741723        -webkit-transform: translateY(100%);
    1775         -ms-transform: translateY(100%);
    17761724        transform: translateY(100%);
    17771725    }
     
    17961744    padding: 0;
    17971745    border: 0;
    1798     -webkit-border-radius: 0;
    17991746    border-radius: 0;
    18001747    background: none;
    1801     -webkit-box-shadow: none;
    18021748    box-shadow: none;
    18031749    overflow: hidden;
     
    18141760    outline: 0;
    18151761    color: #00a0d2;
    1816     -webkit-box-shadow:
    1817         0 0 0 1px #5b9dd9,
    1818         0 0 2px 1px rgba(30, 140, 190, .8);
    18191762    box-shadow:
    18201763        0 0 0 1px #5b9dd9,
     
    19531896    font-size: 14px;
    19541897    /* Keeps background the full height of the screen, but only visually. Clicks go through. */
    1955     -webkit-box-shadow: 5001px 5000px 0 5000px #fff, 5000px 5000px 0 5000px #e5e5e5;
    19561898    box-shadow: 5001px 5000px 0 5000px #fff, 5000px 5000px 0 5000px #e5e5e5;
    19571899    outline: 0;
     
    19711913        background: #fff;
    19721914        -webkit-transform: translateX(-100%);
    1973         -ms-transform: translateX(-100%);
    19741915        transform: translateX(-100%);
    1975         -webkit-transition: -webkit-transform .3s ease-in-out;
    19761916        transition: -webkit-transform .3s ease-in-out;
    19771917        transition: transform .3s ease-in-out;
     
    19851925    .options-panel.is-off-screen {
    19861926        -webkit-transform: translateX(0);
    1987         -ms-transform: translateX(0);
    19881927        transform: translateX(0);
    19891928    }
     
    19951934        width: 100%;
    19961935        border: 0;
    1997         -webkit-box-shadow: 5001px 5000px 0 5000px #fff;
    19981936        box-shadow: 5001px 5000px 0 5000px #fff;
    19991937    }
     
    20561994    white-space: nowrap;
    20571995    overflow: hidden;
    2058     -webkit-transition: -webkit-transform .3s ease-in-out;
    20591996    transition: -webkit-transform .3s ease-in-out;
    20601997    transition: transform .3s ease-in-out;
     
    20642001.post-options .post-option:focus {
    20652002    outline: 0;
    2066     -webkit-box-shadow: inset 5px 0 0 #00a0d2;
    20672003    box-shadow: inset 5px 0 0 #00a0d2;
    20682004    border-color: #e5e5e5;
     
    20812017        right: auto;
    20822018        -webkit-transform: translateX(-100%);
    2083         -ms-transform: translateX(-100%);
    20842019        transform: translateX(-100%);
    20852020    }
     
    20992034    width: 100%;
    21002035    overflow: hidden;
    2101     -webkit-transition: -webkit-transform .3s ease-in-out;
    21022036    transition: -webkit-transform .3s ease-in-out;
    21032037    transition: transform .3s ease-in-out;
     
    21182052        left: 0;
    21192053        -webkit-transform: translateX(100%);
    2120         -ms-transform: translateX(100%);
    21212054        transform: translateX(100%);
    21222055    }
     
    21372070.press-this .modal-close:focus {
    21382071    outline: 0;
    2139     -webkit-box-shadow: inset 5px 0 0 #00a0d2;
    21402072    box-shadow: inset 5px 0 0 #00a0d2;
    21412073    border-color: #e5e5e5;
     
    21942126.wp-link-input input {
    21952127    border: 1px solid #ddd;
    2196     -webkit-box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 );
    21972128    box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 );
    21982129    background-color: #fff;
    21992130    color: #32373c;
    22002131    outline: none;
    2201     -webkit-transition: 0.05s border-color ease-in-out;
    22022132    transition: 0.05s border-color ease-in-out;
    22032133}
     
    22112141    z-index: 10000;
    22122142    border: 1px solid #5b9dd9;
    2213     -webkit-box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 );
    22142143    box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 );
    22152144    background-color: #fff;
  • trunk/src/wp-admin/css/revisions.css

    r37740 r41062  
    2424    height: 82px;
    2525    background: #fff;
    26     -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    2726    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    2827}
     
    3433    top: 7px;
    3534    max-width: 70%;
    36     -webkit-box-sizing: border-box;
    37     -moz-box-sizing: border-box;
    3835    box-sizing: border-box;
    3936    background-color: #fff;
     
    4441    height: 100%;
    4542    border-left: 1px solid #a0a5aa;
    46     -webkit-box-sizing: border-box;
    47     -moz-box-sizing: border-box;
    4843    box-sizing: border-box;
    4944}
     
    7873    opacity: 0;
    7974    width: 100%;
    80     width: -webkit-calc( 100% - 30px );
    8175    width: calc( 100% - 30px );
    8276    top: 50%;
    83     top: -webkit-calc( 50% - 10px );
    8477    top: calc( 50% - 10px );
    85     -webkit-transition: opacity 0.5s;
    8678    transition: opacity 0.5s;
    8779    filter: alpha(opacity=0); /* ie8 and earlier */
     
    10496
    10597.revisions .diff {
    106     -webkit-transition: opacity 0.5s;
    10798    transition: opacity 0.5s;
    10899}
     
    120111    margin-top: 20px;
    121112    background-color: #fff;
    122     -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    123113    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    124114}
    125115
    126116.revisions.pinned .revisions-meta {
    127     -webkit-box-shadow: none;
    128117    box-shadow: none;
    129118}
     
    184173    padding: 15px;
    185174    background-color: #fff;
    186     -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    187175    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    188176}
     
    369357    height: 25px;
    370358    -webkit-transform: rotate(45deg);
    371     -ms-transform: rotate(45deg);
    372359    transform: rotate(45deg);
    373360}
     
    412399    z-index: 9999;
    413400    background-color: #fff;
    414     -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    415401    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    416402}
     
    433419    height: 25px;
    434420    -webkit-transform: rotate(45deg);
    435     -ms-transform: rotate(45deg);
    436421    transform: rotate(45deg);
    437422}
     
    460445
    461446.wp-slider .ui-slider-handle {
    462     -webkit-border-radius: 50%;
    463447    border-radius: 50%;
    464448    height: 18px;
     
    469453    width: 18px;
    470454    z-index: 2;
    471     -ms-touch-action: none;
    472455    touch-action: none;
    473456}
     
    477460    background: #f7f7f7;
    478461    border: 1px solid #ccc;
    479     -webkit-box-shadow: 0 1px 0 #cccccc;
    480462    box-shadow: 0 1px 0 #cccccc;
    481463}
     
    491473    background: #eee;
    492474    border-color: #999;
    493     -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    494475    box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    495476    -webkit-transform: translateY(1px);
    496     -ms-transform: translateY(1px);
    497477    transform: translateY(1px);
    498478}
  • trunk/src/wp-admin/css/site-icon.css

    r37964 r41062  
    3131.site-icon-preview .app-icon-preview {
    3232    background-color: #000;
    33     -webkit-border-radius: 16px;
    3433    border-radius: 16px;
    3534    height: 64px;
  • trunk/src/wp-admin/css/themes.css

    r40896 r41062  
    5757    width: 30.6%;
    5858    border: 1px solid #ddd;
    59     -webkit-box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
    6059    box-shadow: 0 1px 1px -1px rgba(0,0,0,0.1);
    61     -webkit-box-sizing: border-box;
    62     -moz-box-sizing: border-box;
    6360    box-sizing: border-box;
    6461}
     
    8481    margin: 0;
    8582    padding: 15px;
    86     -webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
    8783    box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
    8884    overflow: hidden;
     
    9793    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    9894    opacity: 0;
    99     -webkit-transition: opacity 0.1s ease-in-out;
    10095    transition: opacity 0.1s ease-in-out;
    10196    position: absolute;
     
    135130    position: relative;
    136131    -webkit-backface-visibility: hidden; /* Prevents flicker of the screenshot on hover. */
    137     -webkit-transition: opacity 0.2s ease-in-out;
    138132    transition: opacity 0.2s ease-in-out;
    139133}
     
    151145    top: 0;
    152146    width: 100%;
    153     -webkit-transition: opacity 0.2s ease-in-out;
    154147    transition: opacity 0.2s ease-in-out;
    155148}
     
    181174    padding: 15px 12px;
    182175    text-align: center;
    183     -webkit-border-radius: 3px;
    184176    border-radius: 3px;
    185     -webkit-transition: opacity 0.1s ease-in-out;
    186177    transition: opacity 0.1s ease-in-out;
    187178}
     
    189180.theme-browser .theme:focus {
    190181    border-color: #5b9dd9;
    191     -webkit-box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
    192182    box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
    193183}
     
    216206    padding-right: 110px;
    217207    font-weight: 300;
    218     -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.5);
    219208    box-shadow: inset 0 1px 1px rgba(0,0,0,0.5);
    220209}
     
    263252.theme-browser .theme.add-new-theme {
    264253    border: none;
    265     -webkit-box-shadow: none;
    266254    box-shadow: none;
    267255}
     
    288276    border: 5px dashed #d5d2ca;
    289277    border: 5px dashed rgba(0, 0, 0, 0.1);
    290     -webkit-box-sizing: border-box;
    291     -moz-box-sizing: border-box;
    292278    box-sizing: border-box;
    293279}
     
    296282    background: #e5e5e5;
    297283    background: rgba(153, 153, 153, 0.1);
    298     -webkit-border-radius: 50%;
    299284    border-radius: 50%;
    300285    display: inline-block;
     
    343328    background: none;
    344329    text-align: center;
    345     -webkit-box-shadow: none;
    346330    box-shadow: none;
    347331    font-weight: 400;
     
    396380    border-left: 1px solid #ddd;
    397381    background-color: transparent;
    398     -webkit-transition: color .1s ease-in-out, background .1s ease-in-out;
    399382    transition: color .1s ease-in-out, background .1s ease-in-out;
    400383}
     
    420403    border: 0;
    421404    border-right: 1px solid #ddd;
    422     -webkit-transition: color .1s ease-in-out, background .1s ease-in-out;
    423405    transition: color .1s ease-in-out, background .1s ease-in-out;
    424406}
     
    443425.theme-overlay .theme-header .right:focus,
    444426.theme-overlay .theme-header .left:focus {
    445     -webkit-box-shadow: none;
    446427    box-shadow: none;
    447428    outline: none;
     
    480461    bottom: 3%;
    481462    background: #fff;
    482     -webkit-box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1);
    483463    box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1);
    484464    z-index: 10000; /* Over WP Pointers. */
    485     -webkit-box-sizing: border-box;
    486     -moz-box-sizing: border-box;
    487465    box-sizing: border-box;
    488466    -webkit-overflow-scrolling: touch;
     
    512490    background: #f3f3f3;
    513491    z-index: 30;
    514     -webkit-box-sizing: border-box;
    515     -moz-box-sizing: border-box;
    516492    box-sizing: border-box;
    517493    border-top: 1px solid #eee;
     
    538514    text-decoration: none;
    539515    border-color: transparent;
    540     -webkit-box-shadow: none;
    541516    box-shadow: none;
    542517    background: transparent;
     
    582557.theme-overlay .screenshot {
    583558    border: 1px solid #fff;
    584     -webkit-box-sizing: border-box;
    585     -moz-box-sizing: border-box;
    586559    box-sizing: border-box;
    587560    overflow: hidden;
    588561    position: relative;
    589     -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
    590562    box-shadow: 0 0 0 1px rgba(0,0,0,0.2);
    591563}
     
    671643    display: inline-block;
    672644    padding: 2px 8px;
    673     -webkit-border-radius: 2px;
    674645    border-radius: 2px;
    675646    margin: 0 0 -10px;
     
    10401011.upload-theme,
    10411012.upload-plugin {
    1042     -webkit-box-sizing: border-box;
    1043     -moz-box-sizing: border-box;
    10441013    box-sizing: border-box;
    10451014    display: none;
     
    11831152    background: #eee;
    11841153    border-color: #999;
    1185     -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, .5 );
    11861154    box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, .5 );
    11871155    z-index: 1;
     
    11901158.background-position-control input[type="radio"]:focus ~ .button {
    11911159    border-color: #5b9dd9;
    1192     -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, .5 ), 0 0 3px rgba( 0, 115, 170, .8 );
    11931160    box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, .5 ), 0 0 3px rgba( 0, 115, 170, .8 );
    11941161    color: #23282d;
     
    12001167    line-height: 1;
    12011168    text-align: center;
    1202     -webkit-transition: background-color .1s ease-in 0;
    12031169    transition: background-color .1s ease-in 0;
    12041170}
     
    12131179.background-position-control .background-position-center-icon:before {
    12141180    background-color: #555;
    1215     -webkit-border-radius: 50%;
    12161181    border-radius: 50%;
    12171182    content: "";
     
    12301195
    12311196.background-position-control .button-group .button {
    1232     -webkit-border-radius: 0;
    12331197    border-radius: 0;
    1234     -webkit-box-shadow: none;
    12351198    box-shadow: none;
    12361199    /* Following properties are overridden by buttons responsive styles (see: wp-includes/css/buttons.css). */
     
    12491212
    12501213.background-position-control .button-group:last-child .button {
    1251     -webkit-box-shadow: 0 1px 0 #ccc;
    12521214    box-shadow: 0 1px 0 #ccc;
    12531215}
     
    12581220
    12591221.background-position-control .button-group:first-child > label:first-child .button {
    1260     -webkit-border-radius: 3px 0 0;
    12611222    border-radius: 3px 0 0;
    12621223}
     
    12641225.background-position-control .button-group:first-child > label:first-child .dashicons {
    12651226    -webkit-transform: rotate( 45deg );
    1266     -ms-transform: rotate( 45deg );
    12671227    transform: rotate( 45deg );
    12681228}
    12691229
    12701230.background-position-control .button-group:first-child > label:last-child .button {
    1271     -webkit-border-radius: 0 3px 0 0;
    12721231    border-radius: 0 3px 0 0;
    12731232}
     
    12751234.background-position-control .button-group:first-child > label:last-child .dashicons {
    12761235    -webkit-transform: rotate( -45deg );
    1277     -ms-transform: rotate( -45deg );
    12781236    transform: rotate( -45deg );
    12791237}
    12801238
    12811239.background-position-control .button-group:last-child > label:first-child .button {
    1282     -webkit-border-radius: 0 0 0 3px;
    12831240    border-radius: 0 0 0 3px;
    12841241}
     
    12861243.background-position-control .button-group:last-child > label:first-child .dashicons {
    12871244    -webkit-transform: rotate( -45deg );
    1288     -ms-transform: rotate( -45deg );
    12891245    transform: rotate( -45deg );
    12901246}
    12911247
    12921248.background-position-control .button-group:last-child > label:last-child .button {
    1293     -webkit-border-radius: 0 0 3px 0;
    12941249    border-radius: 0 0 3px 0;
    12951250}
     
    12971252.background-position-control .button-group:last-child > label:last-child .dashicons {
    12981253    -webkit-transform: rotate( 45deg );
    1299     -ms-transform: rotate( 45deg );
    13001254    transform: rotate( 45deg );
    13011255}
     
    13331287
    13341288.wp-full-overlay-sidebar {
    1335     -webkit-box-sizing: border-box;
    1336     -moz-box-sizing: border-box;
    13371289    box-sizing: border-box;
    13381290    position: fixed;
     
    14181370    margin: 0;
    14191371    border-top: none;
    1420     -webkit-box-shadow: none;
    14211372    box-shadow: none;
    14221373}
     
    14301381    border-bottom: none;
    14311382    border-top: none;
    1432     -webkit-box-shadow: none;
    14331383    box-shadow: none;
    14341384}
     
    14621412    cursor: pointer;
    14631413    text-decoration: none;
    1464     -webkit-transition: color .1s ease-in-out, background .1s ease-in-out;
    14651414    transition: color .1s ease-in-out, background .1s ease-in-out;
    14661415}
     
    14761425    color: #000;
    14771426    outline: none;
    1478     -webkit-box-shadow: none;
    14791427    box-shadow: none;
    14801428}
     
    15431491    background-color: transparent !important;
    15441492    border: none !important;
    1545     -webkit-box-shadow: none !important;
    15461493    box-shadow: none !important;
    1547     -webkit-border-radius: 0 !important;
    15481494    border-radius: 0 !important;
    15491495}
     
    15651511    height: 20px;
    15661512    margin: 0 2px; /* avoid the focus box-shadow to be cut-off */
    1567     -webkit-border-radius: 50%;
    15681513    border-radius: 50%;
    15691514    overflow: hidden;
     
    15721517.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow,
    15731518.wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow {
    1574     -webkit-box-shadow:
    1575         0 0 0 1px #5b9dd9,
    1576         0 0 2px 1px rgba(30, 140, 190, .8);
    15771519    box-shadow:
    15781520        0 0 0 1px #5b9dd9,
     
    16071549.rtl .wp-full-overlay .collapse-sidebar-arrow:before {
    16081550    -webkit-transform: rotate(180.001deg);
    1609     -ms-transform: rotate(180.001deg);
    16101551    transform: rotate(180.001deg); /* Firefox: promoting to its own layer to trigger anti-aliasing  */
    16111552}
     
    16131554.rtl .wp-full-overlay.collapsed .collapse-sidebar-arrow:before {
    16141555    -webkit-transform: none;
    1615     -ms-transform: none;
    16161556    transform: none;
    16171557}
     
    16221562.wp-full-overlay .collapse-sidebar,
    16231563.wp-full-overlay-main {
    1624     -webkit-transition-property: left, right, top, bottom, width, margin;
    16251564    transition-property: left, right, top, bottom, width, margin;
    1626     -webkit-transition-duration: 0.2s;
    16271565    transition-duration: 0.2s;
    16281566}
     
    16451583    max-width: 599px;
    16461584    width: 18%;
    1647     width: -webkit-calc( 18% - 1px );
    16481585    width: calc( 18% - 1px );
    16491586    height: 45px;
     
    16591596    position: relative;
    16601597    background: #eee;
    1661     -webkit-box-shadow: -20px 0 10px -5px #eee;
    16621598    box-shadow: -20px 0 10px -5px #eee;
    16631599}
     
    16701606    padding: 0 3px;
    16711607    margin: 0 0 0 -4px;
    1672     -webkit-box-shadow: none;
    16731608    box-shadow: none;
    16741609    border-top: 1px solid transparent;
    16751610    border-bottom: 4px solid transparent;
    1676     -webkit-transition: .15s color ease-in-out,
    1677                 .15s background-color ease-in-out,
    1678                 .15s border-color ease-in-out;
    16791611    transition: .15s color ease-in-out,
    16801612                .15s background-color ease-in-out,
     
    16831615
    16841616.wp-full-overlay-footer .devices button:focus {
    1685     -webkit-box-shadow: none;
    16861617    box-shadow: none;
    16871618    outline: none;
     
    18031734    width: 100%;
    18041735    z-index: 20;
    1805     -webkit-transition: opacity 0.3s;
    18061736    transition: opacity 0.3s;
    18071737}
     
    19081838    transform: translateZ(0);
    19091839    background: transparent url(../images/spinner.gif) no-repeat center center;
    1910     -webkit-background-size: 20px 20px;
    19111840    background-size: 20px 20px;
    19121841}
     
    19281857    .wp-full-overlay .collapse-sidebar-arrow {
    19291858        background-image: url(../images/arrows-2x.png);
    1930         -webkit-background-size: 15px 123px;
    19311859        background-size: 15px 123px;
    19321860    }
  • trunk/src/wp-admin/css/widgets.css

    r41050 r41062  
    44    margin: 0 auto 10px;
    55    position: relative;
    6     -webkit-box-sizing: border-box;
    7     -moz-box-sizing: border-box;
    86    box-sizing: border-box;
    97}
     
    8583.media-widget-control .placeholder {
    8684    border: 1px dashed #b4b9be;
    87     -webkit-box-sizing: border-box;
    88     -moz-box-sizing: border-box;
    8985    box-sizing: border-box;
    9086    cursor: default;
     
    171167    height: 45px;
    172168    width: 100%;
    173     -webkit-box-sizing: border-box;
    174     -moz-box-sizing: border-box;
    175169    box-sizing: border-box;
    176170}
     
    189183.sidebar-name {
    190184    position: relative;
    191     -webkit-box-sizing: border-box;
    192     -moz-box-sizing: border-box;
    193185    box-sizing: border-box;
    194186}
     
    271263#widgets-left .widgets-holder-wrap {
    272264    border: none;
    273     -webkit-box-shadow: none;
    274265    box-shadow: none;
    275266}
     
    305296    margin: 0 0 20px 0;
    306297    border: none;
    307     -webkit-box-shadow: none;
    308298    box-shadow: none;
    309299}
     
    383373#widgets-right .widgets-holder-wrap.widget-hover {
    384374    border-color: #72777c;
    385     -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    386375    box-shadow: 0 1px 2px rgba(0,0,0,0.3);
    387376}
     
    511500.widget-liquid-left #widgets-left.chooser #available-widgets .widget,
    512501.widget-liquid-left #widgets-left.chooser .inactive-sidebar {
    513     -webkit-transition: opacity 0.1s linear;
    514502    transition: opacity 0.1s linear;
    515503}
     
    534522#widgets-left .widget-top:hover {
    535523    border-color: #999;
    536     -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    537524    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    538525}
     
    561548    outline: none;
    562549    position: relative;
    563     -webkit-transition: background 0.2s ease-in-out;
    564550    transition: background 0.2s ease-in-out;
    565551}
  • trunk/src/wp-includes/css/admin-bar.css

    r40418 r41062  
    1212    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    1313    line-height: 32px;
    14     -webkit-border-radius: 0;
    1514    border-radius: 0;
    16     -webkit-box-sizing: content-box;
    17     -moz-box-sizing: content-box;
    1815    box-sizing: content-box;
    19     -webkit-transition: none;
    2016    transition: none;
    2117    -webkit-font-smoothing: subpixel-antialiased; /* Prevent Safari from switching to standard antialiasing on hover */
     
    7571#wpadminbar textarea,
    7672#wpadminbar div {
    77     -webkit-box-shadow: none;
    7873    box-shadow: none;
    7974    outline: none;
     
    147142    margin: 0;
    148143    padding: 0;
    149     -webkit-box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    150144    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    151145    background: #32373c;
     
    258252#wpadminbar #adminbarsearch:before {
    259253    position: relative;
    260     -webkit-transition: all .1s ease-in-out;
    261254    transition: all .1s ease-in-out;
    262255}
     
    350343    right: auto;
    351344    margin: 0;
    352     -webkit-box-shadow: none;
    353345    box-shadow: none;
    354346}
     
    371363    font-size: 10px;
    372364    font-weight: 600;
    373     -webkit-border-radius: 10px;
    374365    border-radius: 10px;
    375366}
     
    386377#wpadminbar ul li:last-child,
    387378#wpadminbar ul li:last-child .ab-item {
    388     -webkit-box-shadow: none;
    389379    box-shadow: none;
    390380}
     
    645635    outline: none;
    646636    cursor: pointer;
    647     -webkit-box-shadow: none;
    648637    box-shadow: none;
    649     -webkit-box-sizing: border-box;
    650     -moz-box-sizing: border-box;
    651638    box-sizing: border-box;
    652     -webkit-transition-duration: 400ms;
    653639    transition-duration: 400ms;
    654     -webkit-transition-property: width, background;
    655640    transition-property: width, background;
    656     -webkit-transition-timing-function: ease;
    657641    transition-timing-function: ease;
    658642}
     
    735719    line-height: normal;
    736720    text-decoration: none;
    737     -webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
    738721    box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
    739722}
     
    11421125    #wpadminbar .ab-top-menu > .menupop li > .ab-sub-wrapper {
    11431126        position: static;
    1144         -webkit-box-shadow: none;
    11451127        box-shadow: none;
    11461128    }
  • trunk/src/wp-includes/css/buttons.css

    r40480 r41062  
    5555    border-style: solid;
    5656    -webkit-appearance: none;
    57     -webkit-border-radius: 3px;
    5857    border-radius: 3px;
    5958    white-space: nowrap;
    60     -webkit-box-sizing: border-box;
    61     -moz-box-sizing: border-box;
    6259    box-sizing: border-box;
    6360}
     
    113110    background: none;
    114111    border: none;
    115     -webkit-box-shadow: none;
    116112    box-shadow: none;
    117113    padding: 0 2px 1px;
     
    128124    border-color: #cccccc;
    129125    background: #f7f7f7;
    130     -webkit-box-shadow: 0 1px 0 #cccccc;
    131126    box-shadow: 0 1px 0 #cccccc;
    132127    vertical-align: top;
     
    152147.wp-core-ui .button-secondary:focus {
    153148    border-color: #5b9dd9;
    154     -webkit-box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    155149    box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    156150}
     
    162156    background: #eee;
    163157    border-color: #999;
    164     -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    165158    box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    166159    -webkit-transform: translateY(1px);
    167     -ms-transform: translateY(1px);
    168160    transform: translateY(1px);
    169161}
     
    171163.wp-core-ui .button.active:focus {
    172164    border-color: #5b9dd9;
    173     -webkit-box-shadow:
    174         inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ),
    175         0 0 3px rgba( 0, 115, 170, .8 );
    176165    box-shadow:
    177166        inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ),
     
    189178    border-color: #ddd !important;
    190179    background: #f7f7f7 !important;
    191     -webkit-box-shadow: none !important;
    192180    box-shadow: none !important;
    193181    text-shadow: 0 1px 0 #fff !important;
    194182    cursor: default;
    195183    -webkit-transform: none !important;
    196     -ms-transform: none !important;
    197184    transform: none !important;
    198185}
     
    202189    margin: 0;
    203190    padding: 0;
    204     -webkit-box-shadow: none;
    205191    box-shadow: none;
    206192    border: 0;
    207     -webkit-border-radius: 0;
    208193    border-radius: 0;
    209194    background: none;
     
    214199    color: #0073aa;
    215200    text-decoration: underline;
    216     -webkit-transition-property: border, background, color;
    217201    transition-property: border, background, color;
    218     -webkit-transition-duration: .05s;
    219202    transition-duration: .05s;
    220     -webkit-transition-timing-function: ease-in-out;
    221203    transition-timing-function: ease-in-out;
    222204}
     
    229211.wp-core-ui .button-link:focus {
    230212    color: #124964;
    231     -webkit-box-shadow:
    232         0 0 0 1px #5b9dd9,
    233         0 0 2px 1px rgba(30, 140, 190, .8);
    234213    box-shadow:
    235214        0 0 0 1px #5b9dd9,
     
    257236    background: #0085ba;
    258237    border-color: #0073aa #006799 #006799;
    259     -webkit-box-shadow: 0 1px 0 #006799;
    260238    box-shadow: 0 1px 0 #006799;
    261239    color: #fff;
     
    278256.wp-core-ui .button-primary.focus,
    279257.wp-core-ui .button-primary:focus {
    280     -webkit-box-shadow: 0 1px 0 #0073aa,
    281         0 0 2px 1px #33b3db;
    282258    box-shadow: 0 1px 0 #0073aa,
    283259        0 0 2px 1px #33b3db;
     
    290266    background: #0073aa;
    291267    border-color: #006799;
    292     -webkit-box-shadow: inset 0 2px 0 #006799;
    293268    box-shadow: inset 0 2px 0 #006799;
    294269    vertical-align: top;
     
    302277    background: #008ec2 !important;
    303278    border-color: #007cb2 !important;
    304     -webkit-box-shadow: none !important;
    305279    box-shadow: none !important;
    306280    text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.1 ) !important;
     
    309283
    310284.wp-core-ui .button.button-primary.button-hero {
    311     -webkit-box-shadow: 0 2px 0 #006799;
    312     box-shadow: 0 2px 0 #006799;
     285 box-shadow: 0 2px 0 #006799;
    313286}
    314287
     
    317290.wp-core-ui .button.button-primary.button-hero.active:focus,
    318291.wp-core-ui .button.button-primary.button-hero:active {
    319     -webkit-box-shadow: inset 0 3px 0 #006799;
    320     box-shadow: inset 0 3px 0 #006799;
     292 box-shadow: inset 0 3px 0 #006799;
    321293}
    322294
     
    335307.wp-core-ui .button-group > .button {
    336308    display: inline-block;
    337     -webkit-border-radius: 0;
    338309    border-radius: 0;
    339310    margin-right: -1px;
     
    350321
    351322.wp-core-ui .button-group > .button:first-child {
    352     -webkit-border-radius: 3px 0 0 3px;
    353323    border-radius: 3px 0 0 3px;
    354324}
    355325
    356326.wp-core-ui .button-group > .button:last-child {
    357     -webkit-border-radius: 0 3px 3px 0;
    358327    border-radius: 0 3px 3px 0;
    359328}
  • trunk/src/wp-includes/css/customize-preview.css

    r39685 r41062  
    11.customize-partial-refreshing {
    22    opacity: 0.25;
    3     -webkit-transition: opacity 0.25s;
    43    transition: opacity 0.25s;
    54    cursor: progress;
     
    87/* Override highlight when refreshing */
    98.customize-partial-refreshing.widget-customizer-highlighted-widget {
    10     -webkit-box-shadow: none;
    119    box-shadow: none;
    1210}
     
    2422    background: transparent;
    2523    color: transparent;
    26     -webkit-box-shadow: none;
    2724    box-shadow: none;
    2825    outline: none;
     
    4946    z-index: 5;
    5047    background: #0085ba !important;
    51     -webkit-border-radius: 50%;
    5248    border-radius: 50%;
    5349    border: 2px solid #fff;
    54     -webkit-box-shadow: 0 2px 1px rgba(46,68,83,0.15);
    5550    box-shadow: 0 2px 1px rgba(46,68,83,0.15);
    5651    text-align: center;
    5752    cursor: pointer;
    58     -webkit-box-sizing: border-box;
    59     -moz-box-sizing: border-box;
    6053    box-sizing: border-box;
    6154    padding: 3px;
     
    8982
    9083.customize-partial-edit-shortcut button:focus {
    91     -webkit-box-shadow: 0 0 0 2px #008ec2;
    9284    box-shadow: 0 0 0 2px #008ec2;
    9385}
  • trunk/src/wp-includes/css/dashicons.css

    r37364 r41062  
    2626    vertical-align: top;
    2727    text-align: center;
    28     -webkit-transition: color .1s ease-in 0;
    2928    transition: color .1s ease-in 0;
    3029    -webkit-font-smoothing: antialiased;
  • trunk/src/wp-includes/css/editor.css

    r40476 r41062  
    2525    opacity: 0.7;
    2626    filter: alpha(opacity=70);
    27     -webkit-transition: none;
    2827    transition: none;
    2928}
    3029
    3130.mce-window {
    32     -webkit-border-radius: 0;
    3331    border-radius: 0;
    34     -webkit-box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
    3532    box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
    3633    -webkit-font-smoothing: subpixel-antialiased;
    37     -webkit-transition: none;
    3834    transition: none;
    3935}
     
    8783.mce-window-head .mce-close:focus .mce-i-remove,
    8884div.mce-tab:focus {
    89     -webkit-box-shadow: 0 0 0 1px #5b9dd9,
    90         0 0 2px 1px rgba(30, 140, 190, .8);
    9185    box-shadow: 0 0 0 1px #5b9dd9,
    9286        0 0 2px 1px rgba(30, 140, 190, .8);
     
    9488
    9589.mce-window .mce-window-head .mce-dragh {
    96     width: -webkit-calc( 100% - 36px );
    9790    width: calc( 100% - 36px );
    9891}
     
    10699#wp-link .query-results {
    107100    border: 1px solid #ddd;
    108     -webkit-border-radius: 0;
    109101    border-radius: 0;
    110     -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
    111102    box-shadow: inset 0 1px 2px rgba(0,0,0,0.07);
    112     -webkit-transition: .05s all ease-in-out;
    113103    transition: .05s all ease-in-out;
    114104}
     
    119109#wp-link .query-results:focus {
    120110    border-color: #5b9dd9;
    121     -webkit-box-shadow: 0 0 2px rgba(30,140,190,0.8);
    122111    box-shadow: 0 0 2px rgba(30,140,190,0.8);
    123112}
     
    130119
    131120.mce-window .mce-wp-help * {
    132     -webkit-box-sizing: border-box;
    133     -moz-box-sizing: border-box;
    134121    box-sizing: border-box;
    135122}
     
    210197.mce-floatpanel.mce-popover {
    211198    border-color: rgba(0,0,0,0.15);
    212     -webkit-border-radius: 0;
    213199    border-radius: 0;
    214     -webkit-box-shadow: 0 3px 5px rgba( 0, 0, 0, 0.2 );
    215200    box-shadow: 0 3px 5px rgba( 0, 0, 0, 0.2 );
    216201}
     
    262247div.mce-inline-toolbar-grp {
    263248    border: 1px solid #a0a5aa;
    264     -webkit-border-radius: 2px;
    265249    border-radius: 2px;
    266     -webkit-box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );
    267250    box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.15 );
    268     -webkit-box-sizing: border-box;
    269     -moz-box-sizing: border-box;
    270251    box-sizing: border-box;
    271252    margin-bottom: 8px;
     
    394375    border-color: transparent;
    395376    background: transparent;
    396     -webkit-box-shadow: none;
    397377    box-shadow: none;
    398378    text-shadow: none;
     
    409389    border: 1px solid transparent;
    410390    margin: 2px;
    411     -webkit-border-radius: 2px;
    412391    border-radius: 2px;
    413392}
     
    420399    border-color: #555d66;
    421400    color: #23282d;
    422     -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba( 0, 0, 0, 0.08 );
    423401    box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba( 0, 0, 0, 0.08 );
    424402    outline: none;
     
    430408    background: #ebebeb;
    431409    border-color: #555d66;
    432     -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.3 );
    433410    box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.3 );
    434411}
     
    445422    border-color: #ddd;
    446423    text-shadow: 0 1px 0 #fff;
    447     -webkit-box-shadow: none;
    448424    box-shadow: none;
    449425}
     
    498474    background: #0085ba;
    499475    border-color: #0073aa #006799 #006799;
    500     -webkit-box-shadow: 0 1px 0 #006799;
    501476    box-shadow: 0 1px 0 #006799;
    502477    color: #fff;
     
    522497
    523498.mce-toolbar .mce-btn-group .mce-btn.mce-primary:focus {
    524     -webkit-box-shadow: 0 0 1px 1px #33b3db;
    525499    box-shadow: 0 0 1px 1px #33b3db;
    526500}
     
    529503    background: #0073aa;
    530504    border-color: #006799;
    531     -webkit-box-shadow: inset 0 2px 0 #006799;
    532505    box-shadow: inset 0 2px 0 #006799;
    533506}
     
    535508/* mce listbox */
    536509.mce-toolbar .mce-btn-group .mce-btn.mce-listbox {
    537     -webkit-border-radius: 0;
    538510    border-radius: 0;
    539511    direction: ltr;
    540512    background: #fff;
    541513    border: 1px solid #ddd;
    542     -webkit-box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, .2);
    543514    box-shadow: inset 0 1px 1px -1px rgba(0, 0, 0, .2);
    544515}
     
    624595.mce-menubar .mce-menubtn:focus {
    625596    color: #124964;
    626     -webkit-box-shadow:
    627         0 0 0 1px #5b9dd9,
    628         0 0 2px 1px rgba(30, 140, 190, .8);
    629597    box-shadow:
    630598        0 0 0 1px #5b9dd9,
     
    680648    border: 1px solid #cccccc;
    681649    -webkit-appearance: none;
    682     -webkit-border-radius: 3px;
    683650    border-radius: 3px;
    684651    white-space: nowrap;
    685     -webkit-box-shadow: 0 1px 0 #cccccc;
    686652    box-shadow: 0 1px 0 #cccccc;
    687653}
     
    703669.mce-window .mce-btn:focus {
    704670    border-color: #5b9dd9;
    705     -webkit-box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    706671    box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    707672}
     
    710675    background: #eee;
    711676    border-color: #999;
    712     -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    713677    box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    714678    -webkit-transform: translateY(1px);
    715     -ms-transform: translateY(1px);
    716679    transform: translateY(1px);
    717680}
     
    721684    border-color: #ddd !important;
    722685    background: #f7f7f7 !important;
    723     -webkit-box-shadow: none !important;
    724686    box-shadow: none !important;
    725687    text-shadow: 0 1px 0 #fff !important;
    726688    cursor: default;
    727689    -webkit-transform: none !important;
    728     -ms-transform: none !important;
    729690    transform: none !important;
    730691}
     
    733694    background: #0085ba;
    734695    border-color: #0073aa #006799 #006799;
    735     -webkit-box-shadow: 0 1px 0 #006799;
    736696    box-shadow: 0 1px 0 #006799;
    737697    color: #fff;
     
    751711
    752712.mce-window .mce-btn.mce-primary:focus {
    753     -webkit-box-shadow: 0 1px 0 #0073aa,
    754         0 0 2px 1px #33b3db;
    755713    box-shadow: 0 1px 0 #0073aa,
    756714        0 0 2px 1px #33b3db;
     
    760718    background: #0073aa;
    761719    border-color: #006799;
    762     -webkit-box-shadow: inset 0 2px 0 #006799;
    763720    box-shadow: inset 0 2px 0 #006799;
    764721    vertical-align: top;
     
    769726    background: #008ec2 !important;
    770727    border-color: #007cb2 !important;
    771     -webkit-box-shadow: none !important;
    772728    box-shadow: none !important;
    773729    text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.1 ) !important;
     
    808764
    809765.mce-tooltip-inner {
    810     -webkit-border-radius: 3px;
    811766    border-radius: 3px;
    812     -webkit-box-shadow: 0 3px 5px rgba( 0, 0, 0, 0.2 );
    813767    box-shadow: 0 3px 5px rgba( 0, 0, 0, 0.2 );
    814768    color: #fff;
     
    11011055    display: block;
    11021056    resize: vertical;
    1103     -webkit-box-sizing: border-box;
    1104     -moz-box-sizing: border-box;
    11051057    box-sizing: border-box;
    11061058}
     
    11171069    width: 100%;
    11181070    margin: 0;
    1119     -webkit-box-shadow: none;
    11201071    box-shadow: none;
    11211072}
     
    11271078.wp-switch-editor {
    11281079    float: left;
    1129     -webkit-box-sizing: content-box;
    1130     -moz-box-sizing: content-box;
    11311080    box-sizing: content-box;
    11321081    position: relative;
     
    11441093
    11451094.wp-switch-editor:focus {
    1146     -webkit-box-shadow:
    1147         0 0 0 1px #5b9dd9,
    1148         0 0 2px 1px rgba(30, 140, 190, .8);
    11491095    box-shadow:
    11501096        0 0 0 1px #5b9dd9,
     
    11571103.html-active .switch-html:focus,
    11581104.tmce-active .switch-tmce:focus {
    1159     -webkit-box-shadow: none;
    11601105    box-shadow: none;
    11611106}
     
    11631108.wp-switch-editor:active {
    11641109    background-color: #f5f5f5;
    1165     -webkit-box-shadow: none;
    11661110    box-shadow: none;
    11671111}
     
    13501294    border-width: 1px;
    13511295    border-style: solid;
    1352     -webkit-border-radius: 3px;
    13531296    border-radius: 3px;
    13541297}
     
    13691312    display: none;
    13701313    background-color: #fff;
    1371     -webkit-box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
    13721314    box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
    13731315    width: 500px;
     
    13791321    left: 50%;
    13801322    z-index: 100105;
    1381     -webkit-transition: height 0.2s, margin-top 0.2s;
    13821323    transition: height 0.2s, margin-top 0.2s;
    13831324}
     
    14581399#wp-link-close:focus {
    14591400    outline: none;
    1460     -webkit-box-shadow:
    1461         0 0 0 1px #5b9dd9,
    1462         0 0 2px 1px rgba(30, 140, 190, .8);
    14631401    box-shadow:
    14641402        0 0 0 1px #5b9dd9,
     
    14841422
    14851423#wp-link input[type="text"] {
    1486     -webkit-box-sizing: border-box;
    1487     -moz-box-sizing: border-box;
    14881424    box-sizing: border-box;
    14891425}
     
    16371573    display: inline-block;
    16381574    width: 80%;
    1639     width: -webkit-calc(100% - 68px);
    16401575    width: calc(100% - 68px);
    16411576    word-wrap: break-word;
     
    17261661@media screen and ( max-height: 520px ) {
    17271662    #wp-link-wrap {
    1728         -webkit-transition: none;
    17291663        transition: none;
    17301664        height: auto;
     
    17531687    #link-selector {
    17541688        overflow: auto;
    1755         height: -webkit-calc(100% - 92px);
    17561689        height: calc(100% - 92px);
    17571690        padding-bottom: 2px;
     
    17741707    color: #0073aa;
    17751708    text-decoration: underline;
    1776     -webkit-transition-property: border, background, color;
    17771709    transition-property: border, background, color;
    1778     -webkit-transition-duration: .05s;
    17791710    transition-duration: .05s;
    1780     -webkit-transition-timing-function: ease-in-out;
    17811711    transition-timing-function: ease-in-out;
    17821712    cursor: pointer;
     
    17961726    width: 300px;
    17971727    padding: 3px;
    1798     -webkit-box-sizing: border-box;
    1799     -moz-box-sizing: border-box;
    18001728    box-sizing: border-box;
    18011729}
     
    18191747    position: absolute;
    18201748    border: 1px solid #5b9dd9;
    1821     -webkit-box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 );
    18221749    box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 );
    18231750    background-color: #fff;
     
    18451772    div.wp-link-input {
    18461773        max-width: 70%;
    1847         max-width: -webkit-calc(100% - 86px);
    18481774        max-width: calc(100% - 86px);
    18491775    }
  • trunk/src/wp-includes/css/jquery-ui-dialog.css

    r37076 r41062  
    108108    font-size: 0.1px;
    109109    display: block;
    110     -ms-touch-action: none;
    111110    touch-action: none;
    112111}
     
    192191    border-style: solid;
    193192    -webkit-appearance: none;
    194     -webkit-border-radius: 3px;
    195193    border-radius: 3px;
    196194    white-space: nowrap;
    197     -webkit-box-sizing: border-box;
    198     -moz-box-sizing: border-box;
    199195    box-sizing: border-box;
    200196    color: #555;
    201197    border-color: #cccccc;
    202198    background: #f7f7f7;
    203     -webkit-box-shadow: 0 1px 0 #cccccc;
    204199    box-shadow: 0 1px 0 #cccccc;
    205200    vertical-align: top;
     
    227222.ui-button:focus {
    228223    border-color: #5b9dd9;
    229     -webkit-box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    230224    box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    231225}
     
    234228    background: #eee;
    235229    border-color: #999;
    236     -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    237230    box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
    238231    -webkit-transform: translateY(1px);
    239     -ms-transform: translateY(1px);
    240232    transform: translateY(1px);
    241233}
     
    246238    border-color: #ddd !important;
    247239    background: #f7f7f7 !important;
    248     -webkit-box-shadow: none !important;
    249240    box-shadow: none !important;
    250241    text-shadow: 0 1px 0 #fff !important;
    251242    cursor: default;
    252243    -webkit-transform: none !important;
    253     -ms-transform: none !important;
    254244    transform: none !important;
    255245}
     
    276266    z-index: 100102;
    277267    background-color: #fff;
    278     -webkit-box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
    279268    box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
    280269}
     
    293282    background: none;
    294283    border: none;
    295     -webkit-box-shadow: none;
    296284    box-shadow: none;
    297285    color: #666;
  • trunk/src/wp-includes/css/media-views.css

    r40570 r41062  
    33 */
    44.media-modal * {
    5     -webkit-box-sizing: content-box;
    6     -moz-box-sizing: content-box;
    75    box-sizing: content-box;
    86}
     
    119.media-modal select,
    1210.media-modal textarea {
    13     -webkit-box-sizing: border-box;
    14     -moz-box-sizing: border-box;
    1511    box-sizing: border-box;
    1612}
     
    5046
    5147.media-frame a:focus {
    52     -webkit-box-shadow:
    53         0 0 0 1px #5b9dd9,
    54         0 0 2px 1px rgba(30, 140, 190, .8);
    5548    box-shadow:
    5649        0 0 0 1px #5b9dd9,
     
    142135.ui-draggable-handle,
    143136.ui-sortable-handle {
    144     -ms-touch-action: none;
    145137    touch-action: none;
    146138}
     
    192184    cursor: pointer;
    193185    outline: none;
    194     -webkit-transition: color .1s ease-in-out, background .1s ease-in-out;
    195186    transition: color .1s ease-in-out, background .1s ease-in-out;
    196187}
     
    204195    color: #00a0d2;
    205196    border-color: #5b9dd9;
    206     -webkit-box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    207197    box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    208198}
     
    229219    overflow: auto;
    230220    min-height: 300px;
    231     -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.7);
    232221    box-shadow: 0 5px 15px rgba(0,0,0,0.7);
    233222    background: #fcfcfc;
     
    239228    margin-right: 2%;
    240229    width: 42%;
    241     width: -webkit-calc(48% - 12px);
    242230    width: calc(48% - 12px);
    243231}
     
    441429.attachment-details .setting textarea,
    442430.attachment-details .setting .value {
    443     -webkit-box-sizing: border-box;
    444     -moz-box-sizing: border-box;
    445431    box-sizing: border-box;
    446432    margin: 1px;
     
    521507    width: 100%;
    522508    margin: 0;
    523     -webkit-box-sizing: border-box;
    524     -moz-box-sizing: border-box;
    525509    box-sizing: border-box;
    526510}
     
    602586
    603587.media-router a {
    604     -webkit-transition: none;
    605588    transition: none;
    606589}
     
    729712.media-frame.hide-router .media-frame-title {
    730713    border-bottom: 1px solid #ddd;
    731     -webkit-box-shadow: 0 4px 4px -4px rgba( 0, 0, 0, 0.1 );
    732714    box-shadow: 0 4px 4px -4px rgba( 0, 0, 0, 0.1 );
    733715}
     
    797779    margin-right: 2%;
    798780    max-width: 42%;
    799     max-width: -webkit-calc(48% - 12px);
    800781    max-width: calc(48% - 12px);
    801782}
     
    846827    user-select: none;
    847828    width: 25%;
    848     -webkit-box-sizing: border-box;
    849     -moz-box-sizing: border-box;
    850829    box-sizing: border-box;
    851830}
     
    854833.wp-core-ui .selected.attachment:focus,
    855834.wp-core-ui .attachment.details:focus {
    856     -webkit-box-shadow:
    857         inset 0 0 2px 3px #fff,
    858         inset 0 0 0 7px #5b9dd9;
    859835    box-shadow:
    860836        inset 0 0 2px 3px #fff,
     
    864840
    865841.wp-core-ui .selected.attachment {
    866     -webkit-box-shadow:
    867         inset 0 0 0 5px #fff,
    868         inset 0 0 0 7px #ccc;
    869842    box-shadow:
    870843        inset 0 0 0 5px #fff,
     
    873846
    874847.wp-core-ui .attachment.details {
    875     -webkit-box-shadow:
    876         inset 0 0 0 3px #fff,
    877         inset 0 0 0 7px #0073aa;
    878848    box-shadow:
    879849        inset 0 0 0 3px #fff,
     
    883853.wp-core-ui .attachment-preview {
    884854    position: relative;
    885     -webkit-box-shadow:
    886         inset 0 0 15px rgba( 0, 0, 0, 0.1 ),
    887         inset 0 0 0 1px rgba( 0, 0, 0, 0.05 );
    888855    box-shadow:
    889856        inset 0 0 15px rgba( 0, 0, 0, 0.1 ),
     
    912879    left: 0;
    913880    opacity: 1;
    914     -webkit-transition: opacity .1s;
    915881    transition: opacity .1s;
    916882}
     
    932898    right: 0;
    933899    bottom: 0;
    934     -webkit-box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 );
    935900    box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 );
    936901    overflow: hidden;
     
    948913    width: 100%;
    949914    height: 100%;
    950     -webkit-transform: translate( 50%, 50% );
    951     -ms-transform: translate(50%,50%); /* Fails with spaces?? Weird! */
     915    -webkit-transform: translate( 50%, 50% ); /* Fails with spaces?? Weird! */
    952916    transform: translate( 50%, 50% );
    953917}
     
    955919.wp-core-ui .attachment .thumbnail .centered img {
    956920    -webkit-transform: translate( -50%, -50% );
    957     -ms-transform: translate(-50%,-50%);
    958921    transform: translate( -50%, -50% );
    959922}
     
    961924.wp-core-ui .attachments-browser .attachment .thumbnail .centered img.icon {
    962925    -webkit-transform: translate( -50%, -70% );
    963     -ms-transform: translate(-50%,-70%);
    964926    transform: translate( -50%, -70% );
    965927}
     
    981943    font-weight: 600;
    982944    background: rgba( 255, 255, 255, 0.8 );
    983     -webkit-box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.15 );
    984945    box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.15 );
    985946}
     
    1003964    background-color: #fff;
    1004965    background-position: -96px 4px;
    1005     -webkit-border-radius: 3px;
    1006966    border-radius: 3px;
    1007     -webkit-box-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.3 );
    1008967    box-shadow: 0 0 0 1px rgba( 0, 0, 0, 0.3 );
    1009     -webkit-transition: none;
    1010968    transition: none;
    1011969}
     
    1029987    background: #eee;
    1030988    cursor: pointer;
    1031     -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba( 0, 0, 0, 0.15 );
    1032989    box-shadow: 0 0 0 1px #fff, 0 0 0 2px rgba( 0, 0, 0, 0.15 );
    1033990}
     
    10531010.wp-core-ui .media-frame.mode-grid .attachment.selected .check {
    10541011    background-color: #0073aa;
    1055     -webkit-box-shadow:
    1056         0 0 0 1px #fff,
    1057         0 0 0 2px #0073aa;
    10581012    box-shadow:
    10591013        0 0 0 1px #fff,
     
    10791033    padding: 8px;
    10801034    font-size: 12px;
    1081     -webkit-border-radius: 0;
    10821035    border-radius: 0;
    10831036}
     
    11621115.uploader-inline .close:focus {
    11631116    outline: 1px solid  #5b9dd9;
    1164     -webkit-box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    11651117    box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    11661118}
     
    11931145    width: 70%;
    11941146    margin: 10px auto;
    1195     -webkit-border-radius: 10px;
    11961147    border-radius: 10px;
    11971148    background: #ddd;
     
    12041155    width: 0;
    12051156    background: #0073aa;
    1206     -webkit-border-radius: 10px;
    12071157    border-radius: 10px;
    1208     -webkit-transition: width 300ms;
    12091158    transition: width 300ms;
    12101159}
     
    12761225    right: -10px;
    12771226    padding: 10px;
    1278     -webkit-transition: none;
    12791227    transition: none;
    12801228}
     
    12971245    background: #fff;
    12981246    border-left: 4px solid #dc3232;
    1299     -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
    13001247    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
    13011248}
     
    13031250.uploader-inline .upload-errors .upload-error {
    13041251    background-color: #fbeaea;
    1305     -webkit-box-shadow: none;
    13061252    box-shadow: none;
    13071253}
     
    13281274    text-align: center;
    13291275    opacity: 0;
    1330     -webkit-transition: opacity 250ms;
    13311276    transition: opacity 250ms;
    13321277}
     
    13491294    right: 0;
    13501295    -webkit-transform: translateY( -50% );
    1351     -ms-transform: translateY(-50%);
    13521296    transform: translateY( -50% );
    13531297    font-size: 40px;
     
    15361480
    15371481.media-selection .attachment-preview {
    1538     -webkit-box-shadow: none;
    15391482    box-shadow: none;
    15401483    background: none;
     
    15441487.wp-core-ui .media-selection .selected.attachment:focus,
    15451488.wp-core-ui .media-selection .attachment.details:focus {
    1546     -webkit-box-shadow:
    1547         0 0 0 1px #fff,
    1548         0 0 2px 3px #5b9dd9;
    15491489    box-shadow:
    15501490        0 0 0 1px #fff,
     
    15531493
    15541494.wp-core-ui .media-selection .selected.attachment {
    1555     -webkit-box-shadow: none;
    15561495    box-shadow: none;
    15571496}
    15581497
    15591498.wp-core-ui .media-selection .attachment.details {
    1560     -webkit-box-shadow:
    1561         0 0 0 1px #fff,
    1562         0 0 0 3px #0073aa;
    15631499    box-shadow:
    15641500        0 0 0 1px #fff,
     
    15741510    bottom: 0;
    15751511    width: 25px;
    1576     background-image: -webkit-gradient(linear, right top, left top, from(rgba( 255, 255, 255, 1 )), to(rgba( 255, 255, 255, 0 )));
    1577     background-image: -webkit-linear-gradient(right, rgba( 255, 255, 255, 1 ), rgba( 255, 255, 255, 0 ));
    15781512    background-image: linear-gradient(to left, rgba( 255, 255, 255, 1 ), rgba( 255, 255, 255, 0 ));
    15791513}
     
    15881522.media-frame .spinner {
    15891523    background: url(../images/spinner.gif) no-repeat;
    1590     -webkit-background-size: 20px 20px;
    15911524    background-size: 20px 20px;
    15921525    float: right;
     
    16691602    width: 120px;
    16701603    height: 80px;
    1671     -webkit-box-shadow: inset 0 0 15px rgba( 0, 0, 0, 0.1 );
    16721604    box-shadow: inset 0 0 15px rgba( 0, 0, 0, 0.1 );
    16731605}
     
    16851617    right: 0;
    16861618    bottom: 0;
    1687     -webkit-box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.15 );
    16881619    box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.15 );
    16891620    overflow: hidden;
     
    17961727    border: none;
    17971728    border-bottom: 1px solid #ddd;
    1798     -webkit-box-shadow: none;
    17991729    box-shadow: none;
    18001730    margin: 0;
     
    18451775    line-height: 1;
    18461776    cursor: pointer;
    1847     -webkit-box-sizing: content-box;
    1848     -moz-box-sizing: content-box;
    18491777    box-sizing: content-box;
    1850     -webkit-box-shadow: none;
    18511778    box-shadow: none;
    18521779}
     
    18561783    border-color: #5b9dd9;
    18571784    outline: none;
    1858     -webkit-box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    18591785    box-shadow: 0 0 3px rgba( 0, 115, 170, .8 );
    18601786}
     
    19041830    width: 100%;
    19051831    min-width: 200px;
    1906     -webkit-box-shadow: inset 2px 2px 4px -2px rgba( 0, 0, 0, 0.1 );
    19071832    box-shadow: inset 2px 2px 4px -2px rgba( 0, 0, 0, 0.1 );
    19081833}
     
    19531878.mejs-container:focus {
    19541879    outline: 1px solid #5b9dd9;
    1955     -webkit-box-shadow: 0 0 2px 1px rgba(30, 140, 190, .8);
    19561880    box-shadow: 0 0 2px 1px rgba(30, 140, 190, .8);
    19571881}
     
    19761900.image-details .embed-media-settings,
    19771901.image-details .embed-media-settings div {
    1978     -webkit-box-sizing: border-box;
    1979     -moz-box-sizing: border-box;
    19801902    box-sizing: border-box;
    19811903}
     
    20952017    right: 0;
    20962018    bottom: 0;
    2097     -webkit-box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 );
    20982019    box-shadow: inset 0 0 0 1px rgba( 0, 0, 0, 0.1 );
    20992020    overflow: hidden;
     
    22102131    right: 0;
    22112132    -webkit-transform: translateY( -50% );
    2212     -ms-transform: translateY(-50%);
    22132133    transform: translateY( -50% );
    22142134    font-size: 3em;
     
    25502470        max-width: 70%;
    25512471        bottom: 120%;
    2552         -webkit-box-sizing: border-box;
    2553         -moz-box-sizing: border-box;
    25542472        box-sizing: border-box;
    25552473        padding-bottom: 0;
     
    26592577    .wp-core-ui .media-modal-icon {
    26602578        background-image: url(../images/uploader-icons-2x.png);
    2661         -webkit-background-size: 134px 15px;
    26622579        background-size: 134px 15px;
    26632580    }
  • trunk/src/wp-includes/css/wp-auth-check.css

    r40358 r41062  
    3131    background-color: #f1f1f1;
    3232    z-index: 1000011; /* needs to appear above #wp-auth-check-bg */
    33     -webkit-box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
    3433    box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
    3534}
     
    6564    margin: -10px 0 0 -10px;
    6665    background: url(../images/spinner.gif) no-repeat center;
    67     -webkit-background-size: 20px 20px;
    6866    background-size: 20px 20px;
    6967    -webkit-transform: translateZ(0);
  • trunk/src/wp-includes/css/wp-embed-template.css

    r38501 r41062  
    2424    background-color: transparent;
    2525    background-repeat: no-repeat;
    26     -webkit-background-size: 20px 20px;
    2726    background-size: 20px;
    2827    background-position: center;
    29     -webkit-transition: background .1s ease-in;
    3028    transition: background .1s ease-in;
    3129    position: relative;
     
    6765    background: #fff;
    6866    border: 1px solid #e5e5e5;
    69     -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    7067    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    7168    /* Clearfix */
     
    129126    left: 0;
    130127    -webkit-transform: translateY(-50%);
    131     -ms-transform: translateY(-50%);
    132128    transform: translateY(-50%);
    133129    height: 25px;
     
    187183    color: #fff;
    188184    opacity: 1;
    189     -webkit-transition: opacity .25s ease-in-out;
    190185    transition: opacity .25s ease-in-out;
    191186}
     
    217212.wp-embed-share-dialog-open:focus .dashicons,
    218213.wp-embed-share-dialog-close:focus .dashicons {
    219     -webkit-box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, .8);
    220214    box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, .8);
    221     -webkit-border-radius: 100%;
    222215    border-radius: 100%;
    223216}
     
    237230    height: 24px;
    238231    width: 24px;
    239     -webkit-background-size: 24px 24px;
    240232    background-size: 24px;
    241233}
     
    272264    color: #aaa;
    273265    cursor: pointer;
    274     -webkit-transition: color .1s ease-in;
    275266    transition: color .1s ease-in;
    276267}
     
    303294
    304295.wp-embed-share-input {
    305     -webkit-box-sizing: border-box;
    306     -moz-box-sizing: border-box;
    307296    box-sizing: border-box;
    308297    width: 100%;
  • trunk/src/wp-includes/css/wp-pointer.css

    r40570 r41062  
    55    background: #fff;
    66    border: 1px solid #ddd;
    7     -webkit-box-shadow: 0 3px 6px rgba(0,0,0,0.075);
    87    box-shadow: 0 3px 6px rgba(0,0,0,0.075);
    98}
     
    2322.wp-pointer-content h3:before {
    2423    background: #fff;
    25     -webkit-border-radius: 50%;
    2624    border-radius: 50%;
    2725    color: #00a0d2;
Note: See TracChangeset for help on using the changeset viewer.