Skip to content

Commit 3db14aa

Browse files
committed
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
1 parent 229a578 commit 3db14aa

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/wp-content/themes/twentynineteen/style-editor.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1059,7 +1059,7 @@ figcaption,
10591059
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
10601060
font-size: 0.71111em;
10611061
line-height: 1.6;
1062-
color: #767676;
1062+
color: inherit;
10631063
}
10641064

10651065
/** === Pullquote === */

src/wp-content/themes/twentynineteen/style-editor.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ figcaption,
443443
@include font-family( $font__heading );
444444
font-size: $font__size-xs;
445445
line-height: 1.6;
446-
color: $color__text-light;
446+
color: inherit;
447447
}
448448
}
449449

0 commit comments

Comments
 (0)