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.

git-svn-id: https://develop.svn.wordpress.org/trunk@47273 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ian Belanger 2020-02-11 19:36:56 +00:00
parent c7267a039f
commit e7382153fe
2 changed files with 6 additions and 5 deletions

View File

@ -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;
}

View File

@ -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;
}