Make WordPress Core

Changeset 44743


Ignore:
Timestamp:
02/14/2019 12:25:41 AM (7 years ago)
Author:
peterwilsoncc
Message:

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

Reverts block quote style changes intended for a later release.

See #46239.

Location:
branches/5.1/src/wp-content/themes/twentynineteen
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • branches/5.1/src/wp-content/themes/twentynineteen/inc/color-patterns.php

    r44739 r44743  
    133133
    134134                /*
    135                  * Set border color for:
     135                 * Set left border color for:
    136136                 * wp block quote
    137                  * :focus
    138137                 */
    139138                blockquote,
    140139                .entry .entry-content blockquote,
    141140                .entry .entry-content .wp-block-quote:not(.is-large),
    142                 .entry .entry-content .wp-block-quote:not(.is-style-large),
     141                .entry .entry-content .wp-block-quote:not(.is-style-large) {
     142                        border-left-color: hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness . ' ); /* base: #0073a8; */
     143                }
     144
     145                /*
     146                 * Set border color for:
     147                 * :focus
     148                 */
    143149                input[type="text"]:focus,
    144150                input[type="email"]:focus,
     
    226232                .editor-block-list__layout .editor-block-list__block .wp-block-quote:not(.is-large):not(.is-style-large),
    227233                .editor-styles-wrapper .editor-block-list__layout .wp-block-freeform blockquote {
    228                         border-color: hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness . ' ); /* base: #0073a8; */
     234                        border-left: 2px solid hsl( ' . $primary_color . ', ' . $saturation . ', ' . $lightness . ' ); /* base: #0073a8; */
    229235                }
    230236
  • branches/5.1/src/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss

    r44739 r44743  
    453453                &:not(.is-large),
    454454                &:not(.is-style-large) {
    455                         border-width: 2px;
    456                         border-color: $color__link;
     455                        border-left: 2px solid $color__link;
    457456                        padding-top: 0;
    458457                        padding-bottom: 0;
  • branches/5.1/src/wp-content/themes/twentynineteen/style-editor.css

    r44739 r44743  
    941941/** === Blockquote === */
    942942.wp-block-quote:not(.is-large):not(.is-style-large) {
    943   border-width: 2px;
    944   border-color: #0073aa;
     943  border-left: 2px solid #0073aa;
    945944}
    946945
  • branches/5.1/src/wp-content/themes/twentynineteen/style-editor.scss

    r44739 r44743  
    392392
    393393        &:not(.is-large):not(.is-style-large) {
    394                 border-width: 2px;
    395                 border-color: $color__link;
     394                border-left: 2px solid $color__link;
    396395        }
    397396
  • branches/5.1/src/wp-content/themes/twentynineteen/style-rtl.css

    r44739 r44743  
    54785478
    54795479.entry .entry-content .wp-block-quote:not(.is-large), .entry .entry-content .wp-block-quote:not(.is-style-large) {
    5480   border-width: 2px;
    5481   border-color: #0073aa;
     5480  border-right: 2px solid #0073aa;
    54825481  padding-top: 0;
    54835482  padding-bottom: 0;
  • branches/5.1/src/wp-content/themes/twentynineteen/style.css

    r44739 r44743  
    56645664
    56655665.entry .entry-content .wp-block-quote:not(.is-large), .entry .entry-content .wp-block-quote:not(.is-style-large) {
    5666   border-width: 2px;
    5667   border-color: #0073aa;
     5666  border-left: 2px solid #0073aa;
    56685667  padding-top: 0;
    56695668  padding-bottom: 0;
Note: See TracChangeset for help on using the changeset viewer.