From 9798608a6ac9fcdc18b59e07ec68d13ff49b2370 Mon Sep 17 00:00:00 2001 From: audrasjb Date: Mon, 9 Jan 2023 23:45:12 +0000 Subject: [PATCH] Twenty Twenty-Three: Fix incorrect gradient values in Aubergine theme. This changeset removes two unwanted semicolons from the gradients declaration in `aubergine.json`, fixing two gradients that were showing a checkerboard pattern instead of the gradient, and a console error for each of them. Props wildworks, sabernhardt. Fixes #57245. Built from https://develop.svn.wordpress.org/trunk@55041 git-svn-id: http://core.svn.wordpress.org/trunk@54574 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentytwentythree/styles/aubergine.json | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-content/themes/twentytwentythree/styles/aubergine.json b/wp-content/themes/twentytwentythree/styles/aubergine.json index aab104550e..74ca7f8670 100644 --- a/wp-content/themes/twentytwentythree/styles/aubergine.json +++ b/wp-content/themes/twentytwentythree/styles/aubergine.json @@ -16,12 +16,12 @@ "slug": "base-secondary-base" }, { - "gradient": "linear-gradient(90deg, var(--wp--preset--color--tertiary) 5.74%, var(--wp--preset--color--primary) 100%);", + "gradient": "linear-gradient(90deg, var(--wp--preset--color--tertiary) 5.74%, var(--wp--preset--color--primary) 100%)", "name": "Tertiary to Primary", "slug": "tertiary-primary" }, { - "gradient": "linear-gradient(90deg, var(--wp--preset--color--primary) 5.74%, var(--wp--preset--color--tertiary) 100%);", + "gradient": "linear-gradient(90deg, var(--wp--preset--color--primary) 5.74%, var(--wp--preset--color--tertiary) 100%)", "name": "Primary to Tertiary", "slug": "primary-tertiary" } diff --git a/wp-includes/version.php b/wp-includes/version.php index 7187f6ab48..d6f7d848d0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-alpha-55040'; +$wp_version = '6.2-alpha-55041'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.