Make WordPress Core

Changeset 57070

Timestamp:
11/06/2023 03:22:41 PM (9 months ago)
Author:
hellofromTonya
Message:

Twenty Twenty-Four: Bugfixes and refinement for 6.4 RC4.

This update includes the following changes:

Follow up to [57036], [56999], [56951], [56813], [56764], [56716].

Reviewed by desrosj.
Merges [57067] to the 6.4 branch.

Props onemaggie, richtabor, luminuu, huzaifaalmesbah, sabernhardt, poena, rajinsharwar.
Fixes #59812.

Location:
branches/6.4
Files:
15 edited

Legend:

Unmodified
Added
Removed
  • branches/6.4

  • branches/6.4/src/wp-content/themes/twentytwentyfour/functions.php

    r57037 r57070  
    2121     */
    2222    function twentytwentyfour_block_styles() {
     23
     24
     25
     26
     27
     28
     29
     30
     31
     32
     33
     34
     35
     36
     37
     38
     39
     40
     41
     42
     43
     44
     45
     46
     47
     48
     49
     50
     51
     52
     53
     54
     55
     56
     57
     58
     59
     60
     61
     62
     63
     64
     65
     66
     67
     68
     69
     70
     71
     72
     73
     74
     75
     76
     77
     78
     79
     80
     81
     82
     83
     84
     85
     86
     87
     88
     89
     90
     91
     92
     93
     94
     95
     96
     97
     98
     99
     100
     101
     102
     103
     104
     105
     106
     107
     108
     109
     110
     111
     112
     113
     114
     115
     116
     117
     118
     119
     120
     121
     122
     123
     124
     125
     126
     127
     128
     129
     130
     131
     132
     133
     134
     135
     136
     137
     138
     139
     140
     141
     142
     143
     144
     145
     146
     147
     148
     149
     150
     151
     152
     153
     154
     155
     156
     157
     158
     159
     160
    23161        /**
    24162         * The wp_enqueue_block_style() function allows us to enqueue a stylesheet
     
    38176            )
    39177        );
    40 
    41         register_block_style(
    42             'core/details',
    43             array(
    44                 'name'         => 'arrow-icon-details',
    45                 'label'        => __( 'Arrow icon', 'twentytwentyfour' ),
    46                 /*
    47                  * Styles for the custom Arrow icon style of the Details block
    48                  */
    49                 'inline_style' => '
    50                 .is-style-arrow-icon-details {
    51                     padding-top: var(--wp--preset--spacing--10);
    52                     padding-bottom: var(--wp--preset--spacing--10);
    53                     border-bottom: 1px solid var(--wp--preset--color--contrast-2, currentColor);
    54                 }
    55 
    56                 .is-style-arrow-icon-details summary {
    57                     list-style-type: "\2193\00a0\00a0\00a0";
    58                 }
    59 
    60                 .is-style-arrow-icon-details[open]>summary {
    61                     list-style-type: "\2192\00a0\00a0\00a0";
    62                 }',
    63             )
    64         );
    65         register_block_style(
    66             'core/post-terms',
    67             array(
    68                 'name'         => 'pill',
    69                 'label'        => __( 'Pill', 'twentytwentyfour' ),
    70                 /*
    71                  * Styles variation for post terms
    72                  * https://github.com/WordPress/gutenberg/issues/24956
    73                  */
    74                 'inline_style' => '
    75                 .is-style-pill a,
    76                 .is-style-pill span:not([class], [data-rich-text-placeholder]) {
    77                     display: inline-block;
    78                     background-color: var(--wp--preset--color--base-2);
    79                     padding: 0.375rem 0.875rem;
    80                     border-radius: var(--wp--preset--spacing--20);
    81                 }
    82 
    83                 .is-style-pill a:hover {
    84                     background-color: var(--wp--preset--color--contrast-3);
    85                 }',
    86             )
    87         );
    88         register_block_style(
    89             'core/list',
    90             array(
    91                 'name'         => 'checkmark-list',
    92                 'label'        => __( 'Checkmark', 'twentytwentyfour' ),
    93                 /*
    94                  * Styles for the custom checkmark list block style
    95                  * https://github.com/WordPress/gutenberg/issues/51480
    96                  */
    97                 'inline_style' => '
    98                 ul.is-style-checkmark-list {
    99                     list-style-type: "\2713";
    100                 }
    101 
    102                 ul.is-style-checkmark-list li {
    103                     padding-inline-start: 1ch;
    104                 }',
    105             )
    106         );
    107��        register_block_style(
    108             'core/navigation-link',
    109             array(
    110                 'name'         => 'arrow-link',
    111                 'label'        => __( 'With arrow', 'twentytwentyfour' ),
    112                 /*
    113                  * Styles for the custom arrow nav link block style
    114                  */
    115                 'inline_style' => '
    116                 .is-style-arrow-link .wp-block-navigation-item__label:after {
    117                     content: "\2197";
    118                     padding-inline-start: 0.25rem;
    119                     vertical-align: middle;
    120                     text-decoration: none;
    121                     display: inline-block;
    122                 }',
    123             )
    124         );
    125         register_block_style(
    126             'core/heading',
    127             array(
    128                 'name'         => 'asterisk',
    129                 'label'        => __( 'With asterisk', 'twentytwentyfour' ),
    130                 'inline_style' => "
    131                 .is-style-asterisk:before {
    132                     content: '';
    133                     width: 1.5rem;
    134                     height: 3rem;
    135                     background: var(--wp--preset--color--contrast-2, currentColor);
    136                     clip-path: path('M11.93.684v8.039l5.633-5.633 1.216 1.23-5.66 5.66h8.04v1.737H13.2l5.701 5.701-1.23 1.23-5.742-5.742V21h-1.737v-8.094l-5.77 5.77-1.23-1.217 5.743-5.742H.842V9.98h8.162l-5.701-5.7 1.23-1.231 5.66 5.66V.684h1.737Z');
    137                     display: block;
    138                 }
    139 
    140                 /* Hide the asterisk if the heading has no content, to avoid using empty headings to display the asterisk only, which is an A11Y issue */
    141                 .is-style-asterisk:empty:before {
    142                     content: none;
    143                 }
    144 
    145                 .is-style-asterisk:-moz-only-whitespace:before {
    146                     content: none;
    147                 }
    148 
    149                 .is-style-asterisk.has-text-align-center:before {
    150                     margin: 0 auto;
    151                 }
    152 
    153                 .is-style-asterisk.has-text-align-right:before {
    154                     margin-left: auto;
    155                 }
    156 
    157                 .rtl .is-style-asterisk.has-text-align-left:before {
    158                     margin-right: auto;
    159                 }",
    160             )
    161         );
    162178    }
    163179endif;
    164180
    165 add_action( 'init', 'twentytwentyfour_block_styles' );
     181add_action( 'init', 'twentytwentyfour_block_styles' );
    166182
    167183/**
  • branches/6.4/src/wp-content/themes/twentytwentyfour/patterns/cta-pricing.php

    r56951 r57070  
    3030        <!-- wp:columns {"align":"wide","style":{"spacing":{"blockGap":{"top":"var:preset|spacing|50","left":"var:preset|spacing|20"}}}} -->
    3131        <div class="wp-block-columns alignwide">
    32             <!-- wp:column {"style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30","top":"var:preset|spacing|30","bottom":"var:preset|spacing|10"}},"border":{"top":{"color":"var:preset|color|base-3","width":"1px"}}}} -->
    33             <div class="wp-block-column" style="border-top-color:var(--wp--preset--color--base-3);border-top-width:1px;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--30)">
     32            <!-- wp:column {"style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30","top":"var:preset|spacing|30","bottom":"var:preset|spacing|10"}},"border":{"top":{"color":"var:preset|color|-3","width":"1px"}}}} -->
     33            <div class="wp-block-column" style="border-top-color:var(--wp--preset--color---3);border-top-width:1px;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--30)">
    3434                <!-- wp:heading {"textAlign":"center","level":4,"style":{"spacing":{"padding":{"top":"1px"}}},"fontSize":"medium"} -->
    3535                <h4 class="wp-block-heading has-text-align-center has-medium-font-size" style="padding-top:1px">
     
    5353                    <!-- /wp:paragraph -->
    5454
    55                     <!-- wp:separator {"backgroundColor":"base-3"} -->
    56                     <hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
     55                    <!-- wp:separator {"backgroundColor":"-3"} -->
     56                    <hr class="wp-block-separator has-text-color has--3-background-color has-background is-style-wide" />
    5757                    <!-- /wp:separator -->
    5858
     
    6363                    <!-- /wp:paragraph -->
    6464
    65                     <!-- wp:separator {"backgroundColor":"base-3"} -->
    66                     <hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
     65                    <!-- wp:separator {"backgroundColor":"-3"} -->
     66                    <hr class="wp-block-separator has-text-color has--3-background-color has-background is-style-wide" />
    6767                    <!-- /wp:separator -->
    6868
     
    115115                    <!-- /wp:paragraph -->
    116116
    117                     <!-- wp:separator {"backgroundColor":"base-3"} -->
    118                     <hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
     117                    <!-- wp:separator {"backgroundColor":"-3"} -->
     118                    <hr class="wp-block-separator has-text-color has--3-background-color has-background is-style-wide" />
    119119                    <!-- /wp:separator -->
    120120
     
    123123                    <!-- /wp:paragraph -->
    124124
    125                     <!-- wp:separator {"backgroundColor":"base-3"} -->
    126                     <hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
     125                    <!-- wp:separator {"backgroundColor":"-3"} -->
     126                    <hr class="wp-block-separator has-text-color has--3-background-color has-background is-style-wide" />
    127127                    <!-- /wp:separator -->
    128128
     
    150150            <!-- /wp:column -->
    151151
    152             <!-- wp:column {"style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30","top":"var:preset|spacing|30","bottom":"var:preset|spacing|10"}},"border":{"top":{"color":"var:preset|color|base-3","width":"1px"}}}} -->
    153             <div class="wp-block-column" style="border-top-color:var(--wp--preset--color--base-3);border-top-width:1px;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--30)">
     152            <!-- wp:column {"style":{"spacing":{"padding":{"right":"var:preset|spacing|30","left":"var:preset|spacing|30","top":"var:preset|spacing|30","bottom":"var:preset|spacing|10"}},"border":{"top":{"color":"var:preset|color|-3","width":"1px"}}}} -->
     153            <div class="wp-block-column" style="border-top-color:var(--wp--preset--color---3);border-top-width:1px;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--30)">
    154154                <!-- wp:heading {"textAlign":"center","level":4,"style":{"spacing":{"padding":{"top":"1px"}}},"fontSize":"medium"} -->
    155155                <h4 class="wp-block-heading has-text-align-center has-medium-font-size" style="padding-top:1px">
     
    173173                    <!-- /wp:paragraph -->
    174174
    175                     <!-- wp:separator {"backgroundColor":"base-3"} -->
    176                     <hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
     175                    <!-- wp:separator {"backgroundColor":"-3"} -->
     176                    <hr class="wp-block-separator has-text-color has--3-background-color has-background is-style-wide" />
    177177                    <!-- /wp:separator -->
    178178
     
    181181                    <!-- /wp:paragraph -->
    182182
    183                     <!-- wp:separator {"backgroundColor":"base-3"} -->
    184                     <hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
     183                    <!-- wp:separator {"backgroundColor":"-3"} -->
     184                    <hr class="wp-block-separator has-text-color has--3-background-color has-background is-style-wide" />
    185185                    <!-- /wp:separator -->
    186186
  • branches/6.4/src/wp-content/themes/twentytwentyfour/patterns/hidden-sidebar.php

    r56951 r57070  
    2424    <!-- /wp:group -->
    2525
    26     <!-- wp:separator {"backgroundColor":"base-3","className":"is-style-wide"} -->
    27     <hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
     26    <!-- wp:separator {"backgroundColor":"","className":"is-style-wide"} -->
     27    <hr class="wp-block-separator has-text-color has-/>
    2828    <!-- /wp:separator -->
    2929
     
    3838    <!-- /wp:group -->
    3939
    40     <!-- wp:separator {"backgroundColor":"base-3","className":"is-style-wide"} -->
    41     <hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
     40    <!-- wp:separator {"backgroundColor":"","className":"is-style-wide"} -->
     41    <hr class="wp-block-separator has-text-color has-/>
    4242    <!-- /wp:separator -->
    4343
     
    6363    <!-- /wp:group -->
    6464
    65     <!-- wp:separator {"backgroundColor":"base-3","className":"is-style-wide"} -->
    66     <hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" />
     65    <!-- wp:separator {"backgroundColor":"","className":"is-style-wide"} -->
     66    <hr class="wp-block-separator has-text-color has-/>
    6767    <!-- /wp:separator -->
    6868
  • branches/6.4/src/wp-content/themes/twentytwentyfour/patterns/page-newsletter-landing.php

    r56951 r57070  
    1111?>
    1212
    13 <!-- wp:group {"align":"full","style":{"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50","top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"},"margin":{"top":"0","bottom":"0"}},"dimensions":{"minHeight":"100vw"}},"backgroundColor":"accent-3","layout":{"type":"flex","orientation":"vertical","justifyContent":"center","verticalAlignment":"center"}} -->
    14 <div class="wp-block-group alignfull has-accent-3-background-color has-background" style="min-height:100vw;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)">
     13<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50","top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"},"margin":{"top":"0","bottom":"0"}},"dimensions":{"minHeight":"100v"}},"backgroundColor":"accent-3","layout":{"type":"flex","orientation":"vertical","justifyContent":"center","verticalAlignment":"center"}} -->
     14<div class="wp-block-group alignfull has-accent-3-background-color has-background" style="min-height:100v;margin-top:0;margin-bottom:0;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)">
    1515    <!-- wp:group {"layout":{"type":"constrained"}} -->
    1616    <div class="wp-block-group">
  • branches/6.4/src/wp-content/themes/twentytwentyfour/patterns/text-faq.php

    r57005 r57070  
    1717    <!-- wp:group {"align":"wide","layout":{"type":"default"}} -->
    1818    <div class="wp-block-group alignwide">
    19         <!-- wp:separator {"backgroundColor":"contrast-2","className":"is-style-wide"} -->
    20         <hr class="wp-block-separator has-text-color has-contrast-2-color has-alpha-channel-opacity has-contrast-2-background-color has-background is-style-wide"/>
     19        <!-- wp:separator {"backgroundColor":"","className":"is-style-wide"} -->
     20        <hr class="wp-block-separator has-text-color has--background-color has-background is-style-wide"/>
    2121        <!-- /wp:separator -->
    2222
    23         <!-- wp:details {"style":{"spacing":{"margin":{"top":"0"}}},"className":"is-style-arrow-icon-details","fontSize":"medium"} -->
    24         <details class="wp-block-details is-style-arrow-icon-details has-medium-font-size" style="margin-top:0">
     23        <!-- wp:details {"style":{"spacing":{"margin":{"top":"0"}}},"className":"is-style-arrow-icon-details","fontSize":"medium"} -->
     24        <details class="wp-block-details is-style-arrow-icon-details has-medium-font-size" style="margin-top:0">
    2525            <summary><?php echo esc_html_x( 'What is your process working in smaller projects?', 'Question on the details block', 'twentytwentyfour' ); ?></summary>
    2626            <!-- wp:paragraph {"placeholder":"Type / to add a hidden block","style":{"elements":{"link":{"color":{"text":"var:preset|color|contrast-1"}}}},"textColor":"contrast-1"} -->
     
    3030        <!-- /wp:details -->
    3131
    32         <!-- wp:details {"style":{"spacing":{"margin":{"top":"0"}}},"className":"is-style-arrow-icon-details","fontSize":"medium"} -->
    33         <details class="wp-block-details is-style-arrow-icon-details has-medium-font-size" style="margin-top:0">
     32        <!-- wp:details {"style":{"spacing":{"margin":{"top":"0"}}},"className":"is-style-arrow-icon-details","fontSize":"medium"} -->
     33        <details class="wp-block-details is-style-arrow-icon-details has-medium-font-size" style="margin-top:0">
    3434            <summary><?php echo esc_html_x( 'Who is behind Études?', 'Question on the details block', 'twentytwentyfour' ); ?></summary>
    3535            <!-- wp:paragraph {"placeholder":"Type / to add a hidden block","style":{"elements":{"link":{"color":{"text":"var:preset|color|contrast-1"}}}},"textColor":"contrast-1"} -->
     
    3939        <!-- /wp:details -->
    4040
    41         <!-- wp:details {"style":{"spacing":{"margin":{"top":"0"}}},"className":"is-style-arrow-icon-details","fontSize":"medium"} -->
    42         <details class="wp-block-details is-style-arrow-icon-details has-medium-font-size" style="margin-top:0">
     41        <!-- wp:details {"style":{"spacing":{"margin":{"top":"0"}}},"className":"is-style-arrow-icon-details","fontSize":"medium"} -->
     42        <details class="wp-block-details is-style-arrow-icon-details has-medium-font-size" style="margin-top:0">
    4343            <summary><?php echo esc_html_x( 'I\'d like to get to meet fellow architects, how can I do that?', 'Question on the details block', 'twentytwentyfour' ); ?></summary>
    4444            <!-- wp:paragraph {"placeholder":"Type / to add a hidden block","style":{"elements":{"link":{"color":{"text":"var:preset|color|contrast-1"}}}},"textColor":"contrast-1"} -->
     
    4848        <!-- /wp:details -->
    4949
    50         <!-- wp:details {"style":{"spacing":{"margin":{"top":"0"}}},"className":"is-style-arrow-icon-details","fontSize":"medium"} -->
    51         <details class="wp-block-details is-style-arrow-icon-details has-medium-font-size" style="margin-top:0">
     50        <!-- wp:details {"style":{"spacing":{"margin":{"top":"0"}}},"className":"is-style-arrow-icon-details","fontSize":"medium"} -->
     51        <details class="wp-block-details is-style-arrow-icon-details has-medium-font-size" style="margin-top:0">
    5252            <summary><?php echo esc_html_x( 'Can I apply to be a part of the team or work as a contractor?', 'Question on the details block', 'twentytwentyfour' ); ?></summary>
    5353            <!-- wp:paragraph {"placeholder":"Type / to add a hidden block","style":{"elements":{"link":{"color":{"text":"var:preset|color|contrast-1"}}}},"textColor":"contrast-1"} -->
  • branches/6.4/src/wp-content/themes/twentytwentyfour/readme.txt

    r57005 r57070  
    1717* Released: November 7, 2023
    1818
    19 https://wordpress.org/support/article/twenty-twenty-four-changelog#Version_1.0
     19https://wordpress.org/#Version_1.0
    2020
    2121== Copyright ==
  • branches/6.4/src/wp-content/themes/twentytwentyfour/styles/ember.json

    r56951 r57070  
    9797                    "name": "Base / Two",
    9898                    "slug": "base-2"
    99                 },
    100                 {
    101                     "color": "#FF3C0025",
    102                     "name": "Base / Three",
    103                     "slug": "base-3"
    10499                }
    105100            ]
  • branches/6.4/src/wp-content/themes/twentytwentyfour/styles/fossil.json

    r56951 r57070  
    7777                    "name": "Base / Two",
    7878                    "slug": "base-2"
    79                 },
    80                 {
    81                     "color": "#1A151425",
    82                     "name": "Base / Three",
    83                     "slug": "base-3"
    8479                },
    8580                {
  • branches/6.4/src/wp-content/themes/twentytwentyfour/styles/ice.json

    r56951 r57070  
    7777                    "name": "Base / Two",
    7878                    "slug": "base-2"
    79                 },
    80                 {
    81                     "color": "#ecf1f4",
    82                     "name": "Base / Three",
    83                     "slug": "base-3"
    8479                },
    8580                {
  • branches/6.4/src/wp-content/themes/twentytwentyfour/styles/maelstrom.json

    r56951 r57070  
    1515                    "name": "Base / Two",
    1616                    "slug": "base-2"
    17                 },
    18                 {
    19                     "color": "#FFFFFF25",
    20                     "name": "Base / Three",
    21                     "slug": "base-3"
    2217                },
    2318                {
  • branches/6.4/src/wp-content/themes/twentytwentyfour/styles/mint.json

    r56951 r57070  
    1515                    "name": "Base / Two",
    1616                    "slug": "base-2"
    17                 },
    18                 {
    19                     "color": "#00000025",
    20                     "name": "Base / Three",
    21                     "slug": "base-3"
    2217                },
    2318                {
  • branches/6.4/src/wp-content/themes/twentytwentyfour/styles/onyx.json

    r56716 r57070  
    121121                },
    122122                {
    123                     "color": "#ffffff26",
    124                     "name": "Base / Three",
    125                     "slug": "base-3"
    126                 },
    127                 {
    128123                    "color": "#f9f9f9",
    129124                    "name": "Contrast",
  • branches/6.4/src/wp-content/themes/twentytwentyfour/templates/single.html

    r56951 r57070  
    3232            <!-- /wp:spacer -->
    3333
    34             <!-- wp:separator {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|40"}}},"backgroundColor":"base-3","className":"is-style-wide"} -->
    35             <hr class="wp-block-separator has-text-color has-base-3-color has-alpha-channel-opacity has-base-3-background-color has-background is-style-wide" style="margin-bottom:var(--wp--preset--spacing--40)"/>
     34            <!-- wp:separator {"style":{"spacing":{"margin":{"bottom":"var:preset|spacing|40"}}},"backgroundColor":"-3","className":"is-style-wide"} -->
     35            <hr class="wp-block-separator has-text-color has--3-background-color has-background is-style-wide" style="margin-bottom:var(--wp--preset--spacing--40)"/>
    3636            <!-- /wp:separator -->
    3737
  • branches/6.4/src/wp-content/themes/twentytwentyfour/theme.json

    r56951 r57070  
    113113                },
    114114                {
    115                     "color": "#00000025",
    116                     "name": "Base / Three",
    117                     "slug": "base-3"
    118                 },
    119                 {
    120115                    "color": "#111111",
    121116                    "name": "Contrast",
     
    786781            "text": "var(--wp--preset--color--contrast)"
    787782        },
    788         "css": "a{text-decoration-thickness:0.0625em;text-underline-offset: 0.15em}",
    789783        "elements": {
    790784            "button": {
Note: See TracChangeset for help on using the changeset viewer.