From 3e81de0a3d446f2dc72536d65a3f6b32fec5839c Mon Sep 17 00:00:00 2001 From: johnjamesjacoby Date: Wed, 3 Nov 2021 17:01:57 +0000 Subject: [PATCH] Themes/TwentySixteen: correct invalid CSS `font-style` value. This change swaps out `none` for `normal` in the `.wp-block-pullquote cite` styling of `blocks.css`. Props malae, mukesh27, sabernhardt. Fixes #46807. Built from https://develop.svn.wordpress.org/trunk@52004 git-svn-id: http://core.svn.wordpress.org/trunk@51593 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentysixteen/css/blocks.css | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/twentysixteen/css/blocks.css b/wp-content/themes/twentysixteen/css/blocks.css index ba747b4496..4898e2d446 100644 --- a/wp-content/themes/twentysixteen/css/blocks.css +++ b/wp-content/themes/twentysixteen/css/blocks.css @@ -182,7 +182,7 @@ p.has-drop-cap:not(:focus)::first-letter { display: block; font-size: 16px; font-size: 1rem; - font-style: none; + font-style: normal; line-height: 1.75; text-transform: none; } diff --git a/wp-includes/version.php b/wp-includes/version.php index fdd758bb2f..4fd414b084 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-52003'; +$wp_version = '5.9-alpha-52004'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.