Twenty Eleven: Correct block editor `font-size` issue.
Update a mistake in Twenty Eleven's block editor styles that erroneously sets the `font-size` to `300`, when it should set the `font-weight` to `300`. This was causing browsers in quirks mode to make the editor font size very large. Fixes #45421. Built from https://develop.svn.wordpress.org/branches/5.0@44190 git-svn-id: http://core.svn.wordpress.org/branches/5.0@44020 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
56e4de19ab
commit
2d1151b31b
|
@ -23,7 +23,7 @@ Description: Used to style Gutenberg Blocks in the editor.
|
|||
.editor-default-block-appender input[type="text"].editor-default-block-appender__content {
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
font-size: 15px;
|
||||
font-size: 300;
|
||||
font-weight: 300;
|
||||
line-height: 1.625;
|
||||
}
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.0.2-alpha-44189';
|
||||
$wp_version = '5.0.2-alpha-44190';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue