Skip to content

Commit

Permalink
Syncing twentytwentyone
Browse files Browse the repository at this point in the history
  • Loading branch information
mboynes committed Feb 18, 2024
1 parent d200784 commit 4db25e3
Show file tree
Hide file tree
Showing 7 changed files with 101 additions and 43 deletions.
27 changes: 18 additions & 9 deletions themes/twentytwentyone/assets/css/ie-editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -1306,6 +1306,17 @@ pre.wp-block-preformatted {
color: currentColor;
border-color: currentColor;
position: relative;
font-size: 2rem;
font-style: normal;
font-weight: 700;
letter-spacing: normal;
}

@media only screen and (min-width: 652px) {

.wp-block-pullquote {
font-size: 2rem;
}
}

.wp-block-pullquote blockquote::before {
Expand All @@ -1321,18 +1332,16 @@ pre.wp-block-preformatted {

.wp-block-pullquote p {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 2rem;
font-style: normal;
font-weight: 700;
letter-spacing: normal;
line-height: 1.3;
font-size: inherit;
font-style: inherit;
font-weight: inherit;
letter-spacing: inherit;
line-height: inherit;
margin: 0;
}
@media only screen and (min-width: 652px) {

.wp-block-pullquote p {
font-size: 2rem;
}
.wp-block-pullquote:where(:not([style*=line-height])) p {
line-height: 1.3;
}

.wp-block-pullquote a {
Expand Down
27 changes: 18 additions & 9 deletions themes/twentytwentyone/assets/css/ie.css
Original file line number Diff line number Diff line change
Expand Up @@ -2977,12 +2977,23 @@ pre.wp-block-preformatted {
color: currentColor;
border-color: currentColor;
position: relative;
font-size: 2rem;
font-style: normal;
font-weight: 700;
letter-spacing: normal;

/**
* Block Options
*/
}

@media only screen and (min-width: 652px) {

.wp-block-pullquote {
font-size: 2rem;
}
}

.wp-block-pullquote blockquote::before {
color: currentColor;
content: "“";
Expand All @@ -2996,18 +3007,16 @@ pre.wp-block-preformatted {

.wp-block-pullquote p {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
font-size: 2rem;
font-style: normal;
font-weight: 700;
letter-spacing: normal;
line-height: 1.3;
font-size: inherit;
font-style: inherit;
font-weight: inherit;
letter-spacing: inherit;
line-height: inherit;
margin: 0;
}
@media only screen and (min-width: 652px) {

.wp-block-pullquote p {
font-size: 2rem;
}
.wp-block-pullquote:where(:not([style*=line-height])) p {
line-height: 1.3;
}

.wp-block-pullquote a {
Expand Down
18 changes: 13 additions & 5 deletions themes/twentytwentyone/assets/css/style-editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -1418,6 +1418,10 @@ pre.wp-block-preformatted {
color: currentColor;
border-color: currentColor;
position: relative;
font-size: var(--pullquote--font-size);
font-style: var(--pullquote--font-style);
font-weight: 700;
letter-spacing: var(--pullquote--letter-spacing);
}

.wp-block-pullquote blockquote::before {
Expand All @@ -1433,14 +1437,18 @@ pre.wp-block-preformatted {

.wp-block-pullquote p {
font-family: var(--pullquote--font-family);
font-size: var(--pullquote--font-size);
font-style: var(--pullquote--font-style);
font-weight: 700;
letter-spacing: var(--pullquote--letter-spacing);
line-height: var(--pullquote--line-height);
font-size: inherit;
font-style: inherit;
font-weight: inherit;
letter-spacing: inherit;
line-height: inherit;
margin: 0;
}

.wp-block-pullquote:where(:not([style*=line-height])) p {
line-height: var(--pullquote--line-height);
}

.wp-block-pullquote a {
color: currentColor;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
color: currentColor;
border-color: currentColor;
position: relative;
font-size: var(--pullquote--font-size);
font-style: var(--pullquote--font-style);
font-weight: 700;
letter-spacing: var(--pullquote--letter-spacing);

blockquote::before {
color: currentColor;
Expand All @@ -21,14 +25,18 @@

p {
font-family: var(--pullquote--font-family);
font-size: var(--pullquote--font-size);
font-style: var(--pullquote--font-style);
font-weight: 700;
letter-spacing: var(--pullquote--letter-spacing);
line-height: var(--pullquote--line-height);
font-size: inherit;
font-style: inherit;
font-weight: inherit;
letter-spacing: inherit;
line-height: inherit;
margin: 0;
}

&:where(:not([style*="line-height"])) p {
line-height: var(--pullquote--line-height);
}

a {
color: currentColor;
}
Expand Down
18 changes: 13 additions & 5 deletions themes/twentytwentyone/assets/sass/05-blocks/pullquote/_style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
color: currentColor;
border-color: currentColor;
position: relative;
font-size: var(--pullquote--font-size);
font-style: var(--pullquote--font-style);
font-weight: 700;
letter-spacing: var(--pullquote--letter-spacing);

blockquote::before {
color: currentColor;
Expand All @@ -21,14 +25,18 @@

p {
font-family: var(--pullquote--font-family);
font-size: var(--pullquote--font-size);
font-style: var(--pullquote--font-style);
font-weight: 700;
letter-spacing: var(--pullquote--letter-spacing);
line-height: var(--pullquote--line-height);
font-size: inherit;
font-style: inherit;
font-weight: inherit;
letter-spacing: inherit;
line-height: inherit;
margin: 0;
}

&:where(:not([style*="line-height"])) p {
line-height: var(--pullquote--line-height);
}

a {
color: currentColor;
}
Expand Down
18 changes: 13 additions & 5 deletions themes/twentytwentyone/style-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -2813,6 +2813,10 @@ pre.wp-block-preformatted {
color: currentColor;
border-color: currentColor;
position: relative;
font-size: var(--pullquote--font-size);
font-style: var(--pullquote--font-style);
font-weight: 700;
letter-spacing: var(--pullquote--letter-spacing);

/**
* Block Options
Expand All @@ -2832,14 +2836,18 @@ pre.wp-block-preformatted {

.wp-block-pullquote p {
font-family: var(--pullquote--font-family);
font-size: var(--pullquote--font-size);
font-style: var(--pullquote--font-style);
font-weight: 700;
letter-spacing: var(--pullquote--letter-spacing);
line-height: var(--pullquote--line-height);
font-size: inherit;
font-style: inherit;
font-weight: inherit;
letter-spacing: inherit;
line-height: inherit;
margin: 0;
}

.wp-block-pullquote:where(:not([style*=line-height])) p {
line-height: var(--pullquote--line-height);
}

.wp-block-pullquote a {
color: currentColor;
}
Expand Down
18 changes: 13 additions & 5 deletions themes/twentytwentyone/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2823,6 +2823,10 @@ pre.wp-block-preformatted {
color: currentColor;
border-color: currentColor;
position: relative;
font-size: var(--pullquote--font-size);
font-style: var(--pullquote--font-style);
font-weight: 700;
letter-spacing: var(--pullquote--letter-spacing);

/**
* Block Options
Expand All @@ -2842,14 +2846,18 @@ pre.wp-block-preformatted {

.wp-block-pullquote p {
font-family: var(--pullquote--font-family);
font-size: var(--pullquote--font-size);
font-style: var(--pullquote--font-style);
font-weight: 700;
letter-spacing: var(--pullquote--letter-spacing);
line-height: var(--pullquote--line-height);
font-size: inherit;
font-style: inherit;
font-weight: inherit;
letter-spacing: inherit;
line-height: inherit;
margin: 0;
}

.wp-block-pullquote:where(:not([style*=line-height])) p {
line-height: var(--pullquote--line-height);
}

.wp-block-pullquote a {
color: currentColor;
}
Expand Down

0 comments on commit 4db25e3

Please sign in to comment.