Twenty Eleven: Resolves pullquote block ignoring font weight and style settings.

The pullquote block was ignoring font weight and style settings. This now brings in a fix using inherit.

Props nidhidhandhukiya, desrosj, sabernhardt.
Fixes #56695.

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


git-svn-id: http://core.svn.wordpress.org/trunk@57902 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Tammie Lister 2024-06-21 14:31:15 +00:00
parent 2613ed9ea5
commit 953941b344
3 changed files with 49 additions and 1 deletions

View File

@ -123,6 +123,18 @@ p.has-drop-cap:not(:focus)::first-letter {
font-size: 16px;
}
.wp-block-quote[style*="font-weight"] blockquote,
.wp-block-quote[style*="font-weight"] p,
.wp-block-quote[style*="font-weight"] cite {
font-weight: inherit;
}
.wp-block-quote[style*="font-style"] blockquote,
.wp-block-quote[style*="font-style"] p,
.wp-block-quote[style*="font-style"] cite {
font-style: inherit;
}
/* Audio */
.wp-block-audio audio {
@ -203,6 +215,18 @@ p.has-drop-cap:not(:focus)::first-letter {
margin-left: 1.625em;
}
.wp-block-pullquote[style*="font-weight"] blockquote,
.wp-block-pullquote[style*="font-weight"] p,
.wp-block-pullquote[style*="font-weight"] cite {
font-weight: inherit;
}
.wp-block-pullquote[style*="font-style"] blockquote,
.wp-block-pullquote[style*="font-style"] p,
.wp-block-pullquote[style*="font-style"] cite {
font-style: inherit;
}
/* Table */
.wp-block-table {

View File

@ -302,6 +302,18 @@ p.has-drop-cap:not(:focus)::first-letter {
font-size: 16px;
}
.wp-block-quote[style*="font-weight"] blockquote,
.wp-block-quote[style*="font-weight"] p,
.wp-block-quote[style*="font-weight"] cite {
font-weight: inherit;
}
.wp-block-quote[style*="font-style"] blockquote,
.wp-block-quote[style*="font-style"] p,
.wp-block-quote[style*="font-style"] cite {
font-style: inherit;
}
/* Cover */
.edit-post-visual-editor .editor-block-list__block .wp-block-cover-image p.wp-block-cover-image-text,
@ -358,6 +370,18 @@ p.has-drop-cap:not(:focus)::first-letter {
font-size: 20px;
}
.wp-block-pullquote[style*="font-weight"] blockquote,
.wp-block-pullquote[style*="font-weight"] p,
.wp-block-pullquote[style*="font-weight"] cite {
font-weight: inherit;
}
.wp-block-pullquote[style*="font-style"] blockquote,
.wp-block-pullquote[style*="font-style"] p,
.wp-block-pullquote[style*="font-style"] cite {
font-style: inherit;
}
/* Table */
.editor-styles-wrapper .wp-block-table th,

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.6-beta3-58452';
$wp_version = '6.6-beta3-58453';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.