Make WordPress Core

Ticket #51090: 51090-2.patch

File 51090-2.patch, 1.7 KB (added by wpamitkumar, 4 years ago)

Please check this patch for WordPress/wordpress-develop git repo.

  • 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 ae465850ff..473c3e4e20 100644
    a b Twenty Nineteen Editor Styles 
    77@import "sass/variables-site/variables-site";
    88@import "sass/mixins/mixins-master";
    99
     10:root {
     11        /** === Custom foreground colors === */
     12        .has-primary-color,
     13        .wp-block-pullquote blockquote.has-primary-color,
     14        .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color,
     15        .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color > p {
     16                color: $color__link;
     17        }
     18
     19        .has-secondary-color,
     20        .wp-block-pullquote blockquote.has-secondary-color,
     21        .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color,
     22        .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color > p {
     23                color: $color__border-link-hover;
     24        }
     25
     26        .has-dark-gray-color,
     27        .wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color,
     28        .wp-block-pullquote.is-style-solid-color blockquote.has-dark-gray-color > p {
     29                color: $color__text-main;
     30        }
     31
     32        .has-light-gray-color,
     33        .wp-block-pullquote blockquote.has-light-gray-color,
     34        .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color,
     35        .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color > p {
     36                color: $color__text-light;
     37        }
     38
     39        .has-white-color,
     40        .wp-block-pullquote blockquote.has-white-color,
     41        .wp-block-pullquote.is-style-solid-color blockquote.has-white-color {
     42                color: #FFF;
     43        }
     44}
     45
    1046/** === Editor Frame === */
    1147
    1248body {