Twenty Twenty: Fixes pullquote block font size not changing.

The pullquote block was not reflecting the size changes. This also accounts for letter spacing in the editor.

Props kmadhak, SergeyBiryukov, nidhidhandhukiya, harshvaishnav, sabernhardt, shailu25.
Fixes #55975.


git-svn-id: https://develop.svn.wordpress.org/trunk@58908 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Tammie Lister 2024-08-17 20:10:38 +00:00
parent 487907150f
commit 0412c7b5e4
4 changed files with 34 additions and 0 deletions

View File

@ -872,6 +872,10 @@ hr.wp-block-separator.is-style-dots::before {
transform: translateY(-50%);
}
.editor-styles-wrapper .wp-block-pullquote[style*="letter-spacing"] p {
letter-spacing: inherit;
}
.editor-styles-wrapper .wp-block-pullquote__citation,
.editor-styles-wrapper .wp-block-pullquote cite,
.editor-styles-wrapper .wp-block-pullquote footer {

View File

@ -876,6 +876,10 @@ hr.wp-block-separator.is-style-dots::before {
transform: translateY(-50%);
}
.editor-styles-wrapper .wp-block-pullquote[style*="letter-spacing"] p {
letter-spacing: inherit;
}
.editor-styles-wrapper .wp-block-pullquote__citation,
.editor-styles-wrapper .wp-block-pullquote cite,
.editor-styles-wrapper .wp-block-pullquote footer {

View File

@ -3295,6 +3295,19 @@ figure.wp-block-gallery.alignfull {
margin-left: 0;
}
.wp-block-pullquote[class*="-font-size"] p,
.wp-block-pullquote[style*="font-size"] p {
font-size: inherit;
}
.wp-block-pullquote[style*="font-weight"] p {
font-weight: inherit;
}
.wp-block-pullquote[style*="letter-spacing"] p {
letter-spacing: inherit;
}
/* STYLE: SOLID BACKGROUND COLOR */
.wp-block-pullquote.is-style-solid-color {

View File

@ -3315,6 +3315,19 @@ figure.wp-block-gallery.alignfull {
margin-right: 0;
}
.wp-block-pullquote[class*="-font-size"] p,
.wp-block-pullquote[style*="font-size"] p {
font-size: inherit;
}
.wp-block-pullquote[style*="font-weight"] p {
font-weight: inherit;
}
.wp-block-pullquote[style*="letter-spacing"] p {
letter-spacing: inherit;
}
/* STYLE: SOLID BACKGROUND COLOR */
.wp-block-pullquote.is-style-solid-color {