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
This commit is contained in:
johnjamesjacoby 2021-11-03 17:01:57 +00:00
parent 6a10d18458
commit 3e81de0a3d
2 changed files with 2 additions and 2 deletions

View File

@ -182,7 +182,7 @@ p.has-drop-cap:not(:focus)::first-letter {
display: block; display: block;
font-size: 16px; font-size: 16px;
font-size: 1rem; font-size: 1rem;
font-style: none; font-style: normal;
line-height: 1.75; line-height: 1.75;
text-transform: none; text-transform: none;
} }

View File

@ -16,7 +16,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.