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:
laurelfulford 2018-12-15 11:05:22 +00:00
parent 56e4de19ab
commit 2d1151b31b
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}

View File

@ -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.