Make WordPress Core

Ticket #47019: 47019.3.diff

File 47019.3.diff, 1.1 KB (added by ianbelanger, 5 years ago)

Updates patch with with style fix for pullquote, border-left was not showing on front end

  • src/wp-content/themes/twentysixteen/css/blocks.css

     
    158158}
    159159
    160160.wp-block-pullquote blockquote {
    161         border-left: 0;
     161        color: #686868;
     162        border-left: 4px solid #1a1a1a;
    162163        margin: 0;
    163         padding: 0;
     164        padding: 0 0 0 24px;
    164165}
    165166
    166167.rtl .wp-block-pullquote blockquote {
    167         border-right: 0;
     168        border-left: none;
     169        border-right: 4px solid #1a1a1a;
     170        padding: 0 24px 0 0;
    168171}
    169172
    170173.wp-block-pullquote p {
    171         color: #686868;
    172174        font-size: 19px;
    173175        font-size: 1.1875rem;
    174176}
  • src/wp-content/themes/twentysixteen/css/editor-blocks.css

     
    505505}
    506506
    507507.wp-block-pullquote blockquote > .editor-rich-text p {
    508         color: #686868;
    509508        font-size: 19px;
    510509        font-size: 1.1875rem;
    511510}