Twenty Sixteen: Fixes quote block border not changing color.
The border was not changing color when it was changed. This brings that in. It is worth noting the original theme design did not have this but as noted in the ticket this has been in the quote block for about two years so matching the current block styling in this case makes sense. Props umesh84, desrosj, sabernhardt. Fixes #56565. Built from https://develop.svn.wordpress.org/trunk@58728 git-svn-id: http://core.svn.wordpress.org/trunk@58130 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a8517c8293
commit
9d3bf29704
|
@ -305,6 +305,10 @@ figure[class*="wp-block-"] > figcaption {
|
|||
padding: 0 0 0 1.263157895em;
|
||||
}
|
||||
|
||||
.editor-styles-wrapper .wp-block-quote {
|
||||
border-color: currentColor;
|
||||
}
|
||||
|
||||
.wp-block-quote:not(.is-large):not(.is-style-large).alignleft,
|
||||
.wp-block-quote:not(.is-large):not(.is-style-large).alignright {
|
||||
border-left: 0;
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.7-alpha-58727';
|
||||
$wp_version = '6.7-alpha-58728';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue