From b8564bdf9ea7f57c1ed564acada789e4903ad94e Mon Sep 17 00:00:00 2001 From: John James Jacoby Date: Wed, 3 Nov 2021 17:00:18 +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. git-svn-id: https://develop.svn.wordpress.org/trunk@52004 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentysixteen/css/blocks.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-content/themes/twentysixteen/css/blocks.css b/src/wp-content/themes/twentysixteen/css/blocks.css index ba747b4496..4898e2d446 100644 --- a/src/wp-content/themes/twentysixteen/css/blocks.css +++ b/src/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; }