Making WordPress.org


Ignore:
Timestamp:
03/05/2024 02:45:07 AM (2 years ago)
Author:
adamwood
Message:

Support Theme: Redesign iteration 1

Replace wp4 with wporg-parent-2021
Redesign forums homepage
Reskin templates

File:
1 edited

Legend:

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

    r10412 r13272  
    1818input[type="number"],
    1919input[type="password"],
    20 input[type="search"],
    2120input[type="radio"],
    2221input[type="tel"],
     
    2827textarea {
    2928    background-color: #fff;
    30     border: 1px solid $color__border-input;
    31     box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 );
    32     color: $color__text-input;
     29    border: 1px solid var(--wp--preset--color--light-grey-1);
     30    box-shadow: var(--wp--custom--form--color--box-shadow);
     31    color: var(--wp--custom--form--color--text);
    3332    transition: 0.05s border-color ease-in-out;
    3433    -webkit-appearance: none;
    3534
    3635    &:focus {
    37         color: $color__text-input-focus;
     36        color: var(--wp--custom--form--color--text);
    3837    }
    3938}
     
    7170input[type="text"],
    7271input[type="email"],
    73 input[type="search"],
    7472input[type="password"],
    7573input[type="number"] {
     
    126124
    127125input[type="checkbox"]:checked::before {
    128     color: #1e8cbe;
     126    color: var(--wp--preset--color--blueberry-1);
    129127    content: "\f147";
    130128    font: 400 30px/1 dashicons;
     
    133131
    134132input[type="radio"]:checked::before {
    135     background-color: #1e8cbe;
     133    background-color: var(--wp--preset--color--blueberry-1);
    136134    border-radius: 50px;
    137135    content: "\2022";
     
    203201textarea.readonly,
    204202textarea[readonly] {
    205     background-color: $color__background-pre;
     203    background-color: var(--wp--preset--color--light-grey-1);
    206204}
    207205
     
    255253    input[type="text"],
    256254    input[type="email"],
    257     input[type="search"],
    258255    input[type="password"],
    259256    input[type="number"] {
Note: See TracChangeset for help on using the changeset viewer.