Skip to content

Commit

Permalink
Twenty Nineteen: Fixes font size and citation display for Pullquote b…
Browse files Browse the repository at this point in the history
…lock.

The pullquote block text decoration was not the same front and within the editor. This resolves that and resets.

Props pitamdey, viralsampat, sabernhardt.
Fixes #61507.

Built from https://develop.svn.wordpress.org/trunk@58630


git-svn-id: https://core.svn.wordpress.org/trunk@58059 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
karmatosed committed Jul 2, 2024
1 parent a70b15d commit c0ea5d2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion wp-content/themes/twentynineteen/sass/blocks/_blocks.scss
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,7 @@
border-color: transparent;
border-width: 2px;
padding: $size__spacing-unit;
font-size: 1em;

blockquote {
border: none;
Expand All @@ -396,7 +397,7 @@
}

cite {
display: inline-block;
display: block;
@include font-family( $font__heading );
line-height: 1.6;
text-transform: none;
Expand Down
3 changes: 2 additions & 1 deletion wp-content/themes/twentynineteen/style-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -5681,6 +5681,7 @@ body.page .main-navigation {
border-color: transparent;
border-width: 2px;
padding: 1rem;
font-size: 1em;
}

.entry .entry-content .wp-block-pullquote blockquote {
Expand Down Expand Up @@ -5710,7 +5711,7 @@ body.page .main-navigation {
}

.entry .entry-content .wp-block-pullquote cite {
display: inline-block;
display: block;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
line-height: 1.6;
text-transform: none;
Expand Down
3 changes: 2 additions & 1 deletion wp-content/themes/twentynineteen/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5693,6 +5693,7 @@ body.page .main-navigation {
border-color: transparent;
border-width: 2px;
padding: 1rem;
font-size: 1em;
}

.entry .entry-content .wp-block-pullquote blockquote {
Expand Down Expand Up @@ -5722,7 +5723,7 @@ body.page .main-navigation {
}

.entry .entry-content .wp-block-pullquote cite {
display: inline-block;
display: block;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
line-height: 1.6;
text-transform: none;
Expand Down
2 changes: 1 addition & 1 deletion wp-includes/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.7-alpha-58629';
$wp_version = '6.7-alpha-58630';

/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
Expand Down

0 comments on commit c0ea5d2

Please sign in to comment.