Make WordPress Core

Ticket #55992: 55992.diff

File 55992.diff, 1.0 KB (added by evildon, 3 years ago)

Fix quote citation text colour not reflecting in editor

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

    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 b 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

    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 b 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