Twenty Nineteen: Fixes font size and citation display for Pullquote block.
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: http://core.svn.wordpress.org/trunk@58059 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
98148173c6
commit
216010de95
|
@ -370,6 +370,7 @@
|
||||||
border-color: transparent;
|
border-color: transparent;
|
||||||
border-width: 2px;
|
border-width: 2px;
|
||||||
padding: $size__spacing-unit;
|
padding: $size__spacing-unit;
|
||||||
|
font-size: 1em;
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
border: none;
|
border: none;
|
||||||
|
@ -396,7 +397,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
cite {
|
cite {
|
||||||
display: inline-block;
|
display: block;
|
||||||
@include font-family( $font__heading );
|
@include font-family( $font__heading );
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
|
|
|
@ -5681,6 +5681,7 @@ body.page .main-navigation {
|
||||||
border-color: transparent;
|
border-color: transparent;
|
||||||
border-width: 2px;
|
border-width: 2px;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.entry .entry-content .wp-block-pullquote blockquote {
|
.entry .entry-content .wp-block-pullquote blockquote {
|
||||||
|
@ -5710,7 +5711,7 @@ body.page .main-navigation {
|
||||||
}
|
}
|
||||||
|
|
||||||
.entry .entry-content .wp-block-pullquote cite {
|
.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;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
|
|
|
@ -5693,6 +5693,7 @@ body.page .main-navigation {
|
||||||
border-color: transparent;
|
border-color: transparent;
|
||||||
border-width: 2px;
|
border-width: 2px;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
|
font-size: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.entry .entry-content .wp-block-pullquote blockquote {
|
.entry .entry-content .wp-block-pullquote blockquote {
|
||||||
|
@ -5722,7 +5723,7 @@ body.page .main-navigation {
|
||||||
}
|
}
|
||||||
|
|
||||||
.entry .entry-content .wp-block-pullquote cite {
|
.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;
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
|
||||||
line-height: 1.6;
|
line-height: 1.6;
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue