Making WordPress.org

Changeset 13476

Timestamp:
04/09/2024 06:31:42 AM (4 months ago)
Author:
adamwood
Message:

wporg-support-2024: Style forms

Update styles for bbPress forms and block editor

Fixes https://github.com/WordPress/wordpress.org/issues/213
Closes https://github.com/WordPress/wordpress.org/issues/230
Closes https://github.com/WordPress/wordpress.org/issues/219

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/blocks/_iso-editor.scss

    r13281 r13476  
    11/* Move the Block Editor toolbar below the Header & Also Viewing z-index bar */
    2 .iso-editor.has-fixed-toolbar .interface-interface-skeleton__header {
    3     z-index: var(--wp--custom--z-index--iso-editor);
     2.iso-editor {
     3    border-color: var(--wp--custom--form--border--color);
     4    border-radius: var(--wp--custom--form--border--radius);
     5
     6    &.has-fixed-toolbar .interface-interface-skeleton__header {
     7        z-index: var(--wp--custom--z-index--iso-editor);
     8    }
    49}
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/sass/forms/_fields.scss

    r13470 r13476  
    1111input[type="radio"],
    1212input[type="checkbox"] {
    13     background-color: #fff;
    14     border: 1px solid var(--wp--preset--color--light-grey-1);
     13    border: 1px solid var(--wp--custom--form--border--color);
    1514    box-shadow: var(--wp--custom--form--color--box-shadow);
    16     color: var(--wp--custom--form--color--text);
    17     transition: 0.05s border-color ease-in-out;
    18     -webkit-appearance: none;
     15    border-radius: var(--wp--custom--form--border--radius);
     16    clear: none;
     17    cursor: pointer;
     18    display: inline-block;
     19    width: 20px;
     20    height: 20px;
     21    line-height: 0;
     22    padding: 0 !important;
     23    text-align: center;
     24    vertical-align: middle;
     25    margin: 0;
    1926
    2027    &:focus {
     28
    2129        color: var(--wp--custom--form--color--text);
    2230    }
    23 }
    2431
    25 input[type="checkbox"]:focus,
    26 input[type="radio"]:focus {
    27     border-color: #5b9dd9;
    28     box-shadow: 0 0 2px rgba( 30, 140, 190, 0.8 );
    29 }
    30 
    31 input[type="checkbox"],
    32 input[type="radio"] {
    33     background: #fff;
    34     border: 1px solid #b4b9be;
    35     box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.1 );
    36     clear: none;
    37     color: #555;
    38     cursor: pointer;
    39     display: inline-block;
    40     height: 25px;
    41     line-height: 0;
    42     margin: -4px 4px 0 0;
    43     min-width: 16px;
    44     padding: 0 !important;
    45     text-align: center;
    46     transition: 0.05s border-color ease-in-out;
    47     vertical-align: middle;
    48     width: 25px;
    49 }
    50 
    51 input[type="checkbox"] {
    52     padding: 10px;
     32    &:focus-visible {
     33        outline: -webkit-focus-ring-color auto 1px;
     34    }
    5335}
    5436
    5537input[type="radio"] {
    5638    border-radius: 50%;
    57     line-height: 10px;
    58     margin-right: 4px;
    59 }
    6039
    61 input[type="checkbox"]:checked::before,
    62 input[type="radio"]:checked::before {
    63     display: inline-block;
    64     float: left;
    65     font: 400 21px/1 dashicons;
    66     vertical-align: middle;
    67     width: 16px;
    68     -moz-osx-font-smoothing: grayscale;
    69     -webkit-font-smoothing: antialiased;
    70     speak: none;
    71 }
    72 
    73 input[type="checkbox"]:checked::before {
    74     color: var(--wp--preset--color--blueberry-1);
    75     content: "\f147";
    76     font: 400 30px/1 dashicons;
    77     margin: -3px -5px;
    78 }
    79 
    80 input[type="radio"]:checked::before {
    81     background-color: var(--wp--preset--color--blueberry-1);
    82     border-radius: 50px;
    83     content: "\2022";
    84     font-size: 24px;
    85     height: 9px;
    86     line-height: 16px;
    87     margin: 7px;
    88     text-indent: -9999px;
    89     vertical-align: middle;
    90     width: 9px;
     40    & + label {
     41        margin-left: 0.5em;
     42    }
    9143}
    9244
     
    10658    box-shadow: var(--wp--custom--form--color--box-shadow);
    10759    font-family: inherit;
    108     height: 40px;
    109 
    110     &:focus {
    111         border-color: var(--custom--form--color--border);
    112     }
     60    min-height: 40px;
    11361}
    11462
     
    14391textarea:disabled,
    14492textarea.disabled {
    145     background: rgba( 255, 255, 255, 0.5 );
    146     border-color: rgba( 222, 222, 222, 0.75 );
    147     box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.04 );
    148     color: rgba( 51, 51, 51, 0.5 );
     93    background: );
     94    border-color: );
     95    box-shadow: ;
     96    color: );
    14997}
    15098
     
    172120    vertical-align: middle;
    173121}
    174 
    175 
    176 /* =Media Queries
    177 -------------------------------------------------------------- */
    178 
    179 @media screen and ( min-width: 48em ) {
    180 
    181     input[type="checkbox"] {
    182         padding: 0;
    183     }
    184 
    185     input[type="checkbox"]:checked::before {
    186         font: 400 21px/1 dashicons;
    187         margin: -3px 0 0 -4px;
    188     }
    189 
    190     input[type="radio"],
    191     input[type="checkbox"] {
    192         height: 16px;
    193         width: 16px;
    194     }
    195 
    196     input[type="radio"]:checked::before {
    197         width: 6px;
    198         height: 6px;
    199         margin: 4px;
    200     }
    201 }
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/sass/site/_bbpress.scss

    r13471 r13476  
    644644#bbpress-forums {
    645645
    646     fieldset.bbp-form button {
    647         padding: 0 0.8rem;
    648         font-size: ms(-2);
    649     }
    650 
    651646    .bbp-reply-form {
    652647        clear: both;
     
    659654    }
    660655
    661     fieldset.bbp-form select,
    662     fieldset.bbp-form input[type="text"] {
    663         min-height: 32px;
    664         height: 32px;
    665     }
    666 
     656    #bbp-your-profile fieldset.submit button,
    667657    .bbp-submit-wrapper {
    668         margin-top: -35px;
    669 
    670         @media (max-width: 767px) {
    671             margin-top: 0;
    672         }
     658        float: none;
    673659    }
    674660
     
    721707#bbpress-forums {
    722708
    723     fieldset.bbp-form {
    724         margin: 0;
    725         border: 0;
    726 
    727         legend {
    728             font-weight: 400;
    729             font-size: ms(2);
    730         }
    731 
    732         label,
    733         p em {
    734             font-size: ms(-2);
    735         }
    736 
    737         em#site_url_description {
    738             display: inline-block;
    739             margin-bottom: 12px;
    740         }
    741 
    742         input[type="checkbox"],
    743         input#site_url,
    744         input#bbp_topic_tags {
    745             margin-bottom: 0;
    746         }
    747 
    748         div.rate {
    749             margin-bottom: 8px;
    750         }
    751     }
    752 
    753709    fieldset.log-edit {
    754710        margin: 12px 0 8px 0;
     
    756712        legend {
    757713            padding: 0;
    758             font-size: ms(-2);
     714        }
     715    }
     716
     717    #bbp-your-profile fieldset {
     718        padding: 0;
     719        margin: 0 0 var(--wp--style--block-gap);
     720        border: none;
     721    }
     722
     723    fieldset.bbp-form select,
     724    fieldset.bbp-form input[type="text"],
     725    #bbp-your-profile fieldset input,
     726    #bbp-your-profile fieldset textarea,
     727    #bbp-your-profile fieldset select {
     728        height: unset;
     729        border-color: var(--wp--custom--form--border--color);
     730        padding: var(--wp--custom--form--padding--block) var(--wp--custom--form--padding--inline);
     731        background-color: var(--wp--custom--form--color--background);
     732        border-radius: var(--wp--custom--form--border--radius);
     733        min-height: 40px;
     734
     735        &:focus {
     736            box-shadow: none;
     737        }
     738
     739        &:focus-visible {
     740            box-shadow: none;
     741            outline: -webkit-focus-ring-color auto 1px;
     742        }
     743
     744        &:disabled {
     745            border-color: var(--wp--custom--form--disabled--border-color);
     746        }
     747    }
     748
     749    fieldset.bbp-form {
     750
     751        input[type="checkbox"],
     752        input[type="radio"] {
     753            margin: 0;
     754
     755            + label {
     756                margin-left: 0.5em;
     757            }
     758
     759            &:focus {
     760                box-shadow: none;
     761            }
     762
     763            &:focus-visible {
     764                box-shadow: none;
     765                outline: -webkit-focus-ring-color auto 1px;
     766            }
     767        }
     768
     769        label input[type="checkbox"],
     770        label input[type="radio"] {
     771            margin-right: 0.5em;
    759772        }
    760773    }
     
    823836.reply-edit #bbpress-forums .bbp-reply-form legend {
    824837    display: block;
     838
     839
     840
     841
     842
     843
    825844}
    826845
     
    12311250    font-size: var(--wp--preset--font-size--small);
    12321251
     1252
     1253
     1254
     1255
     1256
     1257
    12331258    .bbp-user-section {
    12341259        margin-top: var(--wp--style--block-gap);
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/style-rtl.css

    r13474 r13476  
    1 @charset "UTF-8";
    21/**
    32 * Theme Name: WordPress.org Support 2024
     
    10321031
    10331032/* Move the Block Editor toolbar below the Header & Also Viewing z-index bar */
     1033
     1034
     1035
     1036
    10341037.iso-editor.has-fixed-toolbar .interface-interface-skeleton__header {
    10351038    z-index: var(--wp--custom--z-index--iso-editor);
     
    18991902input[type=radio],
    19001903input[type=checkbox] {
    1901     background-color: #fff;
    1902     border: 1px solid var(--wp--preset--color--light-grey-1);
     1904    border: 1px solid var(--wp--custom--form--border--color);
    19031905    box-shadow: var(--wp--custom--form--color--box-shadow);
    1904     color: var(--wp--custom--form--color--text);
    1905     transition: 0.05s border-color ease-in-out;
    1906     -webkit-appearance: none;
     1906    border-radius: var(--wp--custom--form--border--radius);
     1907    clear: none;
     1908    cursor: pointer;
     1909    display: inline-block;
     1910    width: 20px;
     1911    height: 20px;
     1912    line-height: 0;
     1913    padding: 0 !important;
     1914    text-align: center;
     1915    vertical-align: middle;
     1916    margin: 0;
    19071917}
    19081918input[type=radio]:focus,
    19091919input[type=checkbox]:focus {
     1920
    19101921    color: var(--wp--custom--form--color--text);
    19111922}
    1912 
    1913 input[type=checkbox]:focus,
    1914 input[type=radio]:focus {
    1915     border-color: #5b9dd9;
    1916     box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
    1917 }
    1918 
    1919 input[type=checkbox],
    1920 input[type=radio] {
    1921     background: #fff;
    1922     border: 1px solid #b4b9be;
    1923     box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    1924     clear: none;
    1925     color: #555;
    1926     cursor: pointer;
    1927     display: inline-block;
    1928     height: 25px;
    1929     line-height: 0;
    1930     margin: -4px 0 0 4px;
    1931     min-width: 16px;
    1932     padding: 0 !important;
    1933     text-align: center;
    1934     transition: 0.05s border-color ease-in-out;
    1935     vertical-align: middle;
    1936     width: 25px;
    1937 }
    1938 
    1939 input[type=checkbox] {
    1940     padding: 10px;
     1923input[type=radio]:focus-visible,
     1924input[type=checkbox]:focus-visible {
     1925    outline: -webkit-focus-ring-color auto 1px;
    19411926}
    19421927
    19431928input[type=radio] {
    19441929    border-radius: 50%;
    1945     line-height: 10px;
    1946     margin-left: 4px;
    1947 }
    1948 
    1949 input[type=checkbox]:checked::before,
    1950 input[type=radio]:checked::before {
    1951     display: inline-block;
    1952     float: right;
    1953     font: 400 21px/1 dashicons;
    1954     vertical-align: middle;
    1955     width: 16px;
    1956     -moz-osx-font-smoothing: grayscale;
    1957     -webkit-font-smoothing: antialiased;
    1958     speak: none;
    1959 }
    1960 
    1961 input[type=checkbox]:checked::before {
    1962     color: var(--wp--preset--color--blueberry-1);
    1963     content: "\f147";
    1964     font: 400 30px/1 dashicons;
    1965     margin: -3px -5px;
    1966 }
    1967 
    1968 input[type=radio]:checked::before {
    1969     background-color: var(--wp--preset--color--blueberry-1);
    1970     border-radius: 50px;
    1971     content: "•";
    1972     font-size: 24px;
    1973     height: 9px;
    1974     line-height: 16px;
    1975     margin: 7px;
    1976     text-indent: -9999px;
    1977     vertical-align: middle;
    1978     width: 9px;
     1930}
     1931input[type=radio] + label {
     1932    margin-right: 0.5em;
    19791933}
    19801934
     
    19921946    box-shadow: var(--wp--custom--form--color--box-shadow);
    19931947    font-family: inherit;
    1994     height: 40px;
    1995 }
    1996 select:focus {
    1997     border-color: var(--custom--form--color--border);
     1948    min-height: 40px;
    19981949}
    19991950
     
    20281979textarea:disabled,
    20291980textarea.disabled {
    2030     background: rgba(255, 255, 255, 0.5);
    2031     border-color: rgba(222, 222, 222, 0.75);
    2032     box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
    2033     color: rgba(51, 51, 51, 0.5);
     1981    background: );
     1982    border-color: );
     1983    box-shadow: ;
     1984    color: );
    20341985}
    20351986
     
    20582009}
    20592010
    2060 /* =Media Queries
    2061 -------------------------------------------------------------- */
    2062 @media screen and (min-width: 48em) {
    2063     input[type=checkbox] {
    2064         padding: 0;
    2065     }
    2066     input[type=checkbox]:checked::before {
    2067         font: 400 21px/1 dashicons;
    2068         margin: -3px -4px 0 0;
    2069     }
    2070     input[type=radio],
    2071     input[type=checkbox] {
    2072         height: 16px;
    2073         width: 16px;
    2074     }
    2075     input[type=radio]:checked::before {
    2076         width: 6px;
    2077         height: 6px;
    2078         margin: 4px;
    2079     }
    2080 }
    20812011/*--------------------------------------------------------------
    20822012# Navigation
     
    32753205# Buttons
    32763206--------------------------------------------------------------*/
    3277 #bbpress-forums fieldset.bbp-form button {
    3278     padding: 0 0.8rem;
    3279     font-size: 0.8rem;
    3280 }
    32813207#bbpress-forums .bbp-reply-form {
    32823208    clear: both;
     
    32873213    margin-top: 0;
    32883214}
    3289 #bbpress-forums fieldset.bbp-form select,
    3290 #bbpress-forums fieldset.bbp-form input[type=text] {
    3291     min-height: 32px;
    3292     height: 32px;
    3293 }
     3215#bbpress-forums #bbp-your-profile fieldset.submit button,
    32943216#bbpress-forums .bbp-submit-wrapper {
    3295     margin-top: -35px;
    3296 }
    3297 @media (max-width: 767px) {
    3298     #bbpress-forums .bbp-submit-wrapper {
    3299         margin-top: 0;
    3300     }
     3217    float: none;
    33013218}
    33023219#bbpress-forums .wporg-bbp-term-subscription {
     
    33263243# Forms
    33273244--------------------------------------------------------------*/
    3328 #bbpress-forums fieldset.bbp-form {
    3329     margin: 0;
    3330     border: 0;
    3331 }
    3332 #bbpress-forums fieldset.bbp-form legend {
    3333     font-weight: 400;
    3334     font-size: 1.25rem;
    3335 }
    3336 #bbpress-forums fieldset.bbp-form label,
    3337 #bbpress-forums fieldset.bbp-form p em {
    3338     font-size: 0.8rem;
    3339 }
    3340 #bbpress-forums fieldset.bbp-form em#site_url_description {
    3341     display: inline-block;
    3342     margin-bottom: 12px;
    3343 }
    3344 #bbpress-forums fieldset.bbp-form input[type=checkbox],
    3345 #bbpress-forums fieldset.bbp-form input#site_url,
    3346 #bbpress-forums fieldset.bbp-form input#bbp_topic_tags {
    3347     margin-bottom: 0;
    3348 }
    3349 #bbpress-forums fieldset.bbp-form div.rate {
    3350     margin-bottom: 8px;
    3351 }
    33523245#bbpress-forums fieldset.log-edit {
    33533246    margin: 12px 0 8px 0;
     
    33553248#bbpress-forums fieldset.log-edit legend {
    33563249    padding: 0;
    3357     font-size: 0.8rem;
     3250}
     3251#bbpress-forums #bbp-your-profile fieldset {
     3252    padding: 0;
     3253    margin: 0 0 var(--wp--style--block-gap);
     3254    border: none;
     3255}
     3256#bbpress-forums fieldset.bbp-form select,
     3257#bbpress-forums fieldset.bbp-form input[type=text],
     3258#bbpress-forums #bbp-your-profile fieldset input,
     3259#bbpress-forums #bbp-your-profile fieldset textarea,
     3260#bbpress-forums #bbp-your-profile fieldset select {
     3261    height: unset;
     3262    border-color: var(--wp--custom--form--border--color);
     3263    padding: var(--wp--custom--form--padding--block) var(--wp--custom--form--padding--inline);
     3264    background-color: var(--wp--custom--form--color--background);
     3265    border-radius: var(--wp--custom--form--border--radius);
     3266    min-height: 40px;
     3267}
     3268#bbpress-forums fieldset.bbp-form select:focus,
     3269#bbpress-forums fieldset.bbp-form input[type=text]:focus,
     3270#bbpress-forums #bbp-your-profile fieldset input:focus,
     3271#bbpress-forums #bbp-your-profile fieldset textarea:focus,
     3272#bbpress-forums #bbp-your-profile fieldset select:focus {
     3273    box-shadow: none;
     3274}
     3275#bbpress-forums fieldset.bbp-form select:focus-visible,
     3276#bbpress-forums fieldset.bbp-form input[type=text]:focus-visible,
     3277#bbpress-forums #bbp-your-profile fieldset input:focus-visible,
     3278#bbpress-forums #bbp-your-profile fieldset textarea:focus-visible,
     3279#bbpress-forums #bbp-your-profile fieldset select:focus-visible {
     3280    box-shadow: none;
     3281    outline: -webkit-focus-ring-color auto 1px;
     3282}
     3283#bbpress-forums fieldset.bbp-form select:disabled,
     3284#bbpress-forums fieldset.bbp-form input[type=text]:disabled,
     3285#bbpress-forums #bbp-your-profile fieldset input:disabled,
     3286#bbpress-forums #bbp-your-profile fieldset textarea:disabled,
     3287#bbpress-forums #bbp-your-profile fieldset select:disabled {
     3288    border-color: var(--wp--custom--form--disabled--border-color);
     3289}
     3290#bbpress-forums fieldset.bbp-form input[type=checkbox],
     3291#bbpress-forums fieldset.bbp-form input[type=radio] {
     3292    margin: 0;
     3293}
     3294#bbpress-forums fieldset.bbp-form input[type=checkbox] + label,
     3295#bbpress-forums fieldset.bbp-form input[type=radio] + label {
     3296    margin-right: 0.5em;
     3297}
     3298#bbpress-forums fieldset.bbp-form input[type=checkbox]:focus,
     3299#bbpress-forums fieldset.bbp-form input[type=radio]:focus {
     3300    box-shadow: none;
     3301}
     3302#bbpress-forums fieldset.bbp-form input[type=checkbox]:focus-visible,
     3303#bbpress-forums fieldset.bbp-form input[type=radio]:focus-visible {
     3304    box-shadow: none;
     3305    outline: -webkit-focus-ring-color auto 1px;
     3306}
     3307#bbpress-forums fieldset.bbp-form label input[type=checkbox],
     3308#bbpress-forums fieldset.bbp-form label input[type=radio] {
     3309    margin-left: 0.5em;
    33583310}
    33593311#bbpress-forums #bbp-user-body div.bbp-search-form form > div {
     
    34033355.reply-edit #bbpress-forums .bbp-reply-form legend {
    34043356    display: block;
     3357
     3358
     3359
     3360
     3361
     3362
    34053363}
    34063364
     
    37183676.bbpress #bbpress-forums #bbp-user-wrapper {
    37193677    font-size: var(--wp--preset--font-size--small);
     3678
     3679
     3680
     3681
     3682
    37203683}
    37213684.bbpress #bbpress-forums #bbp-user-wrapper .bbp-user-section {
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/style.css

    r13474 r13476  
    1 @charset "UTF-8";
    21/**
    32 * Theme Name: WordPress.org Support 2024
     
    10321031
    10331032/* Move the Block Editor toolbar below the Header & Also Viewing z-index bar */
     1033
     1034
     1035
     1036
    10341037.iso-editor.has-fixed-toolbar .interface-interface-skeleton__header {
    10351038    z-index: var(--wp--custom--z-index--iso-editor);
     
    18991902input[type=radio],
    19001903input[type=checkbox] {
    1901     background-color: #fff;
    1902     border: 1px solid var(--wp--preset--color--light-grey-1);
     1904    border: 1px solid var(--wp--custom--form--border--color);
    19031905    box-shadow: var(--wp--custom--form--color--box-shadow);
    1904     color: var(--wp--custom--form--color--text);
    1905     transition: 0.05s border-color ease-in-out;
    1906     -webkit-appearance: none;
     1906    border-radius: var(--wp--custom--form--border--radius);
     1907    clear: none;
     1908    cursor: pointer;
     1909    display: inline-block;
     1910    width: 20px;
     1911    height: 20px;
     1912    line-height: 0;
     1913    padding: 0 !important;
     1914    text-align: center;
     1915    vertical-align: middle;
     1916    margin: 0;
    19071917}
    19081918input[type=radio]:focus,
    19091919input[type=checkbox]:focus {
     1920
    19101921    color: var(--wp--custom--form--color--text);
    19111922}
    1912 
    1913 input[type=checkbox]:focus,
    1914 input[type=radio]:focus {
    1915     border-color: #5b9dd9;
    1916     box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);
    1917 }
    1918 
    1919 input[type=checkbox],
    1920 input[type=radio] {
    1921     background: #fff;
    1922     border: 1px solid #b4b9be;
    1923     box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    1924     clear: none;
    1925     color: #555;
    1926     cursor: pointer;
    1927     display: inline-block;
    1928     height: 25px;
    1929     line-height: 0;
    1930     margin: -4px 4px 0 0;
    1931     min-width: 16px;
    1932     padding: 0 !important;
    1933     text-align: center;
    1934     transition: 0.05s border-color ease-in-out;
    1935     vertical-align: middle;
    1936     width: 25px;
    1937 }
    1938 
    1939 input[type=checkbox] {
    1940     padding: 10px;
     1923input[type=radio]:focus-visible,
     1924input[type=checkbox]:focus-visible {
     1925    outline: -webkit-focus-ring-color auto 1px;
    19411926}
    19421927
    19431928input[type=radio] {
    19441929    border-radius: 50%;
    1945     line-height: 10px;
    1946     margin-right: 4px;
    1947 }
    1948 
    1949 input[type=checkbox]:checked::before,
    1950 input[type=radio]:checked::before {
    1951     display: inline-block;
    1952     float: left;
    1953     font: 400 21px/1 dashicons;
    1954     vertical-align: middle;
    1955     width: 16px;
    1956     -moz-osx-font-smoothing: grayscale;
    1957     -webkit-font-smoothing: antialiased;
    1958     speak: none;
    1959 }
    1960 
    1961 input[type=checkbox]:checked::before {
    1962     color: var(--wp--preset--color--blueberry-1);
    1963     content: "\f147";
    1964     font: 400 30px/1 dashicons;
    1965     margin: -3px -5px;
    1966 }
    1967 
    1968 input[type=radio]:checked::before {
    1969     background-color: var(--wp--preset--color--blueberry-1);
    1970     border-radius: 50px;
    1971     content: "•";
    1972     font-size: 24px;
    1973     height: 9px;
    1974     line-height: 16px;
    1975     margin: 7px;
    1976     text-indent: -9999px;
    1977     vertical-align: middle;
    1978     width: 9px;
     1930}
     1931input[type=radio] + label {
     1932    margin-left: 0.5em;
    19791933}
    19801934
     
    19921946    box-shadow: var(--wp--custom--form--color--box-shadow);
    19931947    font-family: inherit;
    1994     height: 40px;
    1995 }
    1996 select:focus {
    1997     border-color: var(--custom--form--color--border);
     1948    min-height: 40px;
    19981949}
    19991950
     
    20281979textarea:disabled,
    20291980textarea.disabled {
    2030     background: rgba(255, 255, 255, 0.5);
    2031     border-color: rgba(222, 222, 222, 0.75);
    2032     box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.04);
    2033     color: rgba(51, 51, 51, 0.5);
     1981    background: );
     1982    border-color: );
     1983    box-shadow: ;
     1984    color: );
    20341985}
    20351986
     
    20582009}
    20592010
    2060 /* =Media Queries
    2061 -------------------------------------------------------------- */
    2062 @media screen and (min-width: 48em) {
    2063     input[type=checkbox] {
    2064         padding: 0;
    2065     }
    2066     input[type=checkbox]:checked::before {
    2067         font: 400 21px/1 dashicons;
    2068         margin: -3px 0 0 -4px;
    2069     }
    2070     input[type=radio],
    2071     input[type=checkbox] {
    2072         height: 16px;
    2073         width: 16px;
    2074     }
    2075     input[type=radio]:checked::before {
    2076         width: 6px;
    2077         height: 6px;
    2078         margin: 4px;
    2079     }
    2080 }
    20812011/*--------------------------------------------------------------
    20822012# Navigation
     
    32753205# Buttons
    32763206--------------------------------------------------------------*/
    3277 #bbpress-forums fieldset.bbp-form button {
    3278     padding: 0 0.8rem;
    3279     font-size: 0.8rem;
    3280 }
    32813207#bbpress-forums .bbp-reply-form {
    32823208    clear: both;
     
    32873213    margin-top: 0;
    32883214}
    3289 #bbpress-forums fieldset.bbp-form select,
    3290 #bbpress-forums fieldset.bbp-form input[type=text] {
    3291     min-height: 32px;
    3292     height: 32px;
    3293 }
     3215#bbpress-forums #bbp-your-profile fieldset.submit button,
    32943216#bbpress-forums .bbp-submit-wrapper {
    3295     margin-top: -35px;
    3296 }
    3297 @media (max-width: 767px) {
    3298     #bbpress-forums .bbp-submit-wrapper {
    3299         margin-top: 0;
    3300     }
     3217    float: none;
    33013218}
    33023219#bbpress-forums .wporg-bbp-term-subscription {
     
    33263243# Forms
    33273244--------------------------------------------------------------*/
    3328 #bbpress-forums fieldset.bbp-form {
    3329     margin: 0;
    3330     border: 0;
    3331 }
    3332 #bbpress-forums fieldset.bbp-form legend {
    3333     font-weight: 400;
    3334     font-size: 1.25rem;
    3335 }
    3336 #bbpress-forums fieldset.bbp-form label,
    3337 #bbpress-forums fieldset.bbp-form p em {
    3338     font-size: 0.8rem;
    3339 }
    3340 #bbpress-forums fieldset.bbp-form em#site_url_description {
    3341     display: inline-block;
    3342     margin-bottom: 12px;
    3343 }
    3344 #bbpress-forums fieldset.bbp-form input[type=checkbox],
    3345 #bbpress-forums fieldset.bbp-form input#site_url,
    3346 #bbpress-forums fieldset.bbp-form input#bbp_topic_tags {
    3347     margin-bottom: 0;
    3348 }
    3349 #bbpress-forums fieldset.bbp-form div.rate {
    3350     margin-bottom: 8px;
    3351 }
    33523245#bbpress-forums fieldset.log-edit {
    33533246    margin: 12px 0 8px 0;
     
    33553248#bbpress-forums fieldset.log-edit legend {
    33563249    padding: 0;
    3357     font-size: 0.8rem;
     3250}
     3251#bbpress-forums #bbp-your-profile fieldset {
     3252    padding: 0;
     3253    margin: 0 0 var(--wp--style--block-gap);
     3254    border: none;
     3255}
     3256#bbpress-forums fieldset.bbp-form select,
     3257#bbpress-forums fieldset.bbp-form input[type=text],
     3258#bbpress-forums #bbp-your-profile fieldset input,
     3259#bbpress-forums #bbp-your-profile fieldset textarea,
     3260#bbpress-forums #bbp-your-profile fieldset select {
     3261    height: unset;
     3262    border-color: var(--wp--custom--form--border--color);
     3263    padding: var(--wp--custom--form--padding--block) var(--wp--custom--form--padding--inline);
     3264    background-color: var(--wp--custom--form--color--background);
     3265    border-radius: var(--wp--custom--form--border--radius);
     3266    min-height: 40px;
     3267}
     3268#bbpress-forums fieldset.bbp-form select:focus,
     3269#bbpress-forums fieldset.bbp-form input[type=text]:focus,
     3270#bbpress-forums #bbp-your-profile fieldset input:focus,
     3271#bbpress-forums #bbp-your-profile fieldset textarea:focus,
     3272#bbpress-forums #bbp-your-profile fieldset select:focus {
     3273    box-shadow: none;
     3274}
     3275#bbpress-forums fieldset.bbp-form select:focus-visible,
     3276#bbpress-forums fieldset.bbp-form input[type=text]:focus-visible,
     3277#bbpress-forums #bbp-your-profile fieldset input:focus-visible,
     3278#bbpress-forums #bbp-your-profile fieldset textarea:focus-visible,
     3279#bbpress-forums #bbp-your-profile fieldset select:focus-visible {
     3280    box-shadow: none;
     3281    outline: -webkit-focus-ring-color auto 1px;
     3282}
     3283#bbpress-forums fieldset.bbp-form select:disabled,
     3284#bbpress-forums fieldset.bbp-form input[type=text]:disabled,
     3285#bbpress-forums #bbp-your-profile fieldset input:disabled,
     3286#bbpress-forums #bbp-your-profile fieldset textarea:disabled,
     3287#bbpress-forums #bbp-your-profile fieldset select:disabled {
     3288    border-color: var(--wp--custom--form--disabled--border-color);
     3289}
     3290#bbpress-forums fieldset.bbp-form input[type=checkbox],
     3291#bbpress-forums fieldset.bbp-form input[type=radio] {
     3292    margin: 0;
     3293}
     3294#bbpress-forums fieldset.bbp-form input[type=checkbox] + label,
     3295#bbpress-forums fieldset.bbp-form input[type=radio] + label {
     3296    margin-left: 0.5em;
     3297}
     3298#bbpress-forums fieldset.bbp-form input[type=checkbox]:focus,
     3299#bbpress-forums fieldset.bbp-form input[type=radio]:focus {
     3300    box-shadow: none;
     3301}
     3302#bbpress-forums fieldset.bbp-form input[type=checkbox]:focus-visible,
     3303#bbpress-forums fieldset.bbp-form input[type=radio]:focus-visible {
     3304    box-shadow: none;
     3305    outline: -webkit-focus-ring-color auto 1px;
     3306}
     3307#bbpress-forums fieldset.bbp-form label input[type=checkbox],
     3308#bbpress-forums fieldset.bbp-form label input[type=radio] {
     3309    margin-right: 0.5em;
    33583310}
    33593311#bbpress-forums #bbp-user-body div.bbp-search-form form > div {
     
    34033355.reply-edit #bbpress-forums .bbp-reply-form legend {
    34043356    display: block;
     3357
     3358
     3359
     3360
     3361
     3362
    34053363}
    34063364
     
    37183676.bbpress #bbpress-forums #bbp-user-wrapper {
    37193677    font-size: var(--wp--preset--font-size--small);
     3678
     3679
     3680
     3681
     3682
    37203683}
    37213684.bbpress #bbpress-forums #bbp-user-wrapper .bbp-user-section {
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/style.css.map

    r13474 r13476  
    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/blocks/_search.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;;;ACFD;CACC;;;AV4CD;AAAA;AAAA;AC7CA;CACC;;;AUCD;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;;;AZtBJ;CACC;;;AaCD;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;;;AdPD;CACC;;;AeCD;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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AsB5DA;AACA;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;;;AtBmCD;AAAA;AAAA;AuBjEA;CACC;CACA;CACA;;;AAGD;CACC;CACA;CACA;;;AAGD;CACC;CCLA;CACA;CACA;;;AxB4DD;AAAA;AAAA;AyBtEA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;CDeC;CACA;CACA;;;ACDD;AAAA;AAAA;AAAA;AAAA;AAAA;CDMC;;;AxBqDD;AAAA;AAAA;A0BzEA;AAAA;CAEC;;;AAGD;CACC;CACA;;;AAGD;CACC;;;A1BmED;AAAA;AAAA;AChFA;CACC;;;A0BCD;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;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;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","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/blocks/_search.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":"CJ;AAAA;AAAA;A+B/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;;;A/BSF;AAAA;AAAA;AiCpGA;AAAA;AAAA;AAGA;AAAA;CAEC;;;AAGD;AAAA;AAEA;CACC;;;AjC8FD;AAAA;AAAA;AkCzGA;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"}
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-support-2024/theme.json

    r13470 r13476  
    4242                    "inline": "12px"
    4343                },
    44                 "lineHeight": "var(--wp--custom--body--small--typography--line-height)"
     44                "lineHeight": "var(--wp--custom--body--small--typography--line-height)",
     45                "disabled": {
     46                    "borderColor": "var(--wp--preset--color--light-grey-1)",
     47                    "color": "var(--wp--preset--color--charcoal-5)"
     48                }
    4549            },
    4650            "heading": {
Note: See TracChangeset for help on using the changeset viewer.