Updating Twenty Nineteen, the new default theme for 2019.

This update changes the following: 

- Reverts the customization to the toolbar for wide and full blocks to make them more usable. More info here: https://github.com/WordPress/twentynineteen/pull/668
- Add nowrap to the columns block at breakpoints above 600px. More info here: https://github.com/WordPress/twentynineteen/pull/674

Props joen, kjellr.

Fixes #45369.

See #45424.


Built from https://develop.svn.wordpress.org/branches/5.0@44189


git-svn-id: http://core.svn.wordpress.org/branches/5.0@44019 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
allancole 2018-12-15 11:04:36 +00:00
parent 3175c26096
commit 56e4de19ab
6 changed files with 17 additions and 15 deletions

View File

@ -700,6 +700,10 @@
padding-right: $size__spacing-unit;
}
@include media(mobile) {
flex-wrap: nowrap;
}
@include media(tablet) {
.wp-block-column > * {

View File

@ -58,12 +58,6 @@ body .wp-block[data-align="full"] {
}
}
/** === Editor Block Toolbar Position === */
.editor-block-list__block[data-align="wide"] .editor-block-contextual-toolbar .editor-block-toolbar.editor-block-toolbar,
.editor-block-list__block[data-align="full"] .editor-block-contextual-toolbar .editor-block-toolbar.editor-block-toolbar {
max-width: none;
}
/** === Content Width === */
.wp-block {
width: calc(100vw - (2 * 1rem));

View File

@ -54,14 +54,6 @@ body {
}
}
/** === Editor Block Toolbar Position === */
// Since 2019 left-aligns wide and fullwide blocks, left align the toolbar too.
.editor-block-list__block[data-align="wide"] .editor-block-contextual-toolbar .editor-block-toolbar.editor-block-toolbar,
.editor-block-list__block[data-align="full"] .editor-block-contextual-toolbar .editor-block-toolbar.editor-block-toolbar {
max-width: none;
}
/** === Content Width === */
.wp-block {

View File

@ -4188,6 +4188,12 @@ body.page .main-navigation {
padding-left: 1rem;
}
@media only screen and (min-width: 600px) {
.entry .entry-content .wp-block-columns {
flex-wrap: nowrap;
}
}
@media only screen and (min-width: 768px) {
.entry .entry-content .wp-block-columns .wp-block-column > *:first-child {
margin-top: 0;

View File

@ -4200,6 +4200,12 @@ body.page .main-navigation {
padding-right: 1rem;
}
@media only screen and (min-width: 600px) {
.entry .entry-content .wp-block-columns {
flex-wrap: nowrap;
}
}
@media only screen and (min-width: 768px) {
.entry .entry-content .wp-block-columns .wp-block-column > *:first-child {
margin-top: 0;

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.0.2-alpha-44188';
$wp_version = '5.0.2-alpha-44189';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.