diff --git a/src/wp-content/themes/twentyfourteen/css/blocks.css b/src/wp-content/themes/twentyfourteen/css/blocks.css index 6d04a59f41581..54db8efad0bf6 100644 --- a/src/wp-content/themes/twentyfourteen/css/blocks.css +++ b/src/wp-content/themes/twentyfourteen/css/blocks.css @@ -187,6 +187,15 @@ p.has-drop-cap:not(:focus)::first-letter { text-transform: none; } +.wp-block-pullquote.has-text-color blockquote, +.wp-block-pullquote.has-background blockquote, +.has-background .wp-block-pullquote blockquote, +.wp-block-pullquote.has-text-color cite, +.has-background .wp-block-pullquote cite, +.has-text-color .wp-block-pullquote__citation { + color: inherit; +} + .wp-block-pullquote.alignleft { margin-right: 1em; } diff --git a/src/wp-content/themes/twentyfourteen/css/editor-blocks.css b/src/wp-content/themes/twentyfourteen/css/editor-blocks.css index e611e16bb4009..bee982dd9ec77 100644 --- a/src/wp-content/themes/twentyfourteen/css/editor-blocks.css +++ b/src/wp-content/themes/twentyfourteen/css/editor-blocks.css @@ -364,10 +364,13 @@ p.has-drop-cap:not(:focus)::first-letter { /* Pullquote */ .wp-block-pullquote { - border: 0; margin: 0; } +.editor-styles-wrapper .wp-block-pullquote { + border: 0; +} + .wp-block-pullquote .wp-block-pullquote__citation { color: #2b2b2b; font-size: 16px; @@ -376,6 +379,15 @@ p.has-drop-cap:not(:focus)::first-letter { text-transform: none; } +.wp-block-pullquote.has-text-color blockquote, +.wp-block-pullquote.has-background blockquote, +.has-background .wp-block-pullquote blockquote, +.wp-block-pullquote.has-text-color cite, +.has-background .wp-block-pullquote cite, +.has-text-color .wp-block-pullquote__citation { + color: inherit; +} + .wp-block-pullquote.alignleft blockquote > .editor-rich-text p, .wp-block-pullquote.alignright blockquote > .editor-rich-text p { font-size: 20px;