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.

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


git-svn-id: http://core.svn.wordpress.org/trunk@58213 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Tammie Lister 2024-07-27 10:14:14 +00:00
parent 40bb20fd83
commit 30cf05b738
5 changed files with 25 additions and 1 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,

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.7-alpha-58816';
$wp_version = '6.7-alpha-58817';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.