Make WordPress Core


Ignore:
Timestamp:
10/04/2022 01:10:12 AM (2 years ago)
Author:
desrosj
Message:

Twenty Twenty-Three: Bug fixes and improvements for beta 3.

This brings over the latest bug fixes and improvements ahead of WordPress 6.1 beta 3.

For a full list of changes being included, see the twentytwentythree repository on GitHub: https://github.com/WordPress/twentytwentythree/compare/ac96e8d545a69fc6515312d548b036f267ec7104...ca662828b7e3ae12e03f35903a83cf2cfaa4ce4f.

Props mikachan, poena, madhudollu, beafialho, colorful-tones, scruffian, tahmidulkarim, joen, taskotr, zoonini, mayuge, ndiego, collet.
See #56383.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentytwentythree/styles/sherbet.json

    r54235 r54372  
    88                {
    99                    "colors": [
    10                         "rgb(81, 82, 213)",
    11                         "rgb(121, 238, 196)",
    12                         "rgb(236, 249, 87)",
    13                         "rgb(247, 69, 204)"
     10                        "#FF99FF",
     11                        "#FFFF99",
     12                        "#99FFFF"
    1413                    ],
    1514                    "name": "Default filter",
     
    2221                    "name": "Primary to Secondary to Tertiary",
    2322                    "slug": "primary-secondary-tertiary"
     23                },
     24                {
     25                    "gradient": "linear-gradient(135deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--secondary) 50%, var(--wp--preset--color--tertiary) 100%) fixed",
     26                    "name": "Primary to Secondary to Tertiary Fixed",
     27                    "slug": "primary-secondary-tertiary-fixed"
     28                },
     29                {
     30                    "gradient": "linear-gradient(135deg, var(--wp--preset--color--tertiary) 0%, var(--wp--preset--color--secondary) 50%, var(--wp--preset--color--primary) 100%) fixed",
     31                    "name": "Tertiary to Secondary to Primary Fixed",
     32                    "slug": "tertiary-secondary-primary-fixed"
    2433                }
    2534            ],
     
    5564            "fontSizes": [
    5665                {
     66                    "fluid": false,
    5767                    "size": "0.75rem",
    5868                    "slug": "x-small"
     
    6070                {
    6171                    "fluid": {
    62                         "min": "0.875rem"
     72                        "min": "0.875rem",
     73                        "max": "1rem"
    6374                    },
    6475                    "size": "1rem",
     
    6778                {
    6879                    "fluid": {
    69                         "min": "1rem"
     80                        "min": "1rem",
     81                        "max": "1.125rem"
    7082                    },
    7183                    "size": "1.125rem",
     
    7385                },
    7486                {
     87                    "fluid": {
     88                        "min": "1.5rem",
     89                        "max": "1.75rem"
     90                    },
    7591                    "size": "1.75rem",
    7692                    "slug": "large"
    7793                },
    7894                {
     95                    "fluid": {
     96                        "min": "2rem",
     97                        "max": "2.25rem"
     98                    },
    7999                    "size": "2.25rem",
    80100                    "slug": "x-large"
    81101                },
    82102                {
     103                    "fluid": {
     104                        "min": "2.5rem",
     105                        "max": "2.75rem"
     106                    },
    83107                    "size": "2.75rem",
    84108                    "slug": "xx-large"
     
    89113    "styles": {
    90114        "blocks": {
    91             "core/heading": {
    92                 "typography": {
    93                     "fontWeight": "500"
     115            "core/comments": {
     116                "elements": {
     117                    "link": {
     118                        ":active": {
     119                            "color": {
     120                                "text": "var(--wp--preset--color--contrast)"
     121                            }
     122                        }
     123                    }
     124                }
     125            },
     126            "core/comment-author-name": {
     127                "typography": {
     128                    "fontSize": "var(--wp--preset--font-size--medium)",
     129                    "textTransform": "initial"
     130                }
     131            },
     132            "core/comment-content": {
     133                "typography": {
     134                    "fontSize": "var(--wp--preset--font-size--medium)",
     135                    "textTransform": "initial"
    94136                }
    95137            },
    96138            "core/navigation": {
    97139                "typography": {
    98                     "fontSize": "var(--wp--preset--font-size--x-small)",
     140                    "fontSize": "var(--wp--preset--font-size--small)",
    99141                    "fontWeight": "500",
    100142                    "textTransform": "uppercase"
     
    106148                        "color": {
    107149                            "text": "var(--wp--preset--color--contrast)"
     150                        },
     151                        ":active": {
     152                            "color": {
     153                                "text": "var(--wp--preset--color--contrast)"
     154                            }
    108155                        }
    109156                    }
     157                }
     158            },
     159            "core/post-date": {
     160                "typography": {
     161                    "textTransform": "uppercase"
    110162                }
    111163            },
     
    143195        "elements": {
    144196            "button": {
     197                "border": {
     198                    "color": "var(--wp--preset--color--contrast)",
     199                    "radius": "99999px",
     200                    "style": "solid",
     201                    "width": "2px"
     202                },
     203                "color": {
     204                    "background": "var(--wp--preset--color--base)",
     205                    "gradient": "var(--wp--preset--gradient--primary-secondary-tertiary-fixed)",
     206                    "text": "var(--wp--preset--color--contrast)"
     207                },
     208                "typography": {
     209                    "fontSize": "var(--wp--preset--font-size--x-small)",
     210                    "fontWeight": "400",
     211                    "textTransform": "uppercase"
     212                },
     213                ":hover": {
     214                    "color": {
     215                        "gradient": "var(--wp--preset--gradient--tertiary-secondary-primary-fixed)",
     216                        "text": "var(--wp--preset--color--contrast)"
     217                    }
     218                },
     219                ":focus": {
     220                    "color": {
     221                        "background": "var(--wp--preset--color--contrast)",
     222                        "gradient": "none"
     223                    }
     224                },
    145225                ":active": {
    146226                    "color": {
    147                         "text": "var(--wp--preset--color--base)"
    148                     }
    149                 },
    150                 ":hover": {
    151                     "color": {
    152                         "gradient": "radial-gradient(ellipse at top left, rgba(236, 249, 87, 1) 15% , transparent 100%) fixed, radial-gradient(ellipse at bottom left, rgba(247, 69, 204, 1) 15% , transparent 100%) fixed, radial-gradient(ellipse at top right, rgba(121, 238, 196, 1) 15% , transparent 100%) fixed, radial-gradient(ellipse at bottom right, rgba(81, 82, 213, 1) 15% , transparent 100%) fixed",
    153                         "text": "var(--wp--preset--color--base)"
    154                     }
    155                 },
    156                 "border": {
    157                     "radius": "99999px"
    158                 },
    159                 "color": {
    160                     "background": "var(--wp--preset--color--base)",
    161                     "gradient": "radial-gradient(ellipse at bottom right, rgba(236, 249, 87, 1) 15% , transparent 100%) fixed, radial-gradient(ellipse at top right, rgba(247, 69, 204, 1) 15% , transparent 100%) fixed, radial-gradient(ellipse at bottom left, rgba(121, 238, 196, 1) 15% , transparent 100%) fixed, radial-gradient(ellipse at bottom left, rgba(81, 82, 213, 1) 15% , transparent 100%) fixed",
    162                     "text": "var(--wp--preset--color--contrast)"
    163                 },
    164                 "typography": {
    165                     "fontSize": "var(--wp--preset--font-size--x-small)",
    166                     "fontWeight": "400",
    167                     "textTransform": "uppercase"
     227                        "background": "var(--wp--preset--color--contrast)",
     228                        "gradient": "none"
     229                    }
    168230                }
    169231            },
Note: See TracChangeset for help on using the changeset viewer.