Make WordPress Core

Ticket #60872: 60872.1.patch

File 60872.1.patch, 463 bytes (added by pitamdey, 6 months ago)

In other's theme it is following different style like in some the default is text-decoration is underlined and in some it is none in both the side. So I am doing the changes particular for this theme only. So here is the patch that applied the changes in scss file

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

     
    10451045        .wp-block-pullquote.is-style-solid-color blockquote.has-white-color {
    10461046                color: #FFF;
    10471047        }
     1048
     1049        a.wp-block-read-more {
     1050                text-decoration: none;
     1051        }
    10481052}