From 9c5b1391d785ac3d32bbf9529438659d221f1b2c Mon Sep 17 00:00:00 2001 From: Tammie Lister Date: Sat, 27 Jul 2024 12:34:15 +0000 Subject: [PATCH] Twenty Twenty-Three: Fixes unnecessary borders for links images in Whisper variation. This fixes the Whisper variation having borders for links images. Other styles did not have this. Props colorful-tones, sabernhardt. Fixes #57368. Built from https://develop.svn.wordpress.org/trunk@58818 git-svn-id: http://core.svn.wordpress.org/trunk@58214 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- .../twentytwentythree/styles/whisper.json | 37 +++++++++++++++++++ wp-includes/version.php | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/wp-content/themes/twentytwentythree/styles/whisper.json b/wp-content/themes/twentytwentythree/styles/whisper.json index 3fd195eaac..d1e677be4e 100644 --- a/wp-content/themes/twentytwentythree/styles/whisper.json +++ b/wp-content/themes/twentytwentythree/styles/whisper.json @@ -83,6 +83,20 @@ }, "styles": { "blocks": { + "core/image": { + "elements": { + "link": { + "border": { + "width": "0" + }, + ":hover": { + "color": { + "background": "transparent" + } + } + } + } + }, "core/navigation": { "color": { "text": "var(--wp--preset--color--contrast)" @@ -169,6 +183,20 @@ } } }, + "core/post-featured-image": { + "elements": { + "link": { + "border": { + "width": "0" + }, + ":hover": { + "color": { + "background": "transparent" + } + } + } + } + }, "core/post-title": { "elements": { "link": { @@ -251,6 +279,15 @@ "width": "6px 0 0 0" } }, + "core/site-logo": { + "elements": { + "link": { + "border": { + "width": "0" + } + } + } + }, "core/site-title": { "elements": { "link": { diff --git a/wp-includes/version.php b/wp-includes/version.php index 4bc94433d4..b4f99390f5 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.7-alpha-58817'; +$wp_version = '6.7-alpha-58818'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.