Make WordPress Core

Ticket #47153: 47153.4.diff

File 47153.4.diff, 2.2 KB (added by kjellr, 6 years ago)
  • src/wp-admin/css/common.css

     
    16811681        margin: 0 20px -1px 0px;
    16821682        position: relative;
    16831683        background-color: #fff;
    1684         border: 1px solid #ddd;
     1684        border: 1px solid #ccd0d4;
    16851685        border-top: none;
    1686         box-shadow: 0 1px 0 rgba(0, 0, 0, 0.025);
     1686        box-shadow: 0 0 0 transparent;
    16871687}
    16881688
    16891689#screen-options-link-wrap,
     
    16981698}
    16991699
    17001700#screen-meta-links .show-settings {
    1701         border: 1px solid #ddd;
     1701        border: 1px solid #ccd0d4;
    17021702        border-top: none;
    1703         border-bottom-color: #ccc;
    17041703        height: auto;
    17051704        margin-bottom: 0;
    17061705        padding: 3px 6px 3px 16px;
    17071706        background: #fff;
    1708         border-radius: 0;
     1707        border-radius: 0 0 4px 4px;
    17091708        color: #72777c;
    17101709        line-height: 1.7;
    1711         box-shadow: none;
     1710        box-shadow: 0 0 0 transparent;
     1711        transition: box-shadow 0.1s linear;
    17121712}
    17131713
    17141714#screen-meta-links .show-settings:hover,
  • src/wp-admin/css/forms.css

     
    2323input[type="week"],
    2424select,
    2525textarea {
    26         border: 1px solid #ddd;
    27         box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07);
     26        padding: 6px 8px;
     27        box-shadow: 0 0 0 transparent;
     28        transition: box-shadow 0.1s linear;
     29        border-radius: 4px;
     30        border: 1px solid #7e8993;
    2831        background-color: #fff;
    2932        color: #32373c;
    3033        outline: none;
    31         transition: 0.05s border-color ease-in-out;
    3234}
    3335
    3436input[type="text"]:focus,
     
    5052input[type="radio"]:focus,
    5153select:focus,
    5254textarea:focus {
    53         border-color: #5b9dd9;
    54         box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
     55        border-color: #007cba;
     56        box-shadow: 0 0 0 1px #007cba;
    5557        /* Only visible in Windows High Contrast mode */
    5658        outline: 2px solid transparent;
    5759}
     
    7072
    7173input[type="checkbox"],
    7274input[type="radio"] {
    73         border: 1px solid #b4b9be;
     75        border: 1px solid #7e8993;
    7476        background: #fff;
    7577        color: #555;
    7678        clear: none;
     
    184186select {
    185187        font-size: 14px;
    186188        padding: 3px 5px;
    187         border-radius: 0; /* Reset mobile webkit's default element styling */
    188189}
    189190
    190191textarea {