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:
parent
6a10d18458
commit
3e81de0a3d
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue