Making WordPress.org


Ignore:
Timestamp:
07/12/2016 10:17:26 PM (8 years ago)
Author:
obenland
Message:

Plugin Directory: Use autoprefixer for vendor prefixes.

Also adds pixel fallback for older browsers that don't understand rems.
Just to be sure.

See #1719.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-plugins/sass/forms/_fields.scss

    r3346 r3676  
    44input,
    55textarea {
    6     -webkit-box-sizing: border-box;
    7     -moz-box-sizing: border-box;
    86    box-sizing: border-box;
    97}
     
    2927select,
    3028textarea {
    31     -webkit-appearance: none;
    3229    background-color: #fff;
    3330    border: 1px solid $color__border-input;
    34     -webkit-box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 );
    3531    box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 );
    3632    color: $color__text-input;
    37     -webkit-transition: 0.05s border-color ease-in-out;
    3833    transition: 0.05s border-color ease-in-out;
     34    -webkit-appearance: none;
    3935
    4036    &:focus {
     
    6460textarea:focus {
    6561    border-color: #5b9dd9;
    66     -webkit-box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
    6762    box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
    6863}
     
    9287    background: #fff;
    9388    border: 1px solid #b4b9be;
    94     -webkit-box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.1 );
    9589    box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.1 );
    9690    clear: none;
     
    10498    padding: 0 !important;
    10599    text-align: center;
    106     -webkit-transition: .05s border-color ease-in-out;
    107100    transition: .05s border-color ease-in-out;
    108101    vertical-align: middle;
     
    115108
    116109input[type="radio"] {
    117     -webkit-border-radius: 50%;
    118110    border-radius: 50%;
    119111    line-height: 10px;
     
    126118    float: left;
    127119    font: normal 21px/1 dashicons;
     120    vertical-align: middle;
     121    width: 16px;
    128122    -moz-osx-font-smoothing: grayscale;
    129123    -webkit-font-smoothing: antialiased;
    130124    speak: none;
    131     vertical-align: middle;
    132     width: 16px;
    133125}
    134126
     
    142134input[type="radio"]:checked:before {
    143135    background-color: #1e8cbe;
    144     -webkit-border-radius: 50px;
    145136    border-radius: 50px;
    146137    content: "\2022";
     
    163154
    164155/* Search */
    165 input[type="search"] {
    166     -webkit-appearance: textfield;
    167 }
    168 
    169156input[type="search"]::-webkit-search-decoration {
    170157    display: none;
     
    187174input,
    188175select {
    189     -webkit-border-radius: 0;
    190176    border-radius: 0;
    191177    font-size: 16px;
     
    227213    background: rgba( 255, 255, 255, 0.5 );
    228214    border-color: rgba( 222, 222, 222, 0.75 );
    229     -webkit-box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.04 );
    230215    box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.04 );
    231216    color: rgba( 51, 51, 51, 0.5 );
     
    237222input[type="range"].disabled {
    238223    background: none;
    239     -webkit-box-shadow: none;
    240224    box-shadow: none;
    241225}
Note: See TracChangeset for help on using the changeset viewer.