Make WordPress Core

Ticket #55991: 55991.diff

File 55991.diff, 4.8 KB (added by deepakvijayan, 4 years ago)

Fixes Quote block font size not updating in editor and front end.

  • src/wp-content/themes/twentytwentyone/assets/css/ie-editor.css

    diff --git a/src/wp-content/themes/twentytwentyone/assets/css/ie-editor.css b/src/wp-content/themes/twentytwentyone/assets/css/ie-editor.css
    index e91a00d68e..d85b5d5861 100644
    a b blockquote > *:last-child { 
    141141blockquote p {
    142142        letter-spacing: normal;
    143143        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    144         font-size: 1.25rem;
    145144        font-style: normal;
    146145        font-weight: 700;
    147146        line-height: 1.7;
    pre.wp-block-preformatted { 
    16391638
    16401639.wp-block-quote p {
    16411640        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    1642         font-size: 1.25rem;
    16431641        font-style: normal;
    16441642        font-weight: 700;
    16451643        line-height: 1.7;
  • src/wp-content/themes/twentytwentyone/assets/css/ie.css

    diff --git a/src/wp-content/themes/twentytwentyone/assets/css/ie.css b/src/wp-content/themes/twentytwentyone/assets/css/ie.css
    index f7aa6c2003..3131f36778 100644
    a b blockquote > *:last-child { 
    13111311blockquote p {
    13121312        letter-spacing: normal;
    13131313        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    1314         font-size: 1.25rem;
    13151314        font-style: normal;
    13161315        font-weight: 700;
    13171316        line-height: 1.7;
  • src/wp-content/themes/twentytwentyone/assets/css/style-editor.css

    diff --git a/src/wp-content/themes/twentytwentyone/assets/css/style-editor.css b/src/wp-content/themes/twentytwentyone/assets/css/style-editor.css
    index 22cf90dd98..8a46e14aa0 100644
    a b blockquote > *:last-child { 
    332332blockquote p {
    333333        letter-spacing: var(--heading--letter-spacing-h4);
    334334        font-family: var(--quote--font-family);
    335         font-size: var(--quote--font-size);
    336335        font-style: var(--quote--font-style);
    337336        font-weight: var(--quote--font-weight);
    338337        line-height: var(--quote--line-height);
    pre.wp-block-preformatted { 
    15431542
    15441543.wp-block-quote p {
    15451544        font-family: var(--quote--font-family);
    1546         font-size: var(--quote--font-size);
    15471545        font-style: var(--quote--font-style);
    15481546        font-weight: var(--quote--font-weight);
    15491547        line-height: var(--quote--line-height);
  • src/wp-content/themes/twentytwentyone/assets/sass/04-elements/blockquote.scss

    diff --git a/src/wp-content/themes/twentytwentyone/assets/sass/04-elements/blockquote.scss b/src/wp-content/themes/twentytwentyone/assets/sass/04-elements/blockquote.scss
    index e599b0b206..946a9c4763 100644
    a b blockquote { 
    1919        p {
    2020                letter-spacing: var(--heading--letter-spacing-h4);
    2121                font-family: var(--quote--font-family);
    22                 font-size: var(--quote--font-size);
    2322                font-style: var(--quote--font-style);
    2423                font-weight: var(--quote--font-weight);
    2524                line-height: var(--quote--line-height);
  • src/wp-content/themes/twentytwentyone/assets/sass/05-blocks/quote/_editor.scss

    diff --git a/src/wp-content/themes/twentytwentyone/assets/sass/05-blocks/quote/_editor.scss b/src/wp-content/themes/twentytwentyone/assets/sass/05-blocks/quote/_editor.scss
    index 4a33767653..c78de3dc21 100644
    a b  
    55
    66        p {
    77                font-family: var(--quote--font-family);
    8                 font-size: var(--quote--font-size);
    98                font-style: var(--quote--font-style);
    109                font-weight: var(--quote--font-weight);
    1110                line-height: var(--quote--line-height);
  • src/wp-content/themes/twentytwentyone/style-rtl.css

    diff --git a/src/wp-content/themes/twentytwentyone/style-rtl.css b/src/wp-content/themes/twentytwentyone/style-rtl.css
    index 4acdc3b22e..5c0dd7fd24 100644
    a b blockquote > *:last-child { 
    11361136blockquote p {
    11371137        letter-spacing: var(--heading--letter-spacing-h4);
    11381138        font-family: var(--quote--font-family);
    1139         font-size: var(--quote--font-size);
    11401139        font-style: var(--quote--font-style);
    11411140        font-weight: var(--quote--font-weight);
    11421141        line-height: var(--quote--line-height);
  • src/wp-content/themes/twentytwentyone/style.css

    diff --git a/src/wp-content/themes/twentytwentyone/style.css b/src/wp-content/themes/twentytwentyone/style.css
    index ca4360db11..bd3533d80e 100644
    a b blockquote > *:last-child { 
    11441144blockquote p {
    11451145        letter-spacing: var(--heading--letter-spacing-h4);
    11461146        font-family: var(--quote--font-family);
    1147         font-size: var(--quote--font-size);
    11481147        font-style: var(--quote--font-style);
    11491148        font-weight: var(--quote--font-weight);
    11501149        line-height: var(--quote--line-height);