Twenty Twenty: Adds Plain Style into Quote block.

Plan style was missing for the Quote block. This brings it in as should have been originally.

Props kajalgohel, devtanbir, costdev, sabernhardt.
Fixes #56011.


git-svn-id: https://develop.svn.wordpress.org/trunk@58817 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Tammie Lister 2024-07-27 10:12:31 +00:00
parent a3e07a2ec0
commit 5159e54b10
4 changed files with 24 additions and 0 deletions

View File

@ -683,6 +683,11 @@ hr.wp-block-separator.is-style-dots::before {
letter-spacing: inherit;
}
.editor-styles-wrapper .wp-block-quote.is-style-plain {
border-width: 0;
padding: 5px 20px;
}
.editor-styles-wrapper .wp-block-quote.is-style-large {
border: none;
padding: 0;

View File

@ -687,6 +687,11 @@ hr.wp-block-separator.is-style-dots::before {
letter-spacing: inherit;
}
.editor-styles-wrapper .wp-block-quote.is-style-plain {
border-width: 0;
padding: 5px 20px;
}
.editor-styles-wrapper .wp-block-quote.is-style-large {
border: none;
padding: 0;

View File

@ -3405,6 +3405,13 @@ figure.wp-block-table.is-style-stripes {
padding: 0 2rem 0 0;
}
/* STYLE: PLAIN */
.wp-block-quote.is-style-plain {
border-width: 0;
padding: 0.5rem 2rem;
}
/* STYLE: LARGE */
.wp-block-quote.is-large,

View File

@ -3429,6 +3429,13 @@ figure.wp-block-table.is-style-stripes {
/*rtl:end:ignore*/
}
/* STYLE: PLAIN */
.wp-block-quote.is-style-plain {
border-width: 0;
padding: 0.5rem 2rem;
}
/* STYLE: LARGE */
.wp-block-quote.is-large,