Make WordPress Core


Ignore:
Timestamp:
10/17/2023 01:48:21 PM (3 years ago)
Author:
hellofromTonya
Message:

Bundled Themes: Revert 56451.

Reverts [56451] to avoid the following issues:

  • missing the default font-size for anyone who does not use the size control.
  • unintentional reduction in citation's line-height down to the --pullquote--line-height value (1.3 instead of 1.6).

With 6.4 RC1 happening shortly, this revert is necessary to avoid shipping this issues in the release, while giving the time needed to resolve in the next cycle.

Follow-up to [56451].

Props sabernhardt, nicolefurlan.
See #57854.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentytwentyone/assets/sass/05-blocks/pullquote/_style.scss

    r56451 r56959  
    88    border-color: currentColor;
    99    position: relative;
    10     font-weight: 700;
    11     font-style: var(--pullquote--font-style);
    12     font-family: var(--pullquote--font-family);
    13     letter-spacing: var(--pullquote--letter-spacing);
    14     line-height: var(--pullquote--line-height);
    1510
    1611    blockquote::before {
     
    2621
    2722    p {
    28         font-family: inherit;
    29         font-size: inherit;
    30         font-style: inherit;
    31         font-weight: inherit;
    32         letter-spacing: inherit;
    33         line-height: inherit;
     23        font-family: var(--pullquote--font-family);
     24        font-size: var(--pullquote--font-size);
     25        font-style: var(--pullquote--font-style);
     26        font-weight: 700;
     27        letter-spacing: var(--pullquote--letter-spacing);
     28        line-height: var(--pullquote--line-height);
    3429        margin: 0;
    3530    }
Note: See TracChangeset for help on using the changeset viewer.