Bundled Themes: Twenty Sixteen text color setting in pullquote block not applied.
Fixes the pullquote color setting by moving `color` from `blockquote p` to `blockquote`. Also adds the border-left to the front-end stylesheet to match the editor. Also adds styles for rtl pullquote. Props kokkieh, desrosj, mukesh27, khushbu19, disillusia, aliveic, abrightclearweb, SergeyBiryukov. Fixes #47019. Built from https://develop.svn.wordpress.org/trunk@47273 git-svn-id: http://core.svn.wordpress.org/trunk@47073 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ae102b2487
commit
4489fb7b36
|
@ -158,17 +158,19 @@ p.has-drop-cap:not(:focus)::first-letter {
|
|||
}
|
||||
|
||||
.wp-block-pullquote blockquote {
|
||||
border-left: 0;
|
||||
color: #686868;
|
||||
border-left: 4px solid #1a1a1a;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
padding: 0 0 0 24px;
|
||||
}
|
||||
|
||||
.rtl .wp-block-pullquote blockquote {
|
||||
border-right: 0;
|
||||
border-left: none;
|
||||
border-right: 4px solid #1a1a1a;
|
||||
padding: 0 24px 0 0;
|
||||
}
|
||||
|
||||
.wp-block-pullquote p {
|
||||
color: #686868;
|
||||
font-size: 19px;
|
||||
font-size: 1.1875rem;
|
||||
}
|
||||
|
|
|
@ -505,7 +505,6 @@ Description: Used to style blocks in the editor.
|
|||
}
|
||||
|
||||
.wp-block-pullquote blockquote > .editor-rich-text p {
|
||||
color: #686868;
|
||||
font-size: 19px;
|
||||
font-size: 1.1875rem;
|
||||
}
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.4-alpha-47272';
|
||||
$wp_version = '5.4-alpha-47273';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue