Skip to content

Commit

Permalink
Bundled Themes: Twenty Nineteen editor style interferes with navigati…
Browse files Browse the repository at this point in the history
…on menu block.

Update editor styles to prepare for changes coming to the editor in 5.5. Currently the issue is only present when using the latest version of the Gutenberg plugin.

Props kjellr, Joen.
Fixes #49613.
Built from https://develop.svn.wordpress.org/trunk@47587


git-svn-id: http://core.svn.wordpress.org/trunk@47362 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
ianbelanger79 committed Apr 16, 2020
1 parent 90f5e05 commit b2f072b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion wp-content/themes/twentynineteen/style-editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ body .wp-block[data-align="full"] {
}

.wp-block .wp-block {
width: 100%;
width: initial;
}

/** === Base Typography === */
Expand Down
2 changes: 1 addition & 1 deletion wp-content/themes/twentynineteen/style-editor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ body {

// Only the top level blocks need specific widths, therefore override for every nested block.
.wp-block {
width: 100%;
width: initial;
}
}

Expand Down
2 changes: 1 addition & 1 deletion wp-includes/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.5-alpha-47586';
$wp_version = '5.5-alpha-47587';

/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
Expand Down

0 comments on commit b2f072b

Please sign in to comment.