From 3db14aa2ed4d42747f69e606bc446c4a963d2c5a Mon Sep 17 00:00:00 2001 From: Jb Audras Date: Thu, 16 Jun 2022 23:15:56 +0000 Subject: [PATCH] Twenty Nineteen: Ensure custom text color is reflected in the Editor for Quote block. This changes removes an hardcoded CSS color value for the Quote block in Twenty Nineteen's editor stylesheet. This ensures custom text color is fully reflected in the Editor for Quote block. Props nithi22, evildon, SergeyBiryukov, audrasjb. Fixes #55992. git-svn-id: https://develop.svn.wordpress.org/trunk@53515 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentynineteen/style-editor.css | 2 +- src/wp-content/themes/twentynineteen/style-editor.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-content/themes/twentynineteen/style-editor.css b/src/wp-content/themes/twentynineteen/style-editor.css index f4e49185fa..522bb790b6 100644 --- a/src/wp-content/themes/twentynineteen/style-editor.css +++ b/src/wp-content/themes/twentynineteen/style-editor.css @@ -1059,7 +1059,7 @@ figcaption, font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 0.71111em; line-height: 1.6; - color: #767676; + color: inherit; } /** === Pullquote === */ diff --git a/src/wp-content/themes/twentynineteen/style-editor.scss b/src/wp-content/themes/twentynineteen/style-editor.scss index 19523b16ed..db50c94383 100644 --- a/src/wp-content/themes/twentynineteen/style-editor.scss +++ b/src/wp-content/themes/twentynineteen/style-editor.scss @@ -443,7 +443,7 @@ figcaption, @include font-family( $font__heading ); font-size: $font__size-xs; line-height: 1.6; - color: $color__text-light; + color: inherit; } }