Make WordPress Core

Ticket #49410: 49410.1.diff

File 49410.1.diff, 2.9 KB (added by ianbelanger, 5 years ago)

Includes style.css changes, first npm run build had line ending issues

  • src/wp-content/themes/twentynineteen/sass/blocks/_blocks.scss

     
    998998
    999999        //! Custom foreground colors
    10001000        .has-primary-color,
     1001        .wp-block-pullquote blockquote.has-primary-color,
    10011002        .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color,
    10021003        .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color > p {
    10031004                color: $color__link;
     
    10041005        }
    10051006
    10061007        .has-secondary-color,
     1008        .wp-block-pullquote blockquote.has-secondary-color,
    10071009        .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color,
    10081010        .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color > p {
    10091011                color: $color__border-link-hover;
     
    10161018        }
    10171019
    10181020        .has-light-gray-color,
     1021        .wp-block-pullquote blockquote.has-light-gray-color,
    10191022        .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color,
    10201023        .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color > p {
    10211024                color: $color__text-light;
     
    10221025        }
    10231026
    10241027        .has-white-color,
     1028        .wp-block-pullquote blockquote.has-white-color,
    10251029        .wp-block-pullquote.is-style-solid-color blockquote.has-white-color {
    10261030                color: #FFF;
    10271031        }
  • src/wp-content/themes/twentynineteen/style.css

     
    62956295}
    62966296
    62976297.entry .entry-content .has-primary-color,
     6298.entry .entry-content .wp-block-pullquote blockquote.has-primary-color,
    62986299.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color,
    62996300.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-primary-color > p {
    63006301  color: #0073aa;
     
    63016302}
    63026303
    63036304.entry .entry-content .has-secondary-color,
     6305.entry .entry-content .wp-block-pullquote blockquote.has-secondary-color,
    63046306.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color,
    63056307.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-secondary-color > p {
    63066308  color: #005177;
     
    63136315}
    63146316
    63156317.entry .entry-content .has-light-gray-color,
     6318.entry .entry-content .wp-block-pullquote blockquote.has-light-gray-color,
    63166319.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color,
    63176320.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-light-gray-color > p {
    63186321  color: #767676;
     
    63196322}
    63206323
    63216324.entry .entry-content .has-white-color,
     6325.entry .entry-content .wp-block-pullquote blockquote.has-white-color,
    63226326.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote.has-white-color {
    63236327  color: #FFF;
    63246328}