mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-10 21:00:59 +01:00
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:
parent
2613ed9ea5
commit
953941b344
@ -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 {
|
||||
|
@ -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,
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user