Twenty Nineteen: Revert [44739] from the 5.1 branch.

Reverts block quote style changes intended for a later release.

See #46239.


Built from https://develop.svn.wordpress.org/branches/5.1@44743


git-svn-id: http://core.svn.wordpress.org/branches/5.1@44575 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Peter Wilson 2019-02-14 00:27:13 +00:00
parent d79c639494
commit cecc563e3b
7 changed files with 16 additions and 15 deletions

View File

@ -132,14 +132,20 @@ function twentynineteen_custom_colors_css() {
} }
/* /*
* Set border color for: * Set left border color for:
* wp block quote * wp block quote
* :focus
*/ */
blockquote, blockquote,
.entry .entry-content blockquote, .entry .entry-content blockquote,
.entry .entry-content .wp-block-quote:not(.is-large), .entry .entry-content .wp-block-quote:not(.is-large),
.entry .entry-content .wp-block-quote:not(.is-style-large), .entry .entry-content .wp-block-quote:not(.is-style-large) {
border-left-color: hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness . ' ); /* base: #0073a8; */
}
/*
* Set border color for:
* :focus
*/
input[type="text"]:focus, input[type="text"]:focus,
input[type="email"]:focus, input[type="email"]:focus,
input[type="url"]:focus, input[type="url"]:focus,
@ -225,7 +231,7 @@ function twentynineteen_custom_colors_css() {
.editor-block-list__layout .editor-block-list__block .wp-block-quote:not(.is-large):not(.is-style-large), .editor-block-list__layout .editor-block-list__block .wp-block-quote:not(.is-large):not(.is-style-large),
.editor-styles-wrapper .editor-block-list__layout .wp-block-freeform blockquote { .editor-styles-wrapper .editor-block-list__layout .wp-block-freeform blockquote {
border-color: hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness . ' ); /* base: #0073a8; */ border-left: 2px solid hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness . ' ); /* base: #0073a8; */
} }
.editor-block-list__layout .editor-block-list__block .wp-block-pullquote.is-style-solid-color:not(.has-background-color) { .editor-block-list__layout .editor-block-list__block .wp-block-pullquote.is-style-solid-color:not(.has-background-color) {

View File

@ -452,8 +452,7 @@
&:not(.is-large), &:not(.is-large),
&:not(.is-style-large) { &:not(.is-style-large) {
border-width: 2px; border-left: 2px solid $color__link;
border-color: $color__link;
padding-top: 0; padding-top: 0;
padding-bottom: 0; padding-bottom: 0;
} }

View File

@ -940,8 +940,7 @@ figcaption,
/** === Blockquote === */ /** === Blockquote === */
.wp-block-quote:not(.is-large):not(.is-style-large) { .wp-block-quote:not(.is-large):not(.is-style-large) {
border-width: 2px; border-left: 2px solid #0073aa;
border-color: #0073aa;
} }
.wp-block-quote.is-large, .wp-block-quote.is-style-large { .wp-block-quote.is-large, .wp-block-quote.is-style-large {

View File

@ -391,8 +391,7 @@ figcaption,
.wp-block-quote { .wp-block-quote {
&:not(.is-large):not(.is-style-large) { &:not(.is-large):not(.is-style-large) {
border-width: 2px; border-left: 2px solid $color__link;
border-color: $color__link;
} }
&.is-large, &.is-large,

View File

@ -5477,8 +5477,7 @@ body.page .main-navigation {
} }
.entry .entry-content .wp-block-quote:not(.is-large), .entry .entry-content .wp-block-quote:not(.is-style-large) { .entry .entry-content .wp-block-quote:not(.is-large), .entry .entry-content .wp-block-quote:not(.is-style-large) {
border-width: 2px; border-right: 2px solid #0073aa;
border-color: #0073aa;
padding-top: 0; padding-top: 0;
padding-bottom: 0; padding-bottom: 0;
} }

View File

@ -5663,8 +5663,7 @@ body.page .main-navigation {
} }
.entry .entry-content .wp-block-quote:not(.is-large), .entry .entry-content .wp-block-quote:not(.is-style-large) { .entry .entry-content .wp-block-quote:not(.is-large), .entry .entry-content .wp-block-quote:not(.is-style-large) {
border-width: 2px; border-left: 2px solid #0073aa;
border-color: #0073aa;
padding-top: 0; padding-top: 0;
padding-bottom: 0; padding-bottom: 0;
} }

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.1-RC1-44740'; $wp_version = '5.1-RC1-44743';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.