Make WordPress Core

Ticket #47153: 47153.3.diff

File 47153.3.diff, 1.8 KB (added by kjellr, 5 years ago)
  • src/wp-admin/css/common.css

    diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
    index 3a84f85..191e7ff 100644
    a b form.upgrade .hint { 
    16751675        margin: 0 20px -1px 0px;
    16761676        position: relative;
    16771677        background-color: #fff;
    1678         border: 1px solid #ddd;
     1678        border: 1px solid #7e8993;
    16791679        border-top: none;
    1680         box-shadow: 0 1px 0 rgba(0, 0, 0, 0.025);
     1680        box-shadow: 0 0 0 transparent;
    16811681}
    16821682
    16831683#screen-options-link-wrap,
    form.upgrade .hint { 
    16921692}
    16931693
    16941694#screen-meta-links .show-settings {
    1695         border: 1px solid #ddd;
     1695        border: 1px solid #7e8993;
    16961696        border-top: none;
    16971697        border-bottom-color: #ccc;
    16981698        height: auto;
    16991699        margin-bottom: 0;
    17001700        padding: 3px 6px 3px 16px;
    17011701        background: #fff;
    1702         border-radius: 0;
     1702        border-radius: 0 0 4px 4px;
    17031703        color: #72777c;
    17041704        line-height: 1.7;
    1705         box-shadow: none;
     1705        box-shadow: 0 0 0 transparent;
     1706        transition: box-shadow 0.1s linear;
    17061707}
    17071708
    17081709#screen-meta-links .show-settings:hover,
  • src/wp-admin/css/forms.css

    diff --git a/src/wp-admin/css/forms.css b/src/wp-admin/css/forms.css
    index b264994..0195c53 100644
    a b input[type="url"], 
    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,
    input[type="radio"]:focus, 
    5153select:focus,
    5254textarea:focus {
    5355        border-color: #5b9dd9;
    54         box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
    5556        /* Only visible in Windows High Contrast mode */
    5657        outline: 2px solid transparent;
    5758}