Making WordPress.org

Changeset 13470


Ignore:
Timestamp:
04/08/2024 03:40:30 AM (15 months ago)
Author:
adamwood
Message:

wporg-support-2024: Restyle buttons

Style buttons and associated inputs and textarea to match wporg-parent-2021 styles

Closes https://github.com/WordPress/wordpress.org/issues/229

Location:
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024
Files:
7 edited

Legend:

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

    r13272 r13470  
    5454    display: inline-block;
    5555    font-size: ms(-2);
    56     height: ms(4);
     56    height: auto;
    5757    line-height: 1;
    5858    margin: 0;
     
    6161    white-space: nowrap;
    6262    -webkit-appearance: none;
     63    box-shadow: none;
    6364}
    6465
     
    130131
    131132.button,
    132 .button:visited,
    133133.button-secondary {
    134134    background: #f7f7f7;
    135135    border-color: #ccc;
    136     box-shadow: 0 1px 0 #ccc;
     136    box-shadow: none;
    137137    color: #555;
    138     vertical-align: top;
     138    vertical-align: middle;
    139139}
    140140
     
    159159.button-link:focus {
    160160    border-color: #5b9dd9;
    161     box-shadow: 0 0 3px rgba( 0, 115, 170, 0.8 );
     161    box-shadow: none;
    162162}
    163163
     
    168168    background: var(--wp--preset--color--light-grey-1);
    169169    border-color: #999;
    170     box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
     170    box-shadow: none;
    171171    transform: translateY(1px);
    172172}
     
    174174.button.active:focus {
    175175    border-color: #5b9dd9;
    176     box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ), 0 0 3px rgba( 0, 115, 170, 0.8 );
     176    box-shadow: none;
    177177}
    178178
     
    219219input[type="submit"],
    220220button[type="submit"] {
    221     background: var(--wp--custom--button--color--background);
    222     border: var(--wp--custom--button--border--width) var(--wp--custom--button--border--style) var(--wp--custom--button--border--color);
     221    --wp--custom--button--spacing--padding--top: var(--wp--custom--button--small--spacing--padding--top);
     222    --wp--custom--button--spacing--padding--bottom: var(--wp--custom--button--small--spacing--padding--bottom);
     223    --wp--custom--button--spacing--padding--left: var(--wp--custom--button--small--spacing--padding--left);
     224    --wp--custom--button--spacing--padding--right: var(--wp--custom--button--small--spacing--padding--right);
     225
     226    --wp--custom--button--typography--font-size: var(--wp--custom--button--small--typography--font-size);
     227
     228    // Standard button does not have a border, so the padding needs to include
     229    // border size.
     230    // This ensures the outline and filled button are the same height.
     231    border-width: 0;
     232    padding-top: calc(var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
     233    padding-bottom: calc(var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
     234    padding-left: calc(var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
     235    padding-right: calc(var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
    223236    border-radius: var(--wp--custom--button--border--radius);
    224237    box-shadow: none;
     238    opacity: 1;
    225239    color: var(--wp--custom--button--color--text);
    226     text-decoration: none;
    227     text-shadow: none;
    228     font-size: var(--wp--custom--button--small--typography--font-size);
    229     line-height: 1.3;
    230     padding-right: var(--wp--custom--button--small--spacing--padding--right);
    231     padding-left: var(--wp--custom--button--small--spacing--padding--left);
     240    background-color: var(--wp--custom--button--color--background);
     241    font-weight: var(--wp--custom--button--typography--font-weight);
     242    font-family: inherit;
     243    font-size: var(--wp--custom--button--typography--font-size);
     244    line-height: var(--wp--custom--button--typography--line-height);
     245    text-decoration: none; // Needed because link styles inside .entry-content add a text decoration
    232246
    233247    &:visited {
    234         background: var(--wp--custom--button--color--background);
    235         border-color: var(--wp--custom--button--border--color);
    236248        box-shadow: none;
    237         color: var(--wp--custom--button--color--text);
    238249    }
    239250
     
    243254    &:focus {
    244255        background: var(--wp--custom--button--hover--color--background);
    245         border-color: var(--wp--custom--button--hover--color--background);
    246256        box-shadow: none;
    247257        color: var(--wp--custom--button--hover--color--text);
     
    250260    &.focus,
    251261    &:focus {
    252         box-shadow: none;
    253         border-color: var(--wp--custom--button--focus--border--color);
     262        background-color: var(--wp--custom--button--color--background);
     263        box-shadow: inset 0 0 0 3px var(--wp--preset--color--white);
     264        outline: 1.5px solid var(--wp--custom--button--focus--border--color);
     265        outline-offset: -1.5px;
    254266    }
    255267
     
    258270    &.active:focus,
    259271    &:active {
    260         background: var(--wp--custom--button--active--color--background);
    261         border-color: var(--wp--custom--button--active--border--color);
     272        padding-top: var(--wp--custom--button--spacing--padding--top);
     273        padding-bottom: var(--wp--custom--button--spacing--padding--bottom);
     274        padding-left: var(--wp--custom--button--spacing--padding--left);
     275        padding-right: var(--wp--custom--button--spacing--padding--right);
     276        border: var(--wp--custom--button--border--width) solid currentColor;
    262277        color: var(--wp--custom--button--active--color--text);
    263         box-shadow: none;
    264         vertical-align: top;
     278        background-color: var(--wp--custom--button--active--color--background);
    265279    }
    266280
     
    269283    &.disabled {
    270284        background: var(--wp--custom--button--disabled--background-color) !important;
    271         border-color: var(--wp--custom--button--disabled--border-color) !important;
    272285        box-shadow: none !important;
    273286        color: var(--wp--custom--button--disabled--color) !important;
     
    276289
    277290    &.button.button-hero {
    278         box-shadow: 0 2px 0 #006799;
     291        box-shadow: none;
    279292
    280293        &.active,
     
    282295        &.active:focus,
    283296        &:active {
    284             box-shadow: inset 0 3px 0 #006799;
     297            box-shadow: none;
    285298        }
    286299    }
     
    335348    z-index: 1;
    336349}
    337 
    338 /* ----------------------------------------------------------------------------
    339   5.0 - Responsive Button Styles
    340 ---------------------------------------------------------------------------- */
    341 
    342 @media screen and ( max-width: $ms-breakpoint ) {
    343 
    344     .button,
    345     .button.button-large,
    346     .button.button-small {
    347         font-size: 14px;
    348         height: auto;
    349         line-height: normal;
    350         margin-bottom: 4px;
    351         padding: 6px 14px;
    352         vertical-align: middle;
    353     }
    354 }
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/sass/forms/_fields.scss

    r13272 r13470  
    33/* Include margin and padding in the width calculation of input and textarea. */
    44input,
    5 textarea {
     5textarea,
     6select {
    67    box-sizing: border-box;
    7 }
    8 
    9 input[type="text"],
    10 input[type="password"],
    11 input[type="checkbox"],
    12 input[type="color"],
    13 input[type="date"],
    14 input[type="datetime"],
    15 input[type="datetime-local"],
    16 input[type="email"],
    17 input[type="month"],
    18 input[type="number"],
    19 input[type="password"],
     8    line-height: var(--wp--custom--form--line-height);
     9}
     10
    2011input[type="radio"],
    21 input[type="tel"],
    22 input[type="text"],
    23 input[type="time"],
    24 input[type="url"],
    25 input[type="week"],
    26 select,
    27 textarea {
     12input[type="checkbox"] {
    2813    background-color: #fff;
    2914    border: 1px solid var(--wp--preset--color--light-grey-1);
     
    3823}
    3924
    40 input[type="text"]:focus,
    41 input[type="password"]:focus,
    42 input[type="color"]:focus,
    43 input[type="date"]:focus,
    44 input[type="datetime"]:focus,
    45 input[type="datetime-local"]:focus,
    46 input[type="email"]:focus,
    47 input[type="month"]:focus,
    48 input[type="number"]:focus,
    49 input[type="password"]:focus,
    50 input[type="search"]:focus,
    51 input[type="tel"]:focus,
    52 input[type="text"]:focus,
    53 input[type="time"]:focus,
    54 input[type="url"]:focus,
    55 input[type="week"]:focus,
    5625input[type="checkbox"]:focus,
    57 input[type="radio"]:focus,
    58 select:focus,
    59 textarea:focus {
     26input[type="radio"]:focus {
    6027    border-color: #5b9dd9;
    6128    box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
    62 }
    63 
    64 /* rtl:ignore */
    65 input[type="email"],
    66 input[type="url"] {
    67     direction: ltr;
    68 }
    69 
    70 input[type="text"],
    71 input[type="email"],
    72 input[type="password"],
    73 input[type="number"] {
    74     padding: 6px 10px;
    75 }
    76 
    77 /* Vertically align the number selector with the input. */
    78 input[type="number"] {
    79     height: 40px;
    80     line-height: inherit;
    8129}
    8230
     
    152100}
    153101
     102select {
     103    background: var(--wp--custom--form--color--background);
     104    border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
     105    border-radius: var(--wp--custom--form--border--radius);
     106    box-shadow: var(--wp--custom--form--color--box-shadow);
     107    font-family: inherit;
     108    height: 40px;
     109
     110    &:focus {
     111        border-color: var(--custom--form--color--border);
     112    }
     113}
     114
    154115/* Search */
    155116input[type="search"]::-webkit-search-decoration {
    156117    display: none;
    157 }
    158 
    159 .ie8 input[type="password"] {
    160     font-family: sans-serif;
    161 }
    162 
    163 textarea,
    164 input,
    165 select,
    166 button {
    167     font-family: inherit;
    168     font-size: inherit;
    169     font-weight: inherit;
    170 }
    171 
    172 textarea,
    173 input,
    174 select {
    175     border-radius: 0;
    176     font-size: 16px;
    177     padding: 3px 5px; /* Reset mobile webkit's default element styling */
    178 }
    179 
    180 textarea {
    181     line-height: 1.4;
    182     overflow: auto;
    183     padding: 2px 6px;
    184     resize: vertical;
    185 
    186     .comment-form-comment & {
    187         width: 100%;
    188     }
    189118}
    190119
     
    250179@media screen and ( min-width: 48em ) {
    251180
    252     /* Input Elements */
    253     input[type="text"],
    254     input[type="email"],
    255     input[type="password"],
    256     input[type="number"] {
    257         padding: 0;
    258     }
    259 
    260     input[type="number"] {
    261         height: 28px;
    262     }
    263 
    264181    input[type="checkbox"] {
    265182        padding: 0;
     
    282199        margin: 4px;
    283200    }
    284 
    285     textarea,
    286     input,
    287     select {
    288         font-size: 14px;
    289     }
    290 }
     201}
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_bbpress.scss

    r13461 r13470  
    678678    }
    679679
    680     .wporg-bbp-term-subscription > a,
    681680    .reviews-submit-link > .btn,
    682681    .subscription-toggle,
     
    761760    }
    762761
     762    #bbp-user-body {
     763
     764        div.bbp-search-form {
     765
     766            form > div {
     767                margin-bottom: var(--wp--style--block-gap);
     768                display: flex;
     769
     770                input[type="text"] {
     771                    flex: 1;
     772                    margin-right: calc(var(--wp--preset--spacing--10) / 2);
     773                }
     774            }
     775
     776            button,
     777            input {
     778
     779                @media only screen and (max-width: 480px) {
     780                    font-size: var(--wp--preset--font-size--small);
     781                    padding: var(--wp--custom--form--padding--block) var(--wp--custom--form--padding--inline);
     782                }
     783            }
     784        }
     785    }
     786
    763787    @media (max-width: 767px) {
     788
     789        #bbp-user-body {
     790
     791            div.bbp-search-form {
     792                float: none;
     793            }
     794
     795            h2.entry-title {
     796                clear: right;
     797            }
     798        }
    764799
    765800        input[type="text"] {
     
    800835.topic-resolved {
    801836
    802     label {
    803         vertical-align: none;
     837    form {
     838        width: 100%;
     839        display: flex;
     840        flex-wrap: wrap;
     841        align-items: center;
     842        gap: calc(var(--wp--preset--spacing--10) / 2);
    804843    }
    805844
    806845    select {
    807         width: 120px;
    808         line-height: 1;
     846        width: 150px;
    809847    }
    810848}
     
    11261164        textarea {
    11271165            width: 100%;
    1128             padding: 0.2rem 0.5rem 0.1rem;
    11291166            margin: 4px 0 8px;
    11301167        }
     
    11811218
    11821219    input[type="text"] {
    1183         padding: 3px 5px;
    11841220
    11851221        @media (max-width: 767px) {
     
    11941230.bbpress #bbpress-forums #bbp-user-wrapper {
    11951231    font-size: var(--wp--preset--font-size--small);
     1232
     1233    .bbp-user-section {
     1234        margin-top: var(--wp--style--block-gap);
     1235    }
    11961236}
    11971237
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/style-rtl.css

    r13461 r13470  
    13531353  1.0 - Button Layouts
    13541354---------------------------------------------------------------------------- */
    1355 .button, #bbpress-forums .wporg-bbp-term-subscription > a,
    1356 #bbpress-forums .reviews-submit-link > .btn,
     1355.button, #bbpress-forums .reviews-submit-link > .btn,
    13571356#bbpress-forums .subscription-toggle,
    13581357#bbpress-forums .favorite-toggle,
    13591358.button-primary,
    13601359#bbpress-forums fieldset.bbp-form .button.submit,
    1361 #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit,
    13621360#bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn,
    13631361#bbpress-forums fieldset.bbp-form .submit.subscription-toggle,
     
    13701368    display: inline-block;
    13711369    font-size: 0.8rem;
    1372     height: 1.5625rem;
     1370    height: auto;
    13731371    line-height: 1;
    13741372    margin: 0;
     
    13771375    white-space: nowrap;
    13781376    -webkit-appearance: none;
     1377    box-shadow: none;
    13791378}
    13801379
     
    13881387}
    13891388
    1390 .button.button-large, #bbpress-forums .wporg-bbp-term-subscription > a.button-large,
    1391 #bbpress-forums .reviews-submit-link > .button-large.btn,
     1389.button.button-large, #bbpress-forums .reviews-submit-link > .button-large.btn,
    13921390#bbpress-forums .button-large.subscription-toggle,
    13931391#bbpress-forums .button-large.favorite-toggle,
    13941392.button-group.button-large .button,
    1395 .button-group.button-large #bbpress-forums .wporg-bbp-term-subscription > a,
    1396 #bbpress-forums .button-group.button-large .wporg-bbp-term-subscription > a,
    13971393.button-group.button-large #bbpress-forums .reviews-submit-link > .btn,
    13981394#bbpress-forums .button-group.button-large .reviews-submit-link > .btn,
     
    14061402}
    14071403
    1408 .button.button-small, #bbpress-forums .wporg-bbp-term-subscription > a.button-small,
    1409 #bbpress-forums .reviews-submit-link > .button-small.btn,
     1404.button.button-small, #bbpress-forums .reviews-submit-link > .button-small.btn,
    14101405#bbpress-forums .button-small.subscription-toggle,
    14111406#bbpress-forums .button-small.favorite-toggle,
    14121407.button-group.button-small .button,
    1413 .button-group.button-small #bbpress-forums .wporg-bbp-term-subscription > a,
    1414 #bbpress-forums .button-group.button-small .wporg-bbp-term-subscription > a,
    14151408.button-group.button-small #bbpress-forums .reviews-submit-link > .btn,
    14161409#bbpress-forums .button-group.button-small .reviews-submit-link > .btn,
     
    14251418}
    14261419
    1427 a.button, #bbpress-forums .wporg-bbp-term-subscription > a,
    1428 #bbpress-forums .reviews-submit-link > a.btn,
     1420a.button, #bbpress-forums .reviews-submit-link > a.btn,
    14291421#bbpress-forums a.subscription-toggle,
    14301422#bbpress-forums a.favorite-toggle,
    14311423a.button-primary,
    14321424#bbpress-forums fieldset.bbp-form a.button.submit,
    1433 #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit,
    14341425#bbpress-forums fieldset.bbp-form .reviews-submit-link > a.submit.btn,
    14351426#bbpress-forums fieldset.bbp-form a.submit.subscription-toggle,
     
    14391430}
    14401431
    1441 a.button.button-large, #bbpress-forums .wporg-bbp-term-subscription > a.button-large,
    1442 #bbpress-forums .reviews-submit-link > a.button-large.btn,
     1432a.button.button-large, #bbpress-forums .reviews-submit-link > a.button-large.btn,
    14431433#bbpress-forums a.button-large.subscription-toggle,
    14441434#bbpress-forums a.button-large.favorite-toggle,
    14451435.button-group.button-large a.button,
    1446 .button-group.button-large #bbpress-forums .wporg-bbp-term-subscription > a,
    1447 #bbpress-forums .button-group.button-large .wporg-bbp-term-subscription > a,
    14481436.button-group.button-large #bbpress-forums .reviews-submit-link > a.btn,
    14491437#bbpress-forums .button-group.button-large .reviews-submit-link > a.btn,
     
    14551443}
    14561444
    1457 a.button.button-small, #bbpress-forums .wporg-bbp-term-subscription > a.button-small,
    1458 #bbpress-forums .reviews-submit-link > a.button-small.btn,
     1445a.button.button-small, #bbpress-forums .reviews-submit-link > a.button-small.btn,
    14591446#bbpress-forums a.button-small.subscription-toggle,
    14601447#bbpress-forums a.button-small.favorite-toggle,
    14611448.button-group.button-small a.button,
    1462 .button-group.button-small #bbpress-forums .wporg-bbp-term-subscription > a,
    1463 #bbpress-forums .button-group.button-small .wporg-bbp-term-subscription > a,
    14641449.button-group.button-small #bbpress-forums .reviews-submit-link > a.btn,
    14651450#bbpress-forums .button-group.button-small .reviews-submit-link > a.btn,
     
    14711456}
    14721457
    1473 .button:active, #bbpress-forums .wporg-bbp-term-subscription > a:active,
    1474 #bbpress-forums .reviews-submit-link > .btn:active,
     1458.button:active, #bbpress-forums .reviews-submit-link > .btn:active,
    14751459#bbpress-forums .subscription-toggle:active,
    14761460#bbpress-forums .favorite-toggle:active,
    14771461.button:focus,
    1478 #bbpress-forums .wporg-bbp-term-subscription > a:focus,
    14791462#bbpress-forums .reviews-submit-link > .btn:focus,
    14801463#bbpress-forums .subscription-toggle:focus,
     
    14831466}
    14841467
    1485 .button.hidden, #bbpress-forums .wporg-bbp-term-subscription > a.hidden,
    1486 #bbpress-forums .reviews-submit-link > .hidden.btn,
     1468.button.hidden, #bbpress-forums .reviews-submit-link > .hidden.btn,
    14871469#bbpress-forums .hidden.subscription-toggle,
    14881470#bbpress-forums .hidden.favorite-toggle {
     
    15051487  2.0 - Default Button Style
    15061488---------------------------------------------------------------------------- */
    1507 .button, #bbpress-forums .wporg-bbp-term-subscription > a,
    1508 #bbpress-forums .reviews-submit-link > .btn,
     1489.button, #bbpress-forums .reviews-submit-link > .btn,
    15091490#bbpress-forums .subscription-toggle,
    15101491#bbpress-forums .favorite-toggle,
    1511 .button:visited,
    1512 #bbpress-forums .wporg-bbp-term-subscription > a:visited,
    1513 #bbpress-forums .reviews-submit-link > .btn:visited,
    1514 #bbpress-forums .subscription-toggle:visited,
    1515 #bbpress-forums .favorite-toggle:visited,
    15161492.button-secondary {
    15171493    background: #f7f7f7;
    15181494    border-color: #ccc;
    1519     box-shadow: 0 1px 0 #ccc;
     1495    box-shadow: none;
    15201496    color: #555;
    1521     vertical-align: top;
    1522 }
    1523 
    1524 p .button, p #bbpress-forums .wporg-bbp-term-subscription > a, #bbpress-forums p .wporg-bbp-term-subscription > a,
    1525 p #bbpress-forums .reviews-submit-link > .btn,
    1526 #bbpress-forums p .reviews-submit-link > .btn,
     1497    vertical-align: middle;
     1498}
     1499
     1500p .button, p #bbpress-forums .reviews-submit-link > .btn, #bbpress-forums p .reviews-submit-link > .btn,
    15271501p #bbpress-forums .subscription-toggle,
    15281502#bbpress-forums p .subscription-toggle,
     
    15321506}
    15331507
    1534 .button.hover, #bbpress-forums .wporg-bbp-term-subscription > a.hover,
    1535 #bbpress-forums .reviews-submit-link > .hover.btn,
     1508.button.hover, #bbpress-forums .reviews-submit-link > .hover.btn,
    15361509#bbpress-forums .hover.subscription-toggle,
    15371510#bbpress-forums .hover.favorite-toggle,
    15381511.button:hover,
    1539 #bbpress-forums .wporg-bbp-term-subscription > a:hover,
    15401512#bbpress-forums .reviews-submit-link > .btn:hover,
    15411513#bbpress-forums .subscription-toggle:hover,
     
    15431515.button-secondary:hover,
    15441516.button.focus,
    1545 #bbpress-forums .wporg-bbp-term-subscription > a.focus,
    15461517#bbpress-forums .reviews-submit-link > .focus.btn,
    15471518#bbpress-forums .focus.subscription-toggle,
    15481519#bbpress-forums .focus.favorite-toggle,
    15491520.button:focus,
    1550 #bbpress-forums .wporg-bbp-term-subscription > a:focus,
    15511521#bbpress-forums .reviews-submit-link > .btn:focus,
    15521522#bbpress-forums .subscription-toggle:focus,
     
    15581528}
    15591529
    1560 .button.focus, #bbpress-forums .wporg-bbp-term-subscription > a.focus,
    1561 #bbpress-forums .reviews-submit-link > .focus.btn,
     1530.button.focus, #bbpress-forums .reviews-submit-link > .focus.btn,
    15621531#bbpress-forums .focus.subscription-toggle,
    15631532#bbpress-forums .focus.favorite-toggle,
    15641533.button:focus,
    1565 #bbpress-forums .wporg-bbp-term-subscription > a:focus,
    15661534#bbpress-forums .reviews-submit-link > .btn:focus,
    15671535#bbpress-forums .subscription-toggle:focus,
     
    15701538.button-link:focus {
    15711539    border-color: #5b9dd9;
    1572     box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
    1573 }
    1574 
    1575 .button.active, #bbpress-forums .wporg-bbp-term-subscription > a.active,
    1576 #bbpress-forums .reviews-submit-link > .active.btn,
     1540    box-shadow: none;
     1541}
     1542
     1543.button.active, #bbpress-forums .reviews-submit-link > .active.btn,
    15771544#bbpress-forums .active.subscription-toggle,
    15781545#bbpress-forums .active.favorite-toggle,
    15791546.button.active:hover,
    1580 #bbpress-forums .wporg-bbp-term-subscription > a.active:hover,
    15811547#bbpress-forums .reviews-submit-link > .active.btn:hover,
    15821548#bbpress-forums .active.subscription-toggle:hover,
    15831549#bbpress-forums .active.favorite-toggle:hover,
    15841550.button:active,
    1585 #bbpress-forums .wporg-bbp-term-subscription > a:active,
    15861551#bbpress-forums .reviews-submit-link > .btn:active,
    15871552#bbpress-forums .subscription-toggle:active,
     
    15901555    background: var(--wp--preset--color--light-grey-1);
    15911556    border-color: #999;
    1592     box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
     1557    box-shadow: none;
    15931558    transform: translateY(1px);
    15941559}
    15951560
    1596 .button.active:focus, #bbpress-forums .wporg-bbp-term-subscription > a.active:focus,
    1597 #bbpress-forums .reviews-submit-link > .active.btn:focus,
     1561.button.active:focus, #bbpress-forums .reviews-submit-link > .active.btn:focus,
    15981562#bbpress-forums .active.subscription-toggle:focus,
    15991563#bbpress-forums .active.favorite-toggle:focus {
    16001564    border-color: #5b9dd9;
    1601     box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5), 0 0 3px rgba(0, 115, 170, 0.8);
    1602 }
    1603 
    1604 .button[disabled], #bbpress-forums .wporg-bbp-term-subscription > a[disabled],
    1605 #bbpress-forums .reviews-submit-link > [disabled].btn,
     1565    box-shadow: none;
     1566}
     1567
     1568.button[disabled], #bbpress-forums .reviews-submit-link > [disabled].btn,
    16061569#bbpress-forums [disabled].subscription-toggle,
    16071570#bbpress-forums [disabled].favorite-toggle,
    16081571.button:disabled,
    1609 #bbpress-forums .wporg-bbp-term-subscription > a:disabled,
    16101572#bbpress-forums .reviews-submit-link > .btn:disabled,
    16111573#bbpress-forums .subscription-toggle:disabled,
    16121574#bbpress-forums .favorite-toggle:disabled,
    16131575.button.disabled,
    1614 #bbpress-forums .wporg-bbp-term-subscription > a.disabled,
    16151576#bbpress-forums .reviews-submit-link > .disabled.btn,
    16161577#bbpress-forums .disabled.subscription-toggle,
     
    16491610  3.0 - Primary Button Style
    16501611---------------------------------------------------------------------------- */
    1651 .button-primary, #bbpress-forums fieldset.bbp-form .button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit,
    1652 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn,
     1612.button-primary, #bbpress-forums fieldset.bbp-form .button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn,
    16531613#bbpress-forums fieldset.bbp-form .submit.subscription-toggle,
    16541614#bbpress-forums fieldset.bbp-form .submit.favorite-toggle,
     
    16571617input[type=submit],
    16581618button[type=submit] {
    1659     background: var(--wp--custom--button--color--background);
    1660     border: var(--wp--custom--button--border--width) var(--wp--custom--button--border--style) var(--wp--custom--button--border--color);
     1619    --wp--custom--button--spacing--padding--top: var(--wp--custom--button--small--spacing--padding--top);
     1620    --wp--custom--button--spacing--padding--bottom: var(--wp--custom--button--small--spacing--padding--bottom);
     1621    --wp--custom--button--spacing--padding--left: var(--wp--custom--button--small--spacing--padding--left);
     1622    --wp--custom--button--spacing--padding--right: var(--wp--custom--button--small--spacing--padding--right);
     1623    --wp--custom--button--typography--font-size: var(--wp--custom--button--small--typography--font-size);
     1624    border-width: 0;
     1625    padding-top: calc(var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
     1626    padding-bottom: calc(var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
     1627    padding-right: calc(var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
     1628    padding-left: calc(var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
    16611629    border-radius: var(--wp--custom--button--border--radius);
    16621630    box-shadow: none;
     1631    opacity: 1;
    16631632    color: var(--wp--custom--button--color--text);
     1633    background-color: var(--wp--custom--button--color--background);
     1634    font-weight: var(--wp--custom--button--typography--font-weight);
     1635    font-family: inherit;
     1636    font-size: var(--wp--custom--button--typography--font-size);
     1637    line-height: var(--wp--custom--button--typography--line-height);
    16641638    text-decoration: none;
    1665     text-shadow: none;
    1666     font-size: var(--wp--custom--button--small--typography--font-size);
    1667     line-height: 1.3;
    1668     padding-left: var(--wp--custom--button--small--spacing--padding--right);
    1669     padding-right: var(--wp--custom--button--small--spacing--padding--left);
    1670 }
    1671 .button-primary:visited, #bbpress-forums fieldset.bbp-form .button.submit:visited, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:visited,
    1672 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:visited,
     1639}
     1640.button-primary:visited, #bbpress-forums fieldset.bbp-form .button.submit:visited, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:visited,
    16731641#bbpress-forums fieldset.bbp-form .submit.subscription-toggle:visited,
    16741642#bbpress-forums fieldset.bbp-form .submit.favorite-toggle:visited,
     
    16771645input[type=submit]:visited,
    16781646button[type=submit]:visited {
    1679     background: var(--wp--custom--button--color--background);
    1680     border-color: var(--wp--custom--button--border--color);
    16811647    box-shadow: none;
    1682     color: var(--wp--custom--button--color--text);
    1683 }
    1684 .button-primary.hover, #bbpress-forums fieldset.bbp-form .hover.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.hover.submit,
    1685 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .hover.submit.btn,
     1648}
     1649.button-primary.hover, #bbpress-forums fieldset.bbp-form .hover.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .hover.submit.btn,
    16861650#bbpress-forums fieldset.bbp-form .hover.submit.subscription-toggle,
    1687 #bbpress-forums fieldset.bbp-form .hover.submit.favorite-toggle, .button-primary:hover, #bbpress-forums fieldset.bbp-form .button.submit:hover, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:hover,
    1688 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:hover,
     1651#bbpress-forums fieldset.bbp-form .hover.submit.favorite-toggle, .button-primary:hover, #bbpress-forums fieldset.bbp-form .button.submit:hover, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:hover,
    16891652#bbpress-forums fieldset.bbp-form .submit.subscription-toggle:hover,
    1690 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:hover, .button-primary.focus, #bbpress-forums fieldset.bbp-form .focus.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.focus.submit,
    1691 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .focus.submit.btn,
     1653#bbpress-forums fieldset.bbp-form .submit.favorite-toggle:hover, .button-primary.focus, #bbpress-forums fieldset.bbp-form .focus.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .focus.submit.btn,
    16921654#bbpress-forums fieldset.bbp-form .focus.submit.subscription-toggle,
    1693 #bbpress-forums fieldset.bbp-form .focus.submit.favorite-toggle, .button-primary:focus, #bbpress-forums fieldset.bbp-form .button.submit:focus, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:focus,
    1694 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:focus,
     1655#bbpress-forums fieldset.bbp-form .focus.submit.favorite-toggle, .button-primary:focus, #bbpress-forums fieldset.bbp-form .button.submit:focus, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:focus,
    16951656#bbpress-forums fieldset.bbp-form .submit.subscription-toggle:focus,
    16961657#bbpress-forums fieldset.bbp-form .submit.favorite-toggle:focus,
     
    17121673button[type=submit]:focus {
    17131674    background: var(--wp--custom--button--hover--color--background);
    1714     border-color: var(--wp--custom--button--hover--color--background);
    17151675    box-shadow: none;
    17161676    color: var(--wp--custom--button--hover--color--text);
    17171677}
    1718 .button-primary.focus, #bbpress-forums fieldset.bbp-form .focus.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.focus.submit,
    1719 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .focus.submit.btn,
     1678.button-primary.focus, #bbpress-forums fieldset.bbp-form .focus.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .focus.submit.btn,
    17201679#bbpress-forums fieldset.bbp-form .focus.submit.subscription-toggle,
    1721 #bbpress-forums fieldset.bbp-form .focus.submit.favorite-toggle, .button-primary:focus, #bbpress-forums fieldset.bbp-form .button.submit:focus, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:focus,
    1722 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:focus,
     1680#bbpress-forums fieldset.bbp-form .focus.submit.favorite-toggle, .button-primary:focus, #bbpress-forums fieldset.bbp-form .button.submit:focus, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:focus,
    17231681#bbpress-forums fieldset.bbp-form .submit.subscription-toggle:focus,
    17241682#bbpress-forums fieldset.bbp-form .submit.favorite-toggle:focus,
     
    17311689button[type=submit].focus,
    17321690button[type=submit]:focus {
    1733     box-shadow: none;
    1734     border-color: var(--wp--custom--button--focus--border--color);
    1735 }
    1736 .button-primary.active, #bbpress-forums fieldset.bbp-form .active.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.active.submit,
    1737 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .active.submit.btn,
     1691    background-color: var(--wp--custom--button--color--background);
     1692    box-shadow: inset 0 0 0 3px var(--wp--preset--color--white);
     1693    outline: 1.5px solid var(--wp--custom--button--focus--border--color);
     1694    outline-offset: -1.5px;
     1695}
     1696.button-primary.active, #bbpress-forums fieldset.bbp-form .active.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .active.submit.btn,
    17381697#bbpress-forums fieldset.bbp-form .active.submit.subscription-toggle,
    1739 #bbpress-forums fieldset.bbp-form .active.submit.favorite-toggle, .button-primary.active:hover, .button-primary.active:focus, .button-primary:active, #bbpress-forums fieldset.bbp-form .button.submit:active, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:active,
    1740 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:active,
     1698#bbpress-forums fieldset.bbp-form .active.submit.favorite-toggle, .button-primary.active:hover, .button-primary.active:focus, .button-primary:active, #bbpress-forums fieldset.bbp-form .button.submit:active, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:active,
    17411699#bbpress-forums fieldset.bbp-form .submit.subscription-toggle:active,
    17421700#bbpress-forums fieldset.bbp-form .submit.favorite-toggle:active,
     
    17571715button[type=submit].active:focus,
    17581716button[type=submit]:active {
    1759     background: var(--wp--custom--button--active--color--background);
    1760     border-color: var(--wp--custom--button--active--border--color);
     1717    padding-top: var(--wp--custom--button--spacing--padding--top);
     1718    padding-bottom: var(--wp--custom--button--spacing--padding--bottom);
     1719    padding-right: var(--wp--custom--button--spacing--padding--left);
     1720    padding-left: var(--wp--custom--button--spacing--padding--right);
     1721    border: var(--wp--custom--button--border--width) solid currentColor;
    17611722    color: var(--wp--custom--button--active--color--text);
    1762     box-shadow: none;
    1763     vertical-align: top;
    1764 }
    1765 .button-primary[disabled], #bbpress-forums fieldset.bbp-form [disabled].button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a[disabled].submit,
    1766 #bbpress-forums fieldset.bbp-form .reviews-submit-link > [disabled].submit.btn,
     1723    background-color: var(--wp--custom--button--active--color--background);
     1724}
     1725.button-primary[disabled], #bbpress-forums fieldset.bbp-form [disabled].button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > [disabled].submit.btn,
    17671726#bbpress-forums fieldset.bbp-form [disabled].submit.subscription-toggle,
    1768 #bbpress-forums fieldset.bbp-form [disabled].submit.favorite-toggle, .button-primary:disabled, #bbpress-forums fieldset.bbp-form .button.submit:disabled, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:disabled,
    1769 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:disabled,
     1727#bbpress-forums fieldset.bbp-form [disabled].submit.favorite-toggle, .button-primary:disabled, #bbpress-forums fieldset.bbp-form .button.submit:disabled, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:disabled,
    17701728#bbpress-forums fieldset.bbp-form .submit.subscription-toggle:disabled,
    1771 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:disabled, .button-primary.disabled, #bbpress-forums fieldset.bbp-form .disabled.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.disabled.submit,
    1772 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .disabled.submit.btn,
     1729#bbpress-forums fieldset.bbp-form .submit.favorite-toggle:disabled, .button-primary.disabled, #bbpress-forums fieldset.bbp-form .disabled.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .disabled.submit.btn,
    17731730#bbpress-forums fieldset.bbp-form .disabled.submit.subscription-toggle,
    17741731#bbpress-forums fieldset.bbp-form .disabled.submit.favorite-toggle,
     
    17861743button[type=submit].disabled {
    17871744    background: var(--wp--custom--button--disabled--background-color) !important;
    1788     border-color: var(--wp--custom--button--disabled--border-color) !important;
    17891745    box-shadow: none !important;
    17901746    color: var(--wp--custom--button--disabled--color) !important;
    17911747    cursor: default;
    17921748}
    1793 .button-primary.button.button-hero, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero,
    1794 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.btn,
     1749.button-primary.button.button-hero, #bbpress-forums .reviews-submit-link > .button-primary.button-hero.btn,
    17951750#bbpress-forums .button-primary.button-hero.subscription-toggle,
    1796 #bbpress-forums .button-primary.button-hero.favorite-toggle, #bbpress-forums fieldset.bbp-form .button.button-hero.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.button-hero.submit,
    1797 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.submit.btn,
     1751#bbpress-forums .button-primary.button-hero.favorite-toggle, #bbpress-forums fieldset.bbp-form .button.button-hero.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.submit.btn,
    17981752#bbpress-forums fieldset.bbp-form .button-hero.submit.subscription-toggle,
    17991753#bbpress-forums fieldset.bbp-form .button-hero.submit.favorite-toggle,
    18001754.download-button.button.button-hero,
    1801 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero,
    18021755#bbpress-forums .reviews-submit-link > .download-button.button-hero.btn,
    18031756#bbpress-forums .download-button.button-hero.subscription-toggle,
    18041757#bbpress-forums .download-button.button-hero.favorite-toggle,
    18051758.is-primary.button.button-hero,
    1806 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero,
    18071759#bbpress-forums .reviews-submit-link > .is-primary.button-hero.btn,
    18081760#bbpress-forums .is-primary.button-hero.subscription-toggle,
     
    18161768#bbpress-forums button[type=submit].button-hero.subscription-toggle,
    18171769#bbpress-forums button[type=submit].button-hero.favorite-toggle {
    1818     box-shadow: 0 2px 0 #006799;
    1819 }
    1820 .button-primary.button.button-hero.active, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero.active,
    1821 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.active.btn,
     1770    box-shadow: none;
     1771}
     1772.button-primary.button.button-hero.active, #bbpress-forums .reviews-submit-link > .button-primary.button-hero.active.btn,
    18221773#bbpress-forums .button-primary.button-hero.active.subscription-toggle,
    1823 #bbpress-forums .button-primary.button-hero.active.favorite-toggle, #bbpress-forums fieldset.bbp-form .button.button-hero.active.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.button-hero.active.submit,
    1824 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.active.submit.btn,
     1774#bbpress-forums .button-primary.button-hero.active.favorite-toggle, #bbpress-forums fieldset.bbp-form .button.button-hero.active.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.active.submit.btn,
    18251775#bbpress-forums fieldset.bbp-form .button-hero.active.submit.subscription-toggle,
    1826 #bbpress-forums fieldset.bbp-form .button-hero.active.submit.favorite-toggle, .button-primary.button.button-hero.active:hover, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero.active:hover,
    1827 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.active.btn:hover,
    1828 #bbpress-forums .button-primary.button-hero.active.subscription-toggle:hover,
    1829 #bbpress-forums .button-primary.button-hero.active.favorite-toggle:hover, .button-primary.button.button-hero.active:focus, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero.active:focus,
    1830 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.active.btn:focus,
    1831 #bbpress-forums .button-primary.button-hero.active.subscription-toggle:focus,
    1832 #bbpress-forums .button-primary.button-hero.active.favorite-toggle:focus, .button-primary.button.button-hero:active, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero:active,
    1833 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.btn:active,
     1776#bbpress-forums fieldset.bbp-form .button-hero.active.submit.favorite-toggle, .button-primary.button.button-hero.active:hover, .button-primary.button.button-hero.active:focus, .button-primary.button.button-hero:active, #bbpress-forums .reviews-submit-link > .button-primary.button-hero.btn:active,
    18341777#bbpress-forums .button-primary.button-hero.subscription-toggle:active,
    1835 #bbpress-forums .button-primary.button-hero.favorite-toggle:active, #bbpress-forums fieldset.bbp-form .button.button-hero.submit:active, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.button-hero.submit:active,
    1836 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.submit.btn:active,
     1778#bbpress-forums .button-primary.button-hero.favorite-toggle:active, #bbpress-forums fieldset.bbp-form .button.button-hero.submit:active, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.submit.btn:active,
    18371779#bbpress-forums fieldset.bbp-form .button-hero.submit.subscription-toggle:active,
    18381780#bbpress-forums fieldset.bbp-form .button-hero.submit.favorite-toggle:active,
    18391781.download-button.button.button-hero.active,
    1840 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero.active,
    18411782#bbpress-forums .reviews-submit-link > .download-button.button-hero.active.btn,
    18421783#bbpress-forums .download-button.button-hero.active.subscription-toggle,
    18431784#bbpress-forums .download-button.button-hero.active.favorite-toggle,
    18441785.download-button.button.button-hero.active:hover,
    1845 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero.active:hover,
    1846 #bbpress-forums .reviews-submit-link > .download-button.button-hero.active.btn:hover,
    1847 #bbpress-forums .download-button.button-hero.active.subscription-toggle:hover,
    1848 #bbpress-forums .download-button.button-hero.active.favorite-toggle:hover,
    18491786.download-button.button.button-hero.active:focus,
    1850 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero.active:focus,
    1851 #bbpress-forums .reviews-submit-link > .download-button.button-hero.active.btn:focus,
    1852 #bbpress-forums .download-button.button-hero.active.subscription-toggle:focus,
    1853 #bbpress-forums .download-button.button-hero.active.favorite-toggle:focus,
    18541787.download-button.button.button-hero:active,
    1855 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero:active,
    18561788#bbpress-forums .reviews-submit-link > .download-button.button-hero.btn:active,
    18571789#bbpress-forums .download-button.button-hero.subscription-toggle:active,
    18581790#bbpress-forums .download-button.button-hero.favorite-toggle:active,
    18591791.is-primary.button.button-hero.active,
    1860 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero.active,
    18611792#bbpress-forums .reviews-submit-link > .is-primary.button-hero.active.btn,
    18621793#bbpress-forums .is-primary.button-hero.active.subscription-toggle,
    18631794#bbpress-forums .is-primary.button-hero.active.favorite-toggle,
    18641795.is-primary.button.button-hero.active:hover,
    1865 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero.active:hover,
    1866 #bbpress-forums .reviews-submit-link > .is-primary.button-hero.active.btn:hover,
    1867 #bbpress-forums .is-primary.button-hero.active.subscription-toggle:hover,
    1868 #bbpress-forums .is-primary.button-hero.active.favorite-toggle:hover,
    18691796.is-primary.button.button-hero.active:focus,
    1870 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero.active:focus,
    1871 #bbpress-forums .reviews-submit-link > .is-primary.button-hero.active.btn:focus,
    1872 #bbpress-forums .is-primary.button-hero.active.subscription-toggle:focus,
    1873 #bbpress-forums .is-primary.button-hero.active.favorite-toggle:focus,
    18741797.is-primary.button.button-hero:active,
    1875 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero:active,
    18761798#bbpress-forums .reviews-submit-link > .is-primary.button-hero.btn:active,
    18771799#bbpress-forums .is-primary.button-hero.subscription-toggle:active,
     
    18821804#bbpress-forums input[type=submit].button-hero.active.favorite-toggle,
    18831805input[type=submit].button.button-hero.active:hover,
    1884 #bbpress-forums .reviews-submit-link > input[type=submit].button-hero.active.btn:hover,
    1885 #bbpress-forums input[type=submit].button-hero.active.subscription-toggle:hover,
    1886 #bbpress-forums input[type=submit].button-hero.active.favorite-toggle:hover,
    18871806input[type=submit].button.button-hero.active:focus,
    1888 #bbpress-forums .reviews-submit-link > input[type=submit].button-hero.active.btn:focus,
    1889 #bbpress-forums input[type=submit].button-hero.active.subscription-toggle:focus,
    1890 #bbpress-forums input[type=submit].button-hero.active.favorite-toggle:focus,
    18911807input[type=submit].button.button-hero:active,
    18921808#bbpress-forums .reviews-submit-link > input[type=submit].button-hero.btn:active,
     
    18981814#bbpress-forums button[type=submit].button-hero.active.favorite-toggle,
    18991815button[type=submit].button.button-hero.active:hover,
    1900 #bbpress-forums .reviews-submit-link > button[type=submit].button-hero.active.btn:hover,
    1901 #bbpress-forums button[type=submit].button-hero.active.subscription-toggle:hover,
    1902 #bbpress-forums button[type=submit].button-hero.active.favorite-toggle:hover,
    19031816button[type=submit].button.button-hero.active:focus,
    1904 #bbpress-forums .reviews-submit-link > button[type=submit].button-hero.active.btn:focus,
    1905 #bbpress-forums button[type=submit].button-hero.active.subscription-toggle:focus,
    1906 #bbpress-forums button[type=submit].button-hero.active.favorite-toggle:focus,
    19071817button[type=submit].button.button-hero:active,
    19081818#bbpress-forums .reviews-submit-link > button[type=submit].button-hero.btn:active,
    19091819#bbpress-forums button[type=submit].button-hero.subscription-toggle:active,
    19101820#bbpress-forums button[type=submit].button-hero.favorite-toggle:active {
    1911     box-shadow: inset 0 3px 0 #006799;
     1821    box-shadow: none;
    19121822}
    19131823
     
    19311841}
    19321842
    1933 .button-group > .button, #bbpress-forums .wporg-bbp-term-subscription.button-group > a,
    1934 #bbpress-forums .reviews-submit-link.button-group > .btn,
     1843.button-group > .button, #bbpress-forums .reviews-submit-link.button-group > .btn,
    19351844#bbpress-forums .button-group > .subscription-toggle,
    19361845#bbpress-forums .button-group > .favorite-toggle {
     
    19411850}
    19421851
    1943 .button-group > .button-primary, #bbpress-forums fieldset.bbp-form .button-group > .button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription.button-group > a.submit,
    1944 #bbpress-forums fieldset.bbp-form .reviews-submit-link.button-group > .submit.btn,
     1852.button-group > .button-primary, #bbpress-forums fieldset.bbp-form .button-group > .button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link.button-group > .submit.btn,
    19451853#bbpress-forums fieldset.bbp-form .button-group > .submit.subscription-toggle,
    19461854#bbpress-forums fieldset.bbp-form .button-group > .submit.favorite-toggle {
     
    19481856}
    19491857
    1950 .button-group > .button:hover, #bbpress-forums .wporg-bbp-term-subscription.button-group > a:hover,
    1951 #bbpress-forums .reviews-submit-link.button-group > .btn:hover,
     1858.button-group > .button:hover, #bbpress-forums .reviews-submit-link.button-group > .btn:hover,
    19521859#bbpress-forums .button-group > .subscription-toggle:hover,
    19531860#bbpress-forums .button-group > .favorite-toggle:hover {
     
    19551862}
    19561863
    1957 .button-group > .button:first-child, #bbpress-forums .wporg-bbp-term-subscription.button-group > a:first-child,
    1958 #bbpress-forums .reviews-submit-link.button-group > .btn:first-child,
     1864.button-group > .button:first-child, #bbpress-forums .reviews-submit-link.button-group > .btn:first-child,
    19591865#bbpress-forums .button-group > .subscription-toggle:first-child,
    19601866#bbpress-forums .button-group > .favorite-toggle:first-child {
     
    19621868}
    19631869
    1964 .button-group > .button:last-child, #bbpress-forums .wporg-bbp-term-subscription.button-group > a:last-child,
    1965 #bbpress-forums .reviews-submit-link.button-group > .btn:last-child,
     1870.button-group > .button:last-child, #bbpress-forums .reviews-submit-link.button-group > .btn:last-child,
    19661871#bbpress-forums .button-group > .subscription-toggle:last-child,
    19671872#bbpress-forums .button-group > .favorite-toggle:last-child {
     
    19691874}
    19701875
    1971 .button-group > .button:focus, #bbpress-forums .wporg-bbp-term-subscription.button-group > a:focus,
    1972 #bbpress-forums .reviews-submit-link.button-group > .btn:focus,
     1876.button-group > .button:focus, #bbpress-forums .reviews-submit-link.button-group > .btn:focus,
    19731877#bbpress-forums .button-group > .subscription-toggle:focus,
    19741878#bbpress-forums .button-group > .favorite-toggle:focus {
     
    19771881}
    19781882
    1979 /* ----------------------------------------------------------------------------
    1980   5.0 - Responsive Button Styles
    1981 ---------------------------------------------------------------------------- */
    1982 @media screen and (max-width: 48em) {
    1983     .button, #bbpress-forums .wporg-bbp-term-subscription > a,
    1984     #bbpress-forums .reviews-submit-link > .btn,
    1985     #bbpress-forums .subscription-toggle,
    1986     #bbpress-forums .favorite-toggle,
    1987     .button.button-large,
    1988     #bbpress-forums .wporg-bbp-term-subscription > a.button-large,
    1989     #bbpress-forums .reviews-submit-link > .button-large.btn,
    1990     #bbpress-forums .button-large.subscription-toggle,
    1991     #bbpress-forums .button-large.favorite-toggle,
    1992     .button.button-small,
    1993     #bbpress-forums .wporg-bbp-term-subscription > a.button-small,
    1994     #bbpress-forums .reviews-submit-link > .button-small.btn,
    1995     #bbpress-forums .button-small.subscription-toggle,
    1996     #bbpress-forums .button-small.favorite-toggle {
    1997         font-size: 14px;
    1998         height: auto;
    1999         line-height: normal;
    2000         margin-bottom: 4px;
    2001         padding: 6px 14px;
    2002         vertical-align: middle;
    2003     }
    2004 }
    20051883:root {
    20061884    --wp-admin-theme-color: var(--wp--preset--color--blueberry-1);
     
    20091887/* Include margin and padding in the width calculation of input and textarea. */
    20101888input,
    2011 textarea {
     1889textarea,
     1890select {
    20121891    box-sizing: border-box;
    2013 }
    2014 
    2015 input[type=text],
    2016 input[type=password],
    2017 input[type=checkbox],
    2018 input[type=color],
    2019 input[type=date],
    2020 input[type=datetime],
    2021 input[type=datetime-local],
    2022 input[type=email],
    2023 input[type=month],
    2024 input[type=number],
    2025 input[type=password],
     1892    line-height: var(--wp--custom--form--line-height);
     1893}
     1894
    20261895input[type=radio],
    2027 input[type=tel],
    2028 input[type=text],
    2029 input[type=time],
    2030 input[type=url],
    2031 input[type=week],
    2032 select,
    2033 textarea {
     1896input[type=checkbox] {
    20341897    background-color: #fff;
    20351898    border: 1px solid var(--wp--preset--color--light-grey-1);
     
    20391902    -webkit-appearance: none;
    20401903}
    2041 input[type=text]:focus,
    2042 input[type=password]:focus,
     1904input[type=radio]:focus,
     1905input[type=checkbox]:focus {
     1906    color: var(--wp--custom--form--color--text);
     1907}
     1908
    20431909input[type=checkbox]:focus,
    2044 input[type=color]:focus,
    2045 input[type=date]:focus,
    2046 input[type=datetime]:focus,
    2047 input[type=datetime-local]:focus,
    2048 input[type=email]:focus,
    2049 input[type=month]:focus,
    2050 input[type=number]:focus,
    2051 input[type=password]:focus,
    2052 input[type=radio]:focus,
    2053 input[type=tel]:focus,
    2054 input[type=text]:focus,
    2055 input[type=time]:focus,
    2056 input[type=url]:focus,
    2057 input[type=week]:focus,
    2058 select:focus,
    2059 textarea:focus {
    2060     color: var(--wp--custom--form--color--text);
    2061 }
    2062 
    2063 input[type=text]:focus,
    2064 input[type=password]:focus,
    2065 input[type=color]:focus,
    2066 input[type=date]:focus,
    2067 input[type=datetime]:focus,
    2068 input[type=datetime-local]:focus,
    2069 input[type=email]:focus,
    2070 input[type=month]:focus,
    2071 input[type=number]:focus,
    2072 input[type=password]:focus,
    2073 input[type=search]:focus,
    2074 input[type=tel]:focus,
    2075 input[type=text]:focus,
    2076 input[type=time]:focus,
    2077 input[type=url]:focus,
    2078 input[type=week]:focus,
    2079 input[type=checkbox]:focus,
    2080 input[type=radio]:focus,
    2081 select:focus,
    2082 textarea:focus {
     1910input[type=radio]:focus {
    20831911    border-color: #5b9dd9;
    20841912    box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
    2085 }
    2086 input[type=email],
    2087 input[type=url] {
    2088     direction: ltr;
    2089 }
    2090 
    2091 input[type=text],
    2092 input[type=email],
    2093 input[type=password],
    2094 input[type=number] {
    2095     padding: 6px 10px;
    2096 }
    2097 
    2098 /* Vertically align the number selector with the input. */
    2099 input[type=number] {
    2100     height: 40px;
    2101     line-height: inherit;
    21021913}
    21031914
     
    21711982    }
    21721983}
     1984select {
     1985    background: var(--wp--custom--form--color--background);
     1986    border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
     1987    border-radius: var(--wp--custom--form--border--radius);
     1988    box-shadow: var(--wp--custom--form--color--box-shadow);
     1989    font-family: inherit;
     1990    height: 40px;
     1991}
     1992select:focus {
     1993    border-color: var(--custom--form--color--border);
     1994}
     1995
    21731996/* Search */
    21741997input[type=search]::-webkit-search-decoration {
    21751998    display: none;
    2176 }
    2177 
    2178 .ie8 input[type=password] {
    2179     font-family: sans-serif;
    2180 }
    2181 
    2182 textarea,
    2183 input,
    2184 select,
    2185 button {
    2186     font-family: inherit;
    2187     font-size: inherit;
    2188     font-weight: inherit;
    2189 }
    2190 
    2191 textarea,
    2192 input,
    2193 select {
    2194     border-radius: 0;
    2195     font-size: 16px;
    2196     padding: 3px 5px; /* Reset mobile webkit's default element styling */
    2197 }
    2198 
    2199 textarea {
    2200     line-height: 1.4;
    2201     overflow: auto;
    2202     padding: 2px 6px;
    2203     resize: vertical;
    2204 }
    2205 .comment-form-comment textarea {
    2206     width: 100%;
    22071999}
    22082000
     
    22652057-------------------------------------------------------------- */
    22662058@media screen and (min-width: 48em) {
    2267     /* Input Elements */
    2268     input[type=text],
    2269     input[type=email],
    2270     input[type=password],
    2271     input[type=number] {
    2272         padding: 0;
    2273     }
    2274     input[type=number] {
    2275         height: 28px;
    2276     }
    22772059    input[type=checkbox] {
    22782060        padding: 0;
     
    22912073        height: 6px;
    22922074        margin: 4px;
    2293     }
    2294     textarea,
    2295     input,
    2296     select {
    2297         font-size: 14px;
    22982075    }
    22992076}
     
    35753352    font-size: 0.8rem;
    35763353}
     3354#bbpress-forums #bbp-user-body div.bbp-search-form form > div {
     3355    margin-bottom: var(--wp--style--block-gap);
     3356    display: flex;
     3357}
     3358#bbpress-forums #bbp-user-body div.bbp-search-form form > div input[type=text] {
     3359    flex: 1;
     3360    margin-left: calc(var(--wp--preset--spacing--10) / 2);
     3361}
     3362@media only screen and (max-width: 480px) {
     3363    #bbpress-forums #bbp-user-body div.bbp-search-form button,
     3364    #bbpress-forums #bbp-user-body div.bbp-search-form input {
     3365        font-size: var(--wp--preset--font-size--small);
     3366        padding: var(--wp--custom--form--padding--block) var(--wp--custom--form--padding--inline);
     3367    }
     3368}
    35773369@media (max-width: 767px) {
     3370    #bbpress-forums #bbp-user-body div.bbp-search-form {
     3371        float: none;
     3372    }
     3373    #bbpress-forums #bbp-user-body h2.entry-title {
     3374        clear: left;
     3375    }
    35783376    #bbpress-forums input[type=text] {
    35793377        width: 100%;
     
    36103408}
    36113409
    3612 .topic-resolved label {
    3613     vertical-align: none;
     3410.topic-resolved form {
     3411    width: 100%;
     3412    display: flex;
     3413    flex-wrap: wrap;
     3414    align-items: center;
     3415    gap: calc(var(--wp--preset--spacing--10) / 2);
    36143416}
    36153417.topic-resolved select {
    3616     width: 120px;
    3617     line-height: 1;
     3418    width: 150px;
    36183419}
    36193420
     
    38683669.sidebar .topic-info li.topic-report textarea {
    38693670    width: 100%;
    3870     padding: 0.2rem 0.5rem 0.1rem;
    38713671    margin: 4px 0 8px;
    38723672}
     
    39053705# User Profile
    39063706--------------------------------------------------------------*/
    3907 .bbp-single-user input[type=text] {
    3908     padding: 3px 5px;
    3909 }
    39103707@media (max-width: 767px) {
    39113708    .bbp-single-user input[type=text]#ts {
     
    39163713.bbpress #bbpress-forums #bbp-user-wrapper {
    39173714    font-size: var(--wp--preset--font-size--small);
     3715}
     3716.bbpress #bbpress-forums #bbp-user-wrapper .bbp-user-section {
     3717    margin-top: var(--wp--style--block-gap);
    39183718}
    39193719
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/style.css

    r13461 r13470  
    13531353  1.0 - Button Layouts
    13541354---------------------------------------------------------------------------- */
    1355 .button, #bbpress-forums .wporg-bbp-term-subscription > a,
    1356 #bbpress-forums .reviews-submit-link > .btn,
     1355.button, #bbpress-forums .reviews-submit-link > .btn,
    13571356#bbpress-forums .subscription-toggle,
    13581357#bbpress-forums .favorite-toggle,
    13591358.button-primary,
    13601359#bbpress-forums fieldset.bbp-form .button.submit,
    1361 #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit,
    13621360#bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn,
    13631361#bbpress-forums fieldset.bbp-form .submit.subscription-toggle,
     
    13701368    display: inline-block;
    13711369    font-size: 0.8rem;
    1372     height: 1.5625rem;
     1370    height: auto;
    13731371    line-height: 1;
    13741372    margin: 0;
     
    13771375    white-space: nowrap;
    13781376    -webkit-appearance: none;
     1377    box-shadow: none;
    13791378}
    13801379
     
    13881387}
    13891388
    1390 .button.button-large, #bbpress-forums .wporg-bbp-term-subscription > a.button-large,
    1391 #bbpress-forums .reviews-submit-link > .button-large.btn,
     1389.button.button-large, #bbpress-forums .reviews-submit-link > .button-large.btn,
    13921390#bbpress-forums .button-large.subscription-toggle,
    13931391#bbpress-forums .button-large.favorite-toggle,
    13941392.button-group.button-large .button,
    1395 .button-group.button-large #bbpress-forums .wporg-bbp-term-subscription > a,
    1396 #bbpress-forums .button-group.button-large .wporg-bbp-term-subscription > a,
    13971393.button-group.button-large #bbpress-forums .reviews-submit-link > .btn,
    13981394#bbpress-forums .button-group.button-large .reviews-submit-link > .btn,
     
    14061402}
    14071403
    1408 .button.button-small, #bbpress-forums .wporg-bbp-term-subscription > a.button-small,
    1409 #bbpress-forums .reviews-submit-link > .button-small.btn,
     1404.button.button-small, #bbpress-forums .reviews-submit-link > .button-small.btn,
    14101405#bbpress-forums .button-small.subscription-toggle,
    14111406#bbpress-forums .button-small.favorite-toggle,
    14121407.button-group.button-small .button,
    1413 .button-group.button-small #bbpress-forums .wporg-bbp-term-subscription > a,
    1414 #bbpress-forums .button-group.button-small .wporg-bbp-term-subscription > a,
    14151408.button-group.button-small #bbpress-forums .reviews-submit-link > .btn,
    14161409#bbpress-forums .button-group.button-small .reviews-submit-link > .btn,
     
    14251418}
    14261419
    1427 a.button, #bbpress-forums .wporg-bbp-term-subscription > a,
    1428 #bbpress-forums .reviews-submit-link > a.btn,
     1420a.button, #bbpress-forums .reviews-submit-link > a.btn,
    14291421#bbpress-forums a.subscription-toggle,
    14301422#bbpress-forums a.favorite-toggle,
    14311423a.button-primary,
    14321424#bbpress-forums fieldset.bbp-form a.button.submit,
    1433 #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit,
    14341425#bbpress-forums fieldset.bbp-form .reviews-submit-link > a.submit.btn,
    14351426#bbpress-forums fieldset.bbp-form a.submit.subscription-toggle,
     
    14391430}
    14401431
    1441 a.button.button-large, #bbpress-forums .wporg-bbp-term-subscription > a.button-large,
    1442 #bbpress-forums .reviews-submit-link > a.button-large.btn,
     1432a.button.button-large, #bbpress-forums .reviews-submit-link > a.button-large.btn,
    14431433#bbpress-forums a.button-large.subscription-toggle,
    14441434#bbpress-forums a.button-large.favorite-toggle,
    14451435.button-group.button-large a.button,
    1446 .button-group.button-large #bbpress-forums .wporg-bbp-term-subscription > a,
    1447 #bbpress-forums .button-group.button-large .wporg-bbp-term-subscription > a,
    14481436.button-group.button-large #bbpress-forums .reviews-submit-link > a.btn,
    14491437#bbpress-forums .button-group.button-large .reviews-submit-link > a.btn,
     
    14551443}
    14561444
    1457 a.button.button-small, #bbpress-forums .wporg-bbp-term-subscription > a.button-small,
    1458 #bbpress-forums .reviews-submit-link > a.button-small.btn,
     1445a.button.button-small, #bbpress-forums .reviews-submit-link > a.button-small.btn,
    14591446#bbpress-forums a.button-small.subscription-toggle,
    14601447#bbpress-forums a.button-small.favorite-toggle,
    14611448.button-group.button-small a.button,
    1462 .button-group.button-small #bbpress-forums .wporg-bbp-term-subscription > a,
    1463 #bbpress-forums .button-group.button-small .wporg-bbp-term-subscription > a,
    14641449.button-group.button-small #bbpress-forums .reviews-submit-link > a.btn,
    14651450#bbpress-forums .button-group.button-small .reviews-submit-link > a.btn,
     
    14711456}
    14721457
    1473 .button:active, #bbpress-forums .wporg-bbp-term-subscription > a:active,
    1474 #bbpress-forums .reviews-submit-link > .btn:active,
     1458.button:active, #bbpress-forums .reviews-submit-link > .btn:active,
    14751459#bbpress-forums .subscription-toggle:active,
    14761460#bbpress-forums .favorite-toggle:active,
    14771461.button:focus,
    1478 #bbpress-forums .wporg-bbp-term-subscription > a:focus,
    14791462#bbpress-forums .reviews-submit-link > .btn:focus,
    14801463#bbpress-forums .subscription-toggle:focus,
     
    14831466}
    14841467
    1485 .button.hidden, #bbpress-forums .wporg-bbp-term-subscription > a.hidden,
    1486 #bbpress-forums .reviews-submit-link > .hidden.btn,
     1468.button.hidden, #bbpress-forums .reviews-submit-link > .hidden.btn,
    14871469#bbpress-forums .hidden.subscription-toggle,
    14881470#bbpress-forums .hidden.favorite-toggle {
     
    15051487  2.0 - Default Button Style
    15061488---------------------------------------------------------------------------- */
    1507 .button, #bbpress-forums .wporg-bbp-term-subscription > a,
    1508 #bbpress-forums .reviews-submit-link > .btn,
     1489.button, #bbpress-forums .reviews-submit-link > .btn,
    15091490#bbpress-forums .subscription-toggle,
    15101491#bbpress-forums .favorite-toggle,
    1511 .button:visited,
    1512 #bbpress-forums .wporg-bbp-term-subscription > a:visited,
    1513 #bbpress-forums .reviews-submit-link > .btn:visited,
    1514 #bbpress-forums .subscription-toggle:visited,
    1515 #bbpress-forums .favorite-toggle:visited,
    15161492.button-secondary {
    15171493    background: #f7f7f7;
    15181494    border-color: #ccc;
    1519     box-shadow: 0 1px 0 #ccc;
     1495    box-shadow: none;
    15201496    color: #555;
    1521     vertical-align: top;
    1522 }
    1523 
    1524 p .button, p #bbpress-forums .wporg-bbp-term-subscription > a, #bbpress-forums p .wporg-bbp-term-subscription > a,
    1525 p #bbpress-forums .reviews-submit-link > .btn,
    1526 #bbpress-forums p .reviews-submit-link > .btn,
     1497    vertical-align: middle;
     1498}
     1499
     1500p .button, p #bbpress-forums .reviews-submit-link > .btn, #bbpress-forums p .reviews-submit-link > .btn,
    15271501p #bbpress-forums .subscription-toggle,
    15281502#bbpress-forums p .subscription-toggle,
     
    15321506}
    15331507
    1534 .button.hover, #bbpress-forums .wporg-bbp-term-subscription > a.hover,
    1535 #bbpress-forums .reviews-submit-link > .hover.btn,
     1508.button.hover, #bbpress-forums .reviews-submit-link > .hover.btn,
    15361509#bbpress-forums .hover.subscription-toggle,
    15371510#bbpress-forums .hover.favorite-toggle,
    15381511.button:hover,
    1539 #bbpress-forums .wporg-bbp-term-subscription > a:hover,
    15401512#bbpress-forums .reviews-submit-link > .btn:hover,
    15411513#bbpress-forums .subscription-toggle:hover,
     
    15431515.button-secondary:hover,
    15441516.button.focus,
    1545 #bbpress-forums .wporg-bbp-term-subscription > a.focus,
    15461517#bbpress-forums .reviews-submit-link > .focus.btn,
    15471518#bbpress-forums .focus.subscription-toggle,
    15481519#bbpress-forums .focus.favorite-toggle,
    15491520.button:focus,
    1550 #bbpress-forums .wporg-bbp-term-subscription > a:focus,
    15511521#bbpress-forums .reviews-submit-link > .btn:focus,
    15521522#bbpress-forums .subscription-toggle:focus,
     
    15581528}
    15591529
    1560 .button.focus, #bbpress-forums .wporg-bbp-term-subscription > a.focus,
    1561 #bbpress-forums .reviews-submit-link > .focus.btn,
     1530.button.focus, #bbpress-forums .reviews-submit-link > .focus.btn,
    15621531#bbpress-forums .focus.subscription-toggle,
    15631532#bbpress-forums .focus.favorite-toggle,
    15641533.button:focus,
    1565 #bbpress-forums .wporg-bbp-term-subscription > a:focus,
    15661534#bbpress-forums .reviews-submit-link > .btn:focus,
    15671535#bbpress-forums .subscription-toggle:focus,
     
    15701538.button-link:focus {
    15711539    border-color: #5b9dd9;
    1572     box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
    1573 }
    1574 
    1575 .button.active, #bbpress-forums .wporg-bbp-term-subscription > a.active,
    1576 #bbpress-forums .reviews-submit-link > .active.btn,
     1540    box-shadow: none;
     1541}
     1542
     1543.button.active, #bbpress-forums .reviews-submit-link > .active.btn,
    15771544#bbpress-forums .active.subscription-toggle,
    15781545#bbpress-forums .active.favorite-toggle,
    15791546.button.active:hover,
    1580 #bbpress-forums .wporg-bbp-term-subscription > a.active:hover,
    15811547#bbpress-forums .reviews-submit-link > .active.btn:hover,
    15821548#bbpress-forums .active.subscription-toggle:hover,
    15831549#bbpress-forums .active.favorite-toggle:hover,
    15841550.button:active,
    1585 #bbpress-forums .wporg-bbp-term-subscription > a:active,
    15861551#bbpress-forums .reviews-submit-link > .btn:active,
    15871552#bbpress-forums .subscription-toggle:active,
     
    15901555    background: var(--wp--preset--color--light-grey-1);
    15911556    border-color: #999;
    1592     box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
     1557    box-shadow: none;
    15931558    transform: translateY(1px);
    15941559}
    15951560
    1596 .button.active:focus, #bbpress-forums .wporg-bbp-term-subscription > a.active:focus,
    1597 #bbpress-forums .reviews-submit-link > .active.btn:focus,
     1561.button.active:focus, #bbpress-forums .reviews-submit-link > .active.btn:focus,
    15981562#bbpress-forums .active.subscription-toggle:focus,
    15991563#bbpress-forums .active.favorite-toggle:focus {
    16001564    border-color: #5b9dd9;
    1601     box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5), 0 0 3px rgba(0, 115, 170, 0.8);
    1602 }
    1603 
    1604 .button[disabled], #bbpress-forums .wporg-bbp-term-subscription > a[disabled],
    1605 #bbpress-forums .reviews-submit-link > [disabled].btn,
     1565    box-shadow: none;
     1566}
     1567
     1568.button[disabled], #bbpress-forums .reviews-submit-link > [disabled].btn,
    16061569#bbpress-forums [disabled].subscription-toggle,
    16071570#bbpress-forums [disabled].favorite-toggle,
    16081571.button:disabled,
    1609 #bbpress-forums .wporg-bbp-term-subscription > a:disabled,
    16101572#bbpress-forums .reviews-submit-link > .btn:disabled,
    16111573#bbpress-forums .subscription-toggle:disabled,
    16121574#bbpress-forums .favorite-toggle:disabled,
    16131575.button.disabled,
    1614 #bbpress-forums .wporg-bbp-term-subscription > a.disabled,
    16151576#bbpress-forums .reviews-submit-link > .disabled.btn,
    16161577#bbpress-forums .disabled.subscription-toggle,
     
    16491610  3.0 - Primary Button Style
    16501611---------------------------------------------------------------------------- */
    1651 .button-primary, #bbpress-forums fieldset.bbp-form .button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit,
    1652 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn,
     1612.button-primary, #bbpress-forums fieldset.bbp-form .button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn,
    16531613#bbpress-forums fieldset.bbp-form .submit.subscription-toggle,
    16541614#bbpress-forums fieldset.bbp-form .submit.favorite-toggle,
     
    16571617input[type=submit],
    16581618button[type=submit] {
    1659     background: var(--wp--custom--button--color--background);
    1660     border: var(--wp--custom--button--border--width) var(--wp--custom--button--border--style) var(--wp--custom--button--border--color);
     1619    --wp--custom--button--spacing--padding--top: var(--wp--custom--button--small--spacing--padding--top);
     1620    --wp--custom--button--spacing--padding--bottom: var(--wp--custom--button--small--spacing--padding--bottom);
     1621    --wp--custom--button--spacing--padding--left: var(--wp--custom--button--small--spacing--padding--left);
     1622    --wp--custom--button--spacing--padding--right: var(--wp--custom--button--small--spacing--padding--right);
     1623    --wp--custom--button--typography--font-size: var(--wp--custom--button--small--typography--font-size);
     1624    border-width: 0;
     1625    padding-top: calc(var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
     1626    padding-bottom: calc(var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
     1627    padding-left: calc(var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
     1628    padding-right: calc(var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
    16611629    border-radius: var(--wp--custom--button--border--radius);
    16621630    box-shadow: none;
     1631    opacity: 1;
    16631632    color: var(--wp--custom--button--color--text);
     1633    background-color: var(--wp--custom--button--color--background);
     1634    font-weight: var(--wp--custom--button--typography--font-weight);
     1635    font-family: inherit;
     1636    font-size: var(--wp--custom--button--typography--font-size);
     1637    line-height: var(--wp--custom--button--typography--line-height);
    16641638    text-decoration: none;
    1665     text-shadow: none;
    1666     font-size: var(--wp--custom--button--small--typography--font-size);
    1667     line-height: 1.3;
    1668     padding-right: var(--wp--custom--button--small--spacing--padding--right);
    1669     padding-left: var(--wp--custom--button--small--spacing--padding--left);
    1670 }
    1671 .button-primary:visited, #bbpress-forums fieldset.bbp-form .button.submit:visited, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:visited,
    1672 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:visited,
     1639}
     1640.button-primary:visited, #bbpress-forums fieldset.bbp-form .button.submit:visited, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:visited,
    16731641#bbpress-forums fieldset.bbp-form .submit.subscription-toggle:visited,
    16741642#bbpress-forums fieldset.bbp-form .submit.favorite-toggle:visited,
     
    16771645input[type=submit]:visited,
    16781646button[type=submit]:visited {
    1679     background: var(--wp--custom--button--color--background);
    1680     border-color: var(--wp--custom--button--border--color);
    16811647    box-shadow: none;
    1682     color: var(--wp--custom--button--color--text);
    1683 }
    1684 .button-primary.hover, #bbpress-forums fieldset.bbp-form .hover.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.hover.submit,
    1685 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .hover.submit.btn,
     1648}
     1649.button-primary.hover, #bbpress-forums fieldset.bbp-form .hover.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .hover.submit.btn,
    16861650#bbpress-forums fieldset.bbp-form .hover.submit.subscription-toggle,
    1687 #bbpress-forums fieldset.bbp-form .hover.submit.favorite-toggle, .button-primary:hover, #bbpress-forums fieldset.bbp-form .button.submit:hover, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:hover,
    1688 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:hover,
     1651#bbpress-forums fieldset.bbp-form .hover.submit.favorite-toggle, .button-primary:hover, #bbpress-forums fieldset.bbp-form .button.submit:hover, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:hover,
    16891652#bbpress-forums fieldset.bbp-form .submit.subscription-toggle:hover,
    1690 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:hover, .button-primary.focus, #bbpress-forums fieldset.bbp-form .focus.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.focus.submit,
    1691 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .focus.submit.btn,
     1653#bbpress-forums fieldset.bbp-form .submit.favorite-toggle:hover, .button-primary.focus, #bbpress-forums fieldset.bbp-form .focus.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .focus.submit.btn,
    16921654#bbpress-forums fieldset.bbp-form .focus.submit.subscription-toggle,
    1693 #bbpress-forums fieldset.bbp-form .focus.submit.favorite-toggle, .button-primary:focus, #bbpress-forums fieldset.bbp-form .button.submit:focus, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:focus,
    1694 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:focus,
     1655#bbpress-forums fieldset.bbp-form .focus.submit.favorite-toggle, .button-primary:focus, #bbpress-forums fieldset.bbp-form .button.submit:focus, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:focus,
    16951656#bbpress-forums fieldset.bbp-form .submit.subscription-toggle:focus,
    16961657#bbpress-forums fieldset.bbp-form .submit.favorite-toggle:focus,
     
    17121673button[type=submit]:focus {
    17131674    background: var(--wp--custom--button--hover--color--background);
    1714     border-color: var(--wp--custom--button--hover--color--background);
    17151675    box-shadow: none;
    17161676    color: var(--wp--custom--button--hover--color--text);
    17171677}
    1718 .button-primary.focus, #bbpress-forums fieldset.bbp-form .focus.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.focus.submit,
    1719 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .focus.submit.btn,
     1678.button-primary.focus, #bbpress-forums fieldset.bbp-form .focus.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .focus.submit.btn,
    17201679#bbpress-forums fieldset.bbp-form .focus.submit.subscription-toggle,
    1721 #bbpress-forums fieldset.bbp-form .focus.submit.favorite-toggle, .button-primary:focus, #bbpress-forums fieldset.bbp-form .button.submit:focus, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:focus,
    1722 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:focus,
     1680#bbpress-forums fieldset.bbp-form .focus.submit.favorite-toggle, .button-primary:focus, #bbpress-forums fieldset.bbp-form .button.submit:focus, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:focus,
    17231681#bbpress-forums fieldset.bbp-form .submit.subscription-toggle:focus,
    17241682#bbpress-forums fieldset.bbp-form .submit.favorite-toggle:focus,
     
    17311689button[type=submit].focus,
    17321690button[type=submit]:focus {
    1733     box-shadow: none;
    1734     border-color: var(--wp--custom--button--focus--border--color);
    1735 }
    1736 .button-primary.active, #bbpress-forums fieldset.bbp-form .active.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.active.submit,
    1737 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .active.submit.btn,
     1691    background-color: var(--wp--custom--button--color--background);
     1692    box-shadow: inset 0 0 0 3px var(--wp--preset--color--white);
     1693    outline: 1.5px solid var(--wp--custom--button--focus--border--color);
     1694    outline-offset: -1.5px;
     1695}
     1696.button-primary.active, #bbpress-forums fieldset.bbp-form .active.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .active.submit.btn,
    17381697#bbpress-forums fieldset.bbp-form .active.submit.subscription-toggle,
    1739 #bbpress-forums fieldset.bbp-form .active.submit.favorite-toggle, .button-primary.active:hover, .button-primary.active:focus, .button-primary:active, #bbpress-forums fieldset.bbp-form .button.submit:active, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:active,
    1740 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:active,
     1698#bbpress-forums fieldset.bbp-form .active.submit.favorite-toggle, .button-primary.active:hover, .button-primary.active:focus, .button-primary:active, #bbpress-forums fieldset.bbp-form .button.submit:active, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:active,
    17411699#bbpress-forums fieldset.bbp-form .submit.subscription-toggle:active,
    17421700#bbpress-forums fieldset.bbp-form .submit.favorite-toggle:active,
     
    17571715button[type=submit].active:focus,
    17581716button[type=submit]:active {
    1759     background: var(--wp--custom--button--active--color--background);
    1760     border-color: var(--wp--custom--button--active--border--color);
     1717    padding-top: var(--wp--custom--button--spacing--padding--top);
     1718    padding-bottom: var(--wp--custom--button--spacing--padding--bottom);
     1719    padding-left: var(--wp--custom--button--spacing--padding--left);
     1720    padding-right: var(--wp--custom--button--spacing--padding--right);
     1721    border: var(--wp--custom--button--border--width) solid currentColor;
    17611722    color: var(--wp--custom--button--active--color--text);
    1762     box-shadow: none;
    1763     vertical-align: top;
    1764 }
    1765 .button-primary[disabled], #bbpress-forums fieldset.bbp-form [disabled].button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a[disabled].submit,
    1766 #bbpress-forums fieldset.bbp-form .reviews-submit-link > [disabled].submit.btn,
     1723    background-color: var(--wp--custom--button--active--color--background);
     1724}
     1725.button-primary[disabled], #bbpress-forums fieldset.bbp-form [disabled].button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > [disabled].submit.btn,
    17671726#bbpress-forums fieldset.bbp-form [disabled].submit.subscription-toggle,
    1768 #bbpress-forums fieldset.bbp-form [disabled].submit.favorite-toggle, .button-primary:disabled, #bbpress-forums fieldset.bbp-form .button.submit:disabled, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.submit:disabled,
    1769 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:disabled,
     1727#bbpress-forums fieldset.bbp-form [disabled].submit.favorite-toggle, .button-primary:disabled, #bbpress-forums fieldset.bbp-form .button.submit:disabled, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .submit.btn:disabled,
    17701728#bbpress-forums fieldset.bbp-form .submit.subscription-toggle:disabled,
    1771 #bbpress-forums fieldset.bbp-form .submit.favorite-toggle:disabled, .button-primary.disabled, #bbpress-forums fieldset.bbp-form .disabled.button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.disabled.submit,
    1772 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .disabled.submit.btn,
     1729#bbpress-forums fieldset.bbp-form .submit.favorite-toggle:disabled, .button-primary.disabled, #bbpress-forums fieldset.bbp-form .disabled.button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .disabled.submit.btn,
    17731730#bbpress-forums fieldset.bbp-form .disabled.submit.subscription-toggle,
    17741731#bbpress-forums fieldset.bbp-form .disabled.submit.favorite-toggle,
     
    17861743button[type=submit].disabled {
    17871744    background: var(--wp--custom--button--disabled--background-color) !important;
    1788     border-color: var(--wp--custom--button--disabled--border-color) !important;
    17891745    box-shadow: none !important;
    17901746    color: var(--wp--custom--button--disabled--color) !important;
    17911747    cursor: default;
    17921748}
    1793 .button-primary.button.button-hero, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero,
    1794 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.btn,
     1749.button-primary.button.button-hero, #bbpress-forums .reviews-submit-link > .button-primary.button-hero.btn,
    17951750#bbpress-forums .button-primary.button-hero.subscription-toggle,
    1796 #bbpress-forums .button-primary.button-hero.favorite-toggle, #bbpress-forums fieldset.bbp-form .button.button-hero.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.button-hero.submit,
    1797 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.submit.btn,
     1751#bbpress-forums .button-primary.button-hero.favorite-toggle, #bbpress-forums fieldset.bbp-form .button.button-hero.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.submit.btn,
    17981752#bbpress-forums fieldset.bbp-form .button-hero.submit.subscription-toggle,
    17991753#bbpress-forums fieldset.bbp-form .button-hero.submit.favorite-toggle,
    18001754.download-button.button.button-hero,
    1801 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero,
    18021755#bbpress-forums .reviews-submit-link > .download-button.button-hero.btn,
    18031756#bbpress-forums .download-button.button-hero.subscription-toggle,
    18041757#bbpress-forums .download-button.button-hero.favorite-toggle,
    18051758.is-primary.button.button-hero,
    1806 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero,
    18071759#bbpress-forums .reviews-submit-link > .is-primary.button-hero.btn,
    18081760#bbpress-forums .is-primary.button-hero.subscription-toggle,
     
    18161768#bbpress-forums button[type=submit].button-hero.subscription-toggle,
    18171769#bbpress-forums button[type=submit].button-hero.favorite-toggle {
    1818     box-shadow: 0 2px 0 #006799;
    1819 }
    1820 .button-primary.button.button-hero.active, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero.active,
    1821 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.active.btn,
     1770    box-shadow: none;
     1771}
     1772.button-primary.button.button-hero.active, #bbpress-forums .reviews-submit-link > .button-primary.button-hero.active.btn,
    18221773#bbpress-forums .button-primary.button-hero.active.subscription-toggle,
    1823 #bbpress-forums .button-primary.button-hero.active.favorite-toggle, #bbpress-forums fieldset.bbp-form .button.button-hero.active.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.button-hero.active.submit,
    1824 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.active.submit.btn,
     1774#bbpress-forums .button-primary.button-hero.active.favorite-toggle, #bbpress-forums fieldset.bbp-form .button.button-hero.active.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.active.submit.btn,
    18251775#bbpress-forums fieldset.bbp-form .button-hero.active.submit.subscription-toggle,
    1826 #bbpress-forums fieldset.bbp-form .button-hero.active.submit.favorite-toggle, .button-primary.button.button-hero.active:hover, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero.active:hover,
    1827 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.active.btn:hover,
    1828 #bbpress-forums .button-primary.button-hero.active.subscription-toggle:hover,
    1829 #bbpress-forums .button-primary.button-hero.active.favorite-toggle:hover, .button-primary.button.button-hero.active:focus, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero.active:focus,
    1830 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.active.btn:focus,
    1831 #bbpress-forums .button-primary.button-hero.active.subscription-toggle:focus,
    1832 #bbpress-forums .button-primary.button-hero.active.favorite-toggle:focus, .button-primary.button.button-hero:active, #bbpress-forums .wporg-bbp-term-subscription > a.button-primary.button-hero:active,
    1833 #bbpress-forums .reviews-submit-link > .button-primary.button-hero.btn:active,
     1776#bbpress-forums fieldset.bbp-form .button-hero.active.submit.favorite-toggle, .button-primary.button.button-hero.active:hover, .button-primary.button.button-hero.active:focus, .button-primary.button.button-hero:active, #bbpress-forums .reviews-submit-link > .button-primary.button-hero.btn:active,
    18341777#bbpress-forums .button-primary.button-hero.subscription-toggle:active,
    1835 #bbpress-forums .button-primary.button-hero.favorite-toggle:active, #bbpress-forums fieldset.bbp-form .button.button-hero.submit:active, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription > a.button-hero.submit:active,
    1836 #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.submit.btn:active,
     1778#bbpress-forums .button-primary.button-hero.favorite-toggle:active, #bbpress-forums fieldset.bbp-form .button.button-hero.submit:active, #bbpress-forums fieldset.bbp-form .reviews-submit-link > .button-hero.submit.btn:active,
    18371779#bbpress-forums fieldset.bbp-form .button-hero.submit.subscription-toggle:active,
    18381780#bbpress-forums fieldset.bbp-form .button-hero.submit.favorite-toggle:active,
    18391781.download-button.button.button-hero.active,
    1840 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero.active,
    18411782#bbpress-forums .reviews-submit-link > .download-button.button-hero.active.btn,
    18421783#bbpress-forums .download-button.button-hero.active.subscription-toggle,
    18431784#bbpress-forums .download-button.button-hero.active.favorite-toggle,
    18441785.download-button.button.button-hero.active:hover,
    1845 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero.active:hover,
    1846 #bbpress-forums .reviews-submit-link > .download-button.button-hero.active.btn:hover,
    1847 #bbpress-forums .download-button.button-hero.active.subscription-toggle:hover,
    1848 #bbpress-forums .download-button.button-hero.active.favorite-toggle:hover,
    18491786.download-button.button.button-hero.active:focus,
    1850 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero.active:focus,
    1851 #bbpress-forums .reviews-submit-link > .download-button.button-hero.active.btn:focus,
    1852 #bbpress-forums .download-button.button-hero.active.subscription-toggle:focus,
    1853 #bbpress-forums .download-button.button-hero.active.favorite-toggle:focus,
    18541787.download-button.button.button-hero:active,
    1855 #bbpress-forums .wporg-bbp-term-subscription > a.download-button.button-hero:active,
    18561788#bbpress-forums .reviews-submit-link > .download-button.button-hero.btn:active,
    18571789#bbpress-forums .download-button.button-hero.subscription-toggle:active,
    18581790#bbpress-forums .download-button.button-hero.favorite-toggle:active,
    18591791.is-primary.button.button-hero.active,
    1860 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero.active,
    18611792#bbpress-forums .reviews-submit-link > .is-primary.button-hero.active.btn,
    18621793#bbpress-forums .is-primary.button-hero.active.subscription-toggle,
    18631794#bbpress-forums .is-primary.button-hero.active.favorite-toggle,
    18641795.is-primary.button.button-hero.active:hover,
    1865 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero.active:hover,
    1866 #bbpress-forums .reviews-submit-link > .is-primary.button-hero.active.btn:hover,
    1867 #bbpress-forums .is-primary.button-hero.active.subscription-toggle:hover,
    1868 #bbpress-forums .is-primary.button-hero.active.favorite-toggle:hover,
    18691796.is-primary.button.button-hero.active:focus,
    1870 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero.active:focus,
    1871 #bbpress-forums .reviews-submit-link > .is-primary.button-hero.active.btn:focus,
    1872 #bbpress-forums .is-primary.button-hero.active.subscription-toggle:focus,
    1873 #bbpress-forums .is-primary.button-hero.active.favorite-toggle:focus,
    18741797.is-primary.button.button-hero:active,
    1875 #bbpress-forums .wporg-bbp-term-subscription > a.is-primary.button-hero:active,
    18761798#bbpress-forums .reviews-submit-link > .is-primary.button-hero.btn:active,
    18771799#bbpress-forums .is-primary.button-hero.subscription-toggle:active,
     
    18821804#bbpress-forums input[type=submit].button-hero.active.favorite-toggle,
    18831805input[type=submit].button.button-hero.active:hover,
    1884 #bbpress-forums .reviews-submit-link > input[type=submit].button-hero.active.btn:hover,
    1885 #bbpress-forums input[type=submit].button-hero.active.subscription-toggle:hover,
    1886 #bbpress-forums input[type=submit].button-hero.active.favorite-toggle:hover,
    18871806input[type=submit].button.button-hero.active:focus,
    1888 #bbpress-forums .reviews-submit-link > input[type=submit].button-hero.active.btn:focus,
    1889 #bbpress-forums input[type=submit].button-hero.active.subscription-toggle:focus,
    1890 #bbpress-forums input[type=submit].button-hero.active.favorite-toggle:focus,
    18911807input[type=submit].button.button-hero:active,
    18921808#bbpress-forums .reviews-submit-link > input[type=submit].button-hero.btn:active,
     
    18981814#bbpress-forums button[type=submit].button-hero.active.favorite-toggle,
    18991815button[type=submit].button.button-hero.active:hover,
    1900 #bbpress-forums .reviews-submit-link > button[type=submit].button-hero.active.btn:hover,
    1901 #bbpress-forums button[type=submit].button-hero.active.subscription-toggle:hover,
    1902 #bbpress-forums button[type=submit].button-hero.active.favorite-toggle:hover,
    19031816button[type=submit].button.button-hero.active:focus,
    1904 #bbpress-forums .reviews-submit-link > button[type=submit].button-hero.active.btn:focus,
    1905 #bbpress-forums button[type=submit].button-hero.active.subscription-toggle:focus,
    1906 #bbpress-forums button[type=submit].button-hero.active.favorite-toggle:focus,
    19071817button[type=submit].button.button-hero:active,
    19081818#bbpress-forums .reviews-submit-link > button[type=submit].button-hero.btn:active,
    19091819#bbpress-forums button[type=submit].button-hero.subscription-toggle:active,
    19101820#bbpress-forums button[type=submit].button-hero.favorite-toggle:active {
    1911     box-shadow: inset 0 3px 0 #006799;
     1821    box-shadow: none;
    19121822}
    19131823
     
    19311841}
    19321842
    1933 .button-group > .button, #bbpress-forums .wporg-bbp-term-subscription.button-group > a,
    1934 #bbpress-forums .reviews-submit-link.button-group > .btn,
     1843.button-group > .button, #bbpress-forums .reviews-submit-link.button-group > .btn,
    19351844#bbpress-forums .button-group > .subscription-toggle,
    19361845#bbpress-forums .button-group > .favorite-toggle {
     
    19411850}
    19421851
    1943 .button-group > .button-primary, #bbpress-forums fieldset.bbp-form .button-group > .button.submit, #bbpress-forums fieldset.bbp-form .wporg-bbp-term-subscription.button-group > a.submit,
    1944 #bbpress-forums fieldset.bbp-form .reviews-submit-link.button-group > .submit.btn,
     1852.button-group > .button-primary, #bbpress-forums fieldset.bbp-form .button-group > .button.submit, #bbpress-forums fieldset.bbp-form .reviews-submit-link.button-group > .submit.btn,
    19451853#bbpress-forums fieldset.bbp-form .button-group > .submit.subscription-toggle,
    19461854#bbpress-forums fieldset.bbp-form .button-group > .submit.favorite-toggle {
     
    19481856}
    19491857
    1950 .button-group > .button:hover, #bbpress-forums .wporg-bbp-term-subscription.button-group > a:hover,
    1951 #bbpress-forums .reviews-submit-link.button-group > .btn:hover,
     1858.button-group > .button:hover, #bbpress-forums .reviews-submit-link.button-group > .btn:hover,
    19521859#bbpress-forums .button-group > .subscription-toggle:hover,
    19531860#bbpress-forums .button-group > .favorite-toggle:hover {
     
    19551862}
    19561863
    1957 .button-group > .button:first-child, #bbpress-forums .wporg-bbp-term-subscription.button-group > a:first-child,
    1958 #bbpress-forums .reviews-submit-link.button-group > .btn:first-child,
     1864.button-group > .button:first-child, #bbpress-forums .reviews-submit-link.button-group > .btn:first-child,
    19591865#bbpress-forums .button-group > .subscription-toggle:first-child,
    19601866#bbpress-forums .button-group > .favorite-toggle:first-child {
     
    19621868}
    19631869
    1964 .button-group > .button:last-child, #bbpress-forums .wporg-bbp-term-subscription.button-group > a:last-child,
    1965 #bbpress-forums .reviews-submit-link.button-group > .btn:last-child,
     1870.button-group > .button:last-child, #bbpress-forums .reviews-submit-link.button-group > .btn:last-child,
    19661871#bbpress-forums .button-group > .subscription-toggle:last-child,
    19671872#bbpress-forums .button-group > .favorite-toggle:last-child {
     
    19691874}
    19701875
    1971 .button-group > .button:focus, #bbpress-forums .wporg-bbp-term-subscription.button-group > a:focus,
    1972 #bbpress-forums .reviews-submit-link.button-group > .btn:focus,
     1876.button-group > .button:focus, #bbpress-forums .reviews-submit-link.button-group > .btn:focus,
    19731877#bbpress-forums .button-group > .subscription-toggle:focus,
    19741878#bbpress-forums .button-group > .favorite-toggle:focus {
     
    19771881}
    19781882
    1979 /* ----------------------------------------------------------------------------
    1980   5.0 - Responsive Button Styles
    1981 ---------------------------------------------------------------------------- */
    1982 @media screen and (max-width: 48em) {
    1983     .button, #bbpress-forums .wporg-bbp-term-subscription > a,
    1984     #bbpress-forums .reviews-submit-link > .btn,
    1985     #bbpress-forums .subscription-toggle,
    1986     #bbpress-forums .favorite-toggle,
    1987     .button.button-large,
    1988     #bbpress-forums .wporg-bbp-term-subscription > a.button-large,
    1989     #bbpress-forums .reviews-submit-link > .button-large.btn,
    1990     #bbpress-forums .button-large.subscription-toggle,
    1991     #bbpress-forums .button-large.favorite-toggle,
    1992     .button.button-small,
    1993     #bbpress-forums .wporg-bbp-term-subscription > a.button-small,
    1994     #bbpress-forums .reviews-submit-link > .button-small.btn,
    1995     #bbpress-forums .button-small.subscription-toggle,
    1996     #bbpress-forums .button-small.favorite-toggle {
    1997         font-size: 14px;
    1998         height: auto;
    1999         line-height: normal;
    2000         margin-bottom: 4px;
    2001         padding: 6px 14px;
    2002         vertical-align: middle;
    2003     }
    2004 }
    20051883:root {
    20061884    --wp-admin-theme-color: var(--wp--preset--color--blueberry-1);
     
    20091887/* Include margin and padding in the width calculation of input and textarea. */
    20101888input,
    2011 textarea {
     1889textarea,
     1890select {
    20121891    box-sizing: border-box;
    2013 }
    2014 
    2015 input[type=text],
    2016 input[type=password],
    2017 input[type=checkbox],
    2018 input[type=color],
    2019 input[type=date],
    2020 input[type=datetime],
    2021 input[type=datetime-local],
    2022 input[type=email],
    2023 input[type=month],
    2024 input[type=number],
    2025 input[type=password],
     1892    line-height: var(--wp--custom--form--line-height);
     1893}
     1894
    20261895input[type=radio],
    2027 input[type=tel],
    2028 input[type=text],
    2029 input[type=time],
    2030 input[type=url],
    2031 input[type=week],
    2032 select,
    2033 textarea {
     1896input[type=checkbox] {
    20341897    background-color: #fff;
    20351898    border: 1px solid var(--wp--preset--color--light-grey-1);
     
    20391902    -webkit-appearance: none;
    20401903}
    2041 input[type=text]:focus,
    2042 input[type=password]:focus,
     1904input[type=radio]:focus,
     1905input[type=checkbox]:focus {
     1906    color: var(--wp--custom--form--color--text);
     1907}
     1908
    20431909input[type=checkbox]:focus,
    2044 input[type=color]:focus,
    2045 input[type=date]:focus,
    2046 input[type=datetime]:focus,
    2047 input[type=datetime-local]:focus,
    2048 input[type=email]:focus,
    2049 input[type=month]:focus,
    2050 input[type=number]:focus,
    2051 input[type=password]:focus,
    2052 input[type=radio]:focus,
    2053 input[type=tel]:focus,
    2054 input[type=text]:focus,
    2055 input[type=time]:focus,
    2056 input[type=url]:focus,
    2057 input[type=week]:focus,
    2058 select:focus,
    2059 textarea:focus {
    2060     color: var(--wp--custom--form--color--text);
    2061 }
    2062 
    2063 input[type=text]:focus,
    2064 input[type=password]:focus,
    2065 input[type=color]:focus,
    2066 input[type=date]:focus,
    2067 input[type=datetime]:focus,
    2068 input[type=datetime-local]:focus,
    2069 input[type=email]:focus,
    2070 input[type=month]:focus,
    2071 input[type=number]:focus,
    2072 input[type=password]:focus,
    2073 input[type=search]:focus,
    2074 input[type=tel]:focus,
    2075 input[type=text]:focus,
    2076 input[type=time]:focus,
    2077 input[type=url]:focus,
    2078 input[type=week]:focus,
    2079 input[type=checkbox]:focus,
    2080 input[type=radio]:focus,
    2081 select:focus,
    2082 textarea:focus {
     1910input[type=radio]:focus {
    20831911    border-color: #5b9dd9;
    20841912    box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
    2085 }
    2086 
    2087 /* rtl:ignore */
    2088 input[type=email],
    2089 input[type=url] {
    2090     direction: ltr;
    2091 }
    2092 
    2093 input[type=text],
    2094 input[type=email],
    2095 input[type=password],
    2096 input[type=number] {
    2097     padding: 6px 10px;
    2098 }
    2099 
    2100 /* Vertically align the number selector with the input. */
    2101 input[type=number] {
    2102     height: 40px;
    2103     line-height: inherit;
    21041913}
    21051914
     
    21731982    }
    21741983}
     1984select {
     1985    background: var(--wp--custom--form--color--background);
     1986    border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
     1987    border-radius: var(--wp--custom--form--border--radius);
     1988    box-shadow: var(--wp--custom--form--color--box-shadow);
     1989    font-family: inherit;
     1990    height: 40px;
     1991}
     1992select:focus {
     1993    border-color: var(--custom--form--color--border);
     1994}
     1995
    21751996/* Search */
    21761997input[type=search]::-webkit-search-decoration {
    21771998    display: none;
    2178 }
    2179 
    2180 .ie8 input[type=password] {
    2181     font-family: sans-serif;
    2182 }
    2183 
    2184 textarea,
    2185 input,
    2186 select,
    2187 button {
    2188     font-family: inherit;
    2189     font-size: inherit;
    2190     font-weight: inherit;
    2191 }
    2192 
    2193 textarea,
    2194 input,
    2195 select {
    2196     border-radius: 0;
    2197     font-size: 16px;
    2198     padding: 3px 5px; /* Reset mobile webkit's default element styling */
    2199 }
    2200 
    2201 textarea {
    2202     line-height: 1.4;
    2203     overflow: auto;
    2204     padding: 2px 6px;
    2205     resize: vertical;
    2206 }
    2207 .comment-form-comment textarea {
    2208     width: 100%;
    22091999}
    22102000
     
    22672057-------------------------------------------------------------- */
    22682058@media screen and (min-width: 48em) {
    2269     /* Input Elements */
    2270     input[type=text],
    2271     input[type=email],
    2272     input[type=password],
    2273     input[type=number] {
    2274         padding: 0;
    2275     }
    2276     input[type=number] {
    2277         height: 28px;
    2278     }
    22792059    input[type=checkbox] {
    22802060        padding: 0;
     
    22932073        height: 6px;
    22942074        margin: 4px;
    2295     }
    2296     textarea,
    2297     input,
    2298     select {
    2299         font-size: 14px;
    23002075    }
    23012076}
     
    35773352    font-size: 0.8rem;
    35783353}
     3354#bbpress-forums #bbp-user-body div.bbp-search-form form > div {
     3355    margin-bottom: var(--wp--style--block-gap);
     3356    display: flex;
     3357}
     3358#bbpress-forums #bbp-user-body div.bbp-search-form form > div input[type=text] {
     3359    flex: 1;
     3360    margin-right: calc(var(--wp--preset--spacing--10) / 2);
     3361}
     3362@media only screen and (max-width: 480px) {
     3363    #bbpress-forums #bbp-user-body div.bbp-search-form button,
     3364    #bbpress-forums #bbp-user-body div.bbp-search-form input {
     3365        font-size: var(--wp--preset--font-size--small);
     3366        padding: var(--wp--custom--form--padding--block) var(--wp--custom--form--padding--inline);
     3367    }
     3368}
    35793369@media (max-width: 767px) {
     3370    #bbpress-forums #bbp-user-body div.bbp-search-form {
     3371        float: none;
     3372    }
     3373    #bbpress-forums #bbp-user-body h2.entry-title {
     3374        clear: right;
     3375    }
    35803376    #bbpress-forums input[type=text] {
    35813377        width: 100%;
     
    36123408}
    36133409
    3614 .topic-resolved label {
    3615     vertical-align: none;
     3410.topic-resolved form {
     3411    width: 100%;
     3412    display: flex;
     3413    flex-wrap: wrap;
     3414    align-items: center;
     3415    gap: calc(var(--wp--preset--spacing--10) / 2);
    36163416}
    36173417.topic-resolved select {
    3618     width: 120px;
    3619     line-height: 1;
     3418    width: 150px;
    36203419}
    36213420
     
    38703669.sidebar .topic-info li.topic-report textarea {
    38713670    width: 100%;
    3872     padding: 0.2rem 0.5rem 0.1rem;
    38733671    margin: 4px 0 8px;
    38743672}
     
    39073705# User Profile
    39083706--------------------------------------------------------------*/
    3909 .bbp-single-user input[type=text] {
    3910     padding: 3px 5px;
    3911 }
    39123707@media (max-width: 767px) {
    39133708    .bbp-single-user input[type=text]#ts {
     
    39183713.bbpress #bbpress-forums #bbp-user-wrapper {
    39193714    font-size: var(--wp--preset--font-size--small);
     3715}
     3716.bbpress #bbpress-forums #bbp-user-wrapper .bbp-user-section {
     3717    margin-top: var(--wp--style--block-gap);
    39203718}
    39213719
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/style.css.map

    r13461 r13470  
    1 {"version":3,"sourceRoot":"","sources":["file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/style.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/variables-site/_colors.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/_normalize.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/style-original.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/typography/_headings.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/typography/_copy.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/variables-site/_typography.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/blocks/_group.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/blocks/_local-nav.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/blocks/_iso-editor.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_elements.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_lists.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_tables.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_notices.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_banners.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_badges.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_tags.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/forms/_buttons.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/forms/_fields.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/navigation/_navigation.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/navigation/_menus.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_accessibility.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_alignments.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/mixins/_mixins-master.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_clearings.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_blocks-everywhere-hotfix.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_site.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/variables-site/_structure.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_archive.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_bbpress.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_helphub.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/mixins/_breakpoint.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_infinite-scroll.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/media/_media.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/media/_captions.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/media/_galleries.scss"],"names":[],"mappings":"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;;;AAGD;CACC;CACA;CACA,aCzCW;CD0CX;CACA,aCzCuB;CD0CvB;CACA;CACA;CACA;;;AAGD;CACC,aCpDY;CDqDZ;;;AAGD;CACC;CACA;;;AAGD;CACC;CACA;;;AAGD;CACC;;;AAGD;CACC;;;ALhCD;AAAA;AAAA;AOtCC;CACC;;AAKA;CACC;;;ACPF;CACC;;AAGD;CACC;;AAKA;CACC;;;ACbH;AACA;CACC;;;AT2CD;AAAA;AAAA;AC7CA;CACC;;;ASCD;CACC;;;AAGD;AAAA;AAAA;AAIC;CACA;;;AAGD;CACC;;;AAGD;CACC;;;AAGD;CACC;;AAEA;CAEC;CACA;;;AAIF;CACC;CACA;CACA;CACA;;AAEA;CACC;;AAGD;CACC;CACA;;;AAIF;CACC;CACA;;;AAGD;CACC;;;ACtDD;CACC;;;AAGD;CACC;;;AAGD;CACC;;;AAGD;AAAA;CAEC;CACA;;;AAGD;CACC;;;AAGD;CACC;;;AAGD;CACC;CACA;;AAEA;CACC;CACA;CACA;;;AAIF;CACC;CACA;CACA;;AAEA;CACC;;;ADgBF;CACC;CACA;;;AE7DD;CACC;CACA;;;AAKA;CACC;;AAKA;CACC;;AAGD;AAAA;CAEC;;AAEA;AAAA;CACC;;;AXtBJ;CACC;;;AYCD;CACC;CACA;CAEA;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;CACA;;AAGD;CACC;;AAGD;CACC;;AAGD;CACC;;AAEA;CACC;;AAIF;CACC;;AAEA;CACC;;AAIF;CACC;;AAEA;CACC;;AAIF;CACC;;AAEA;CACC;;AAIF;CACC;;AAEA;CACC;CACA;CACA;CACA;;AAGD;CACC;CACA;CACA;CACA;;;ACxEH;CACC;CACA;CACA;CACA;CACA;CACA;CACA;;;AbPD;CACC;;;AcCD;AAEA;CACC;;;AAGD;CACC;CACA;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;;;AAIF;CACC;;;AAGD;CACC;CACA;;;AAGD;CACC;;;AAGD;CACC;;;AAGD;CACC;CACA;CACA;CACA;CACA;;;AAQA;AAAA;AAAA;AAAA;CACC;CACA;;;ACtDF;CACC;CACA;C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AA;EAMC;;;AAKF;AAAA;AAAA;AAGA;CACC;;AAGA;CACC;;AAGD;CACC;;AAEA;CACC;CACA;;AAEA;CACC;CACA;CACA;;AAIF;CACC;CACA;CACA;;AAEA;CACC;;AAGD;CACC;;AAKH;CACC;;AAGD;CACC;;AAEA;CACC;;AAIF;CACC;CACA;CACA;;;AAKF;AAAA;AAAA;AAGA;CACC;CACA;CAEA;CACA;;AAEA;CACC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;AAGD;CACC;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;CACA;;AAGD;CACC;;AAIF;CACC;;AAMA;CACC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;;AAGD;CACC;CACA;CACA;;AAGD;CACC;;AAKH;CACC;;AAEA;CACC;CACA;CACA;CACA;CACA;CACA;CACA;;AAGD;CAEC;EACC;EACA;EACA;;CAGD;EACC;EACA;;;AAIF;CAEC;EACC;;;AAKH;CACC;CACA;CACA;CACA;;;AAMD;CACC;CACA;;AAGD;CACC;;;AAIF;AAAA;AAAA;AAAA;AAKA;CACC;;;AAKA;CACC;;;AAIF;AAAA;AAAA;AAAA;AAWG;CAFD;AAAA;EAGE;;;AAOF;AAAA;CACC;;AAEA;AAAA;CACC;;AAEA;CAHD;AAAA;EAIE;;;AAIF;AAAA;CACC;;AAGD;AAAA;CACC;;AAIF;AAAA;CACC;CACA;CACA;;AAGD;AAAA;CACC;CACA;CACA;;AAMA;AAAA;AAAA;AAAA;CACC;CACA;;AAIF;AAAA;CACC;;AAEA;AAAA;CACC;;AAIC;AAAA;CACC;;AAGD;AAAA;CACC;;AAMJ;AAAA;CACC;;AAIF;AAAA;CACC;;AAGD;AAAA;CACC;;AAGD;AAAA;CACC;CACA;CACA;CACA;;AAGD;AAAA;CACC;;AAGD;AAAA;CACC;;AAGD;AAAA;CACC;;AAGD;AAAA;CACC;CACA;CACA;;;AAOD;AAAA;AAAA;AAAA;CAEC;CACA;;;AAIF;AAAA;AAAA;AAIA;CACC;;;A1BxhBD;AAAA;AAAA;A4BjFE;CACC;;AAKA;CAEC;;AAIF;CACC;CACA;;;A5BwEH;AAAA;AAAA;A6BvFA;AAEA;AAEA;CACC;CACA;CACA;;;AAUC;AAAA;AAAA;AAAA;CAEC;;AAGD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;CAIC;;AAMA;CAHD;AAAA;AAAA;AAAA;EAIE;EACA;EACA;;;AAIF;CAEC;AAAA;AAAA;AAAA;EAEC;EACA;;CAGD;AAAA;EACC;EACA;;;;AAaH;CACC;;AAKA;CACC;CACA;CACA;CACA;;AAEA;AAAA;CAEC;CACA;;AAGD;CACC;CACA;;AAEA;CACC;;AAKH;AAAA;CAEC;;AAGD;CACC;;AAGD;AAAA;CAEC;;AAMA;AAAA;CACC;;AAMD;AAAA;AAAA;CAGC;;AAGD;CACC;;AAEA;CACC;;AAQF;AAAA;AAAA;AAAA;CAEC;;AAEA;CAJD;AAAA;AAAA;AAAA;EAKE;;;AAKH;AAAA;CAEC;;AAGD;CACC;;AAGD;AAAA;CAEC;CACA;;AAEA;AAAA;CACC;CACA;CACA;;AAIF;AAAA;AAAA;AAAA;AAAA;CAKC;CACA;;AAGD;CACC;;AAGD;CACC;;AAGD;CACC;;AAGD;CACC;;AAGD;AAAA;CAEC;CACA;CACA;CACA;CACA;CACA;CACA;;AAGD;CACC;CACA;CACA;CACA;CACA;CACA;;AAGD;CAEC;AAAA;EAEC;;;AAIF;AAAA;CAEC;CACA;CACA;CACA;CACA;;AAGD;AAAA;CAEC;CACA;CACA;CACA;CACA;;AAEA;CARD;AAAA;EASE;EACA;EACA;;;AAIF;AAAA;CAEC;;AAGD;CACC;;AAGD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;CAOC;CACA;CACA;CACA;CACA;;AAGD;CACC;CACA;;AAGD;AAAA;AAAA;CAGC;;AAMA;AAAA;AAAA;AAAA;CAGC;;AAIF;AAAA;CAEC;CACA;CACA;;AAGD;AAAA;CAEC;;AAGD;AAAA;CAEC;CACA;;AAGD;AAAA;CAEC;CACA;;AAGD;CACC;;AAGD;AAAA;CAEC;;AAGD;AAAA;CAEC;CACA;CACA;CACA;CACA;CACA;;AAEA;CATD;AAAA;EAUE;;;AAGD;CAbD;AAAA;EAcE;;;AAGD;AAAA;CACC;CACA;CACA;;AAEA;AAAA;CACC;;AAKH;AAAA;CAEC;;AAQA;AAAA;AAAA;AAAA;CACC;;AAGD;AAAA;AAAA;AAAA;CACC;;AAIF;CACC;;AAGD;AAEC;CACA;;AAEA;AAIC;CACA;;AAIF;CACC;;AAGD;CACC;CACA;;AAGD;CACC;CACA;CACA;CACA;CACA;CACA;CACA;;AAGD;CACC;CACA;;AAGD;CACC;;AAGD;CACC;CACA;;AAGD;CACC;;AAEA;CAHD;EAIE;;;AAGD;CACC;CACA;CACA;CACA;CACA;;AAIF;CACC;CACA;CACA;CACA;CACA;;AAEA;CAPD;EAQE;EACA;;;AAGD;CACC;CACA;CACA;;AAEA;CACC;;AAGD;CACC;;AAKF;CACC;CACA;;AAGD;CACC;;AAGD;CAEC;AAAA;EAEC;EACA;;CAGD;EACC;;;AAKH;CACC;CACA;CACA;CACA;CACA;;AAEA;CAPD;EAQE;;;AAGD;CACC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;AAGA;CAZD;EAaE;;;AAGD;CAhBD;EAiBE;;;AAGD;CACC;CACA;CACA;CACA;;AAGD;CACC;CACA;;AAGD;CACC;CACA;;AAGD;CACC;;AAGD;CACC;;AAKH;CACC;;AAIF;CACC;CACA;CACA;;AAGD;CACC;;AAGD;AAAA;AAAA;AAAA;AAAA;AAAA;CAMC;;AAGD;AAAA;CAEC;;AAGD;CACC;;AAGD;AAAA;CAEC;;AAGD;AAAA;CAEC;;AAKA;AAAA;CAEC;;AAEA;AAAA;CACC;CACA;CACA;CACA;;AAEA;CAND;AAAA;EAOE;EACA;;;AAOF;CACC;;AAMD;CACC;;AAKH;AAAA;CAEC;;AAGD;CACC;;AAGD;AAAA;CAEC;;AAGD;CACC;;;AAKF;AAAA;AAAA;AAMC;CACC;CACA;;AAGD;CACC;;AAGD;AAAA;CAEC;CACA;;AAGD;AAAA;CAEC;CACA;;AAGD;CACC;;AAEA;CAHD;EAIE;;;AAiBF;CACC;;;AAIF;CACC;CACA;;AAEA;CACC;;AAGD;CACC;CACA;CACA;CACA;CACA;;;AAMD;CACC;;;AAKF;AAAA;AAAA;AAMC;CACC;CACA;;AAEA;CACC;CACA;;AAGD;AAAA;CAEC;;AAGD;CACC;CACA;;AAGD;AAAA;AAAA;CAGC;;AAGD;CACC;;AAIF;CACC;;AAEA;CACC;CACA;;AAIF;CAEC;EACC;;;;AAKH;AAAA;CAEC;CACA;CACA;CACA;;AAEA;AAAA;CACC;;AAEA;AAAA;CACC;;;AAKH;AAAA;CAEC;;;AAGD;CACC;;;AAGD;CACC;;;AAKA;CACC;;AAGD;CACC;CACA;;;AAIF;CACC;CACA;CACA;;AAEA;CALD;EAME;EACA;EACA;EACA;EACA;EACA;;;;AAIF;CACC;;;AAGD;AAAA;AAAA;AAIA;AAAA;CAGC;CACA;CACA;;AAEA;AAAA;CACC;;AAGD;AAAA;AAAA;AAAA;CAEC;CACA;;;AAIF;AAAA;AAAA;AASE;AAAA;CACC;;AAEA;AAAA;CACC;;AAIF;AAAA;CACC;CACA;CACA;;AAEA;AAAA;CACC;;AAKF;AAAA;AAAA;AAAA;CAEC;;AAID;AAAA;CACC;;AAMD;AAAA;CACC;;AAGD;AAAA;CACC;;AAIF;AAAA;CACC;;AAGD;AAAA;CACC;CACA;CACA;;AAKA;AAAA;CACC;;AAGD;CAEC;AAAA;EACC;EACA;EACA;;CAEA;AAAA;EACC;EACA;;;AAQH;CAFD;AAAA;EAGE;;CAEA;AAAA;EACC;;CAGD;AAAA;EACC;;;;AAOJ;AAAA;AAAA;AAKC;AAAA;AAAA;CAGC;CACA;;AAGD;AAAA;AAAA;CAGC;;AAGD;AAAA;AAAA;CAGC;;AAGD;CACC;CACA;;;AAKF;AAAA;AAAA;AAOE;CACC;;AAEA;CACC;;AAGD;CACC;;AAGD;CACC;CACA;CACA;;AAGD;AAAA;CAEC;CACA;;AAGD;AAAA;CAEC;;AAKA;CAGC;;AAGD;CACC;;AAIF;CACC;CACA;;AAGD;AAAA;AAAA;AAAA;CAIC;CACA;;AAID;CACC;;AAEA;CACC;;AAKF;CACC;;AAEA;CACC;;AAEA;CACC;;AAQD;CACC;CACA;CACA;CACA;CACA;;AAIF;CAGC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;AAGD;CAEC;;AAKH;CACC;CACA;CACA;;AAIF;CACC;;;AAIF;CACC;CACA;CACA;CACA;;AAEA;CACC;;;AAMD;AAwBC;;AAtBA;AAAA;AAAA;CAGC;CACA;CACA;;AAGD;CACC;CACA;CACA;;AAEA;CACC;;AAGD;CACC;;AAKF;CACC;;AAMD;CACC;;AAEA;CACC;;AAKH;AAAA;CAEC;;AAGD;CACC;CACA;CACA;CACA;;;AAKF;AAAA;AAAA;AAKC;CACC;;AAEA;CAEC;EACC;;;;AAMJ;CACC;;;AAOC;CACC;;AAGD;CACC;;AAMD;CACC;;AAGD;CACC;CACA;CACA;;;AAMH;AAAA;AAAA;AAQE;CACC;;;AAOF;CAGC;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;CACA;;AAGD;CACC;;AAIF;CACC;CACA;CACA;CACA;;AAEA;CAGC;;AAGD;CACC;CACA;;AAEA;CACC;;AAIF;CACC;;AAIF;CArDD;EAsDE;;CAEA;EACC;;;;A7BnrCJ;AAAA;AAAA;A8B/FA;CACC;CACA;;;AAOC;CACC;CACA;;AAGD;CACC;CACA;CACA;CACA;;AAEA;CACC;;AAEA;CACC;;AAKH;AAAA;CAEC;;AAGD;CACC;;ACND;CDtBD;EAgCE;EACA;EACA,OHpCkB;;CGsClB;EACC;EACA;;CAEA;EACC;;;;AAaF;CAFD;EAGE;EACA;;;AAWA;CACC;;AAGD;CAND;EAOE;EACA;;;AAMJ;CACC;;AAGD;CACC;;;A9BSF;AAAA;AAAA;AgCpGA;AAAA;AAAA;AAGA;AAAA;CAEC;;;AAGD;AAAA;AAEA;CACC;;;AhC8FD;AAAA;AAAA;AiCzGA;AAAA;AAAA;AAAA;CAIC;CACA;CACA;CACA;AAEA;CACA;CACA;;;AAGD;CACC;CACA;;;AAGD;AACA;AAAA;AAAA;CAGC;;;AAGD;AAAA;AAAA;AC1BA;CACC;CACA;;AAEA;CXIA;CACA;CACA;;AWDA;CACC;;;AAIF;CACC;;;ADgBD;AAAA;AAAA;AE/BA;CACC;;;AAGD;CACC;CACA;CACA;CACA;;AAEA;CACC;;AAGD;CACC;;AAGD;CACC;;AAGD;CACC;;AAGD;CACC;;AAGD;CACC;;AAGD;CACC;;AAGD;CACC;;;AAIF;CACC","file":"style.css"}
     1{"version":3,"sourceRoot":"","sources":["file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/style.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/variables-site/_colors.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/_normalize.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/style-original.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/typography/_headings.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/typography/_copy.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/variables-site/_typography.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/blocks/_group.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/blocks/_local-nav.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/blocks/_iso-editor.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_elements.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_lists.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_tables.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_notices.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_banners.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_badges.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/elements/_tags.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/forms/_buttons.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/forms/_fields.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/navigation/_navigation.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/navigation/_menus.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_accessibility.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_alignments.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/mixins/_mixins-master.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_clearings.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_blocks-everywhere-hotfix.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_site.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/variables-site/_structure.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_archive.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_bbpress.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_helphub.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/mixins/_breakpoint.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/modules/_infinite-scroll.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/media/_media.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/media/_captions.scss","file:///home/wporg/public_html/wp-content/themes/pub/wporg-support-2024/sass/media/_galleries.scss"],"names":[],"mappings":"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;;;AAGD;CACC;CACA;CACA,aCzCW;CD0CX;CACA,aCzCuB;CD0CvB;CACA;CACA;CACA;;;AAGD;CACC,aCpDY;CDqDZ;;;AAGD;CACC;CACA;;;AAGD;CACC;CACA;;;AAGD;CACC;;;AAGD;CACC;;;ALhCD;AAAA;AAAA;AOtCC;CACC;;AAKA;CACC;;;ACPF;CACC;;AAGD;CACC;;AAKA;CACC;;;ACbH;AACA;CACC;;;AT2CD;AAAA;AAAA;AC7CA;CACC;;;ASCD;CACC;;;AAGD;AAAA;AAAA;AAIC;CACA;;;AAGD;CACC;;;AAGD;CACC;;;AAGD;CACC;;AAEA;CAEC;CACA;;;AAIF;CACC;CACA;CACA;CACA;;AAEA;CACC;;AAGD;CACC;CACA;;;AAIF;CACC;CACA;;;AAGD;CACC;;;ACtDD;CACC;;;AAGD;CACC;;;AAGD;CACC;;;AAGD;AAAA;CAEC;CACA;;;AAGD;CACC;;;AAGD;CACC;;;AAGD;CACC;CACA;;AAEA;CACC;CACA;CACA;;;AAIF;CACC;CACA;CACA;;AAEA;CACC;;;ADgBF;CACC;CACA;;;AE7DD;CACC;CACA;;;AAKA;CACC;;AAKA;CACC;;AAGD;AAAA;CAEC;;AAEA;AAAA;CACC;;;AXtBJ;CACC;;;AYCD;CACC;CACA;CAEA;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;CACA;;AAGD;CACC;;AAGD;CACC;;AAGD;CACC;;AAEA;CACC;;AAIF;CACC;;AAEA;CACC;;AAIF;CACC;;AAEA;CACC;;AAIF;CACC;;AAEA;CACC;;AAIF;CACC;;AAEA;CACC;CACA;CACA;CACA;;AAGD;CACC;CACA;CACA;CACA;;;ACxEH;CACC;CACA;CACA;CACA;CACA;CACA;CACA;;;AbPD;CACC;;;AcCD;AAEA;CACC;;;AAGD;CACC;CACA;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;;;AAIF;CACC;;;AAGD;CACC;CACA;;;AAGD;CACC;;;AAGD;CACC;;;AAGD;CACC;CACA;CACA;CACA;CACA;;;AAQA;AAAA;AAAA;AAAA;CACC;CACA;;;ACtDF;CACC;CACA;C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CACC;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;;AAIF;AACA;CACC;;;ArBmCD;AAAA;AAAA;AsBjEA;CACC;CACA;CACA;;;AAGD;CACC;CACA;CACA;;;AAGD;CACC;CCLA;CACA;CACA;;;AvB4DD;AAAA;AAAA;AwBtEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;CDeC;CACA;CACA;;;ACDD;AAAA;AAAA;AAAA;AAAA;AAAA;CDMC;;;AvBqDD;AAAA;AAAA;AyBzEA;AAAA;CAEC;;;AAGD;CACC;CACA;;;AAGD;CACC;;;AzBmED;AAAA;AAAA;AChFA;CACC;;;AyBCD;AAAA;AAAA;AAGA;CACC;CACA;CACA;CACA;;AAEA;CACC;CACA,WCTgB;CDUhB;;AAEA;CALD;EAME;;;AAIF;CACC;CACA;;;AAKF;AAAA;AAAA;AAGA;CACC;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;;AAEA;CAGC;;AAIF;CACC;CACA;CACA;;AAEA;CALD;EAME;;;AAGD;CATD;EAUE;;;;AAMH;AAAA;AAAA;AAGA;CACC;CACA;CACA;CACA;CACA;;;AAID;AAAA;AAAA;AAGA;CACC;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;CACA;CACA;;AAEA;CACC;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;;AAKA;CAEC;;AAIF;CACC;;AAYF;AAAA;CAEC;;AAIF;CACC;CACA;;AAOD;CACC;CACA;CACA;CACA;;AAEA;CAEC;;AAGD;CAEC;EACC;;;AAKH;CACC;;;AAIF;CAEC;AAAA;AAAA;EAGC;;CAGD;AAAA;EAEC;;;AAIF;AACA;CACC;;;AAGD;CACC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;;;AAIF;CAEC;EACC;;CAGD;EACC;EACA;EACA;EACA;;CAEA;EACC;;CAGD;EACC;EACA;;CAEA;EACC;EACA;EACA;EACA;EACA;;CAEA;EACC;;CAKH;EACC;;;AAMH;AAAA;AAAA;AAAA;AAKA;CACC;;;AAGD;CACC;;;AAGD;CAEC;EACC;;;AAIF;CAEC;AAAA;AAAA;AAAA;AAAA;AAAA;EAMC;;;AAKF;AAAA;AAAA;AAGA;CACC;;AAGA;CACC;;AAGD;CACC;;AAEA;CACC;CACA;;AAEA;CACC;CACA;CACA;;AAIF;CACC;CACA;CACA;;AAEA;CACC;;AAGD;CACC;;AAKH;CACC;;AAGD;CACC;;AAEA;CACC;;AAIF;CACC;CACA;CACA;;;AAKF;AAAA;AAAA;AAGA;CACC;CACA;CAEA;CACA;;AAEA;CACC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;AAGD;CACC;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;CACA;CACA;;AAGD;CACC;;AAIF;CACC;;AAMA;CACC;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;CACA;;AAEA;CACC;;AAGD;CACC;CACA;CACA;;AAGD;CACC;;AAKH;CACC;;AAEA;CACC;CACA;CACA;CACA;CACA;CACA;CACA;;AAGD;CAEC;EACC;EACA;EACA;;CAGD;EACC;EACA;;;AAIF;CAEC;EACC;;;AAKH;CACC;CACA;CACA;CACA;;;AAMD;CACC;CACA;;AAGD;CACC;;;AAIF;AAAA;AAAA;AAAA;AAKA;CACC;;;AAKA;CACC;;;AAIF;AAAA;AAAA;AAAA;AAWG;CAFD;AAAA;EAGE;;;AAOF;AAAA;CACC;;AAEA;AAAA;CACC;;AAEA;CAHD;AAAA;EAIE;;;AAIF;AAAA;CACC;;AAGD;AAAA;CACC;;AAIF;AAAA;CACC;CACA;CACA;;AAGD;AAAA;CACC;CACA;CACA;;AAMA;AAAA;AAAA;AAAA;CACC;CACA;;AAIF;AAAA;CACC;;AAEA;AAAA;CACC;;AAIC;AAAA;CACC;;AAGD;AAAA;CACC;;AAMJ;AAAA;CACC;;AAIF;AAAA;CACC;;AAGD;AAAA;CACC;;AAGD;AAAA;CACC;CACA;CACA;CACA;;AAGD;AAAA;CACC;;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","file":"style.css"}
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/theme.json

    r13450 r13470  
    3232                "thread-starter": "var(--wp--preset--color--acid-green-2)",
    3333                "thread-reporter": "var(--wp--preset--color--lemon-1)"
     34            },
     35            "form": {
     36                "border": {
     37                    "width": "1px",
     38                    "color": "var(--wp--preset--color--charcoal-5)"
     39                },
     40                "padding": {
     41                    "block": "7px",
     42                    "inline": "12px"
     43                },
     44                "lineHeight": "var(--wp--custom--body--small--typography--line-height)"
    3445            },
    3546            "heading": {
Note: See TracChangeset for help on using the changeset viewer.