Make WordPress Core

Ticket #59801: 59801.inherit-all.patch

File 59801.inherit-all.patch, 1.9 KB (added by sabernhardt, 18 months ago)

inherits text color for both blockquote and the citation, removes Pullquote-related changes from r58368

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

     
    320320/* Pullquote */
    321321
    322322.wp-block-pullquote {
    323         border: 0;
     323        border: 0 solid;
    324324}
    325325
    326326.wp-block-pullquote blockquote {
    327327        border: 0;
     328        color: inherit;
    328329        margin-left: 0;
    329330        margin-right: 0;
    330331        padding-left: 0;
     
    332333}
    333334
    334335.wp-block-pullquote cite {
    335         color: #333;
     336        color: inherit;
    336337        font-family: "Noto Sans", sans-serif;
    337338        font-size: 15px;
    338339        font-style: normal;
     
    340341        text-transform: none;
    341342}
    342343
    343 .wp-block-pullquote[class*="-text-color"] blockquote cite,
    344 .wp-block-pullquote[style*="color"] blockquote cite {
    345         color: inherit;
    346 }
    347 
    348344@media screen and (min-width: 46.25em) {
    349345        .wp-block-pullquote cite {
    350346                font-size: 17px;
  • src/wp-content/themes/twentyfifteen/css/editor-blocks.css

     
    675675/* Pullquote */
    676676
    677677.wp-block-pullquote,
    678 .editor-block-list__block .wp-block-pullquote blockquote {
    679         border: 0;
     678.editor-styles-wrapper .wp-block-pullquote blockquote {
     679        border: 0 solid;
     680        color: inherit;
    680681        margin: 0;
    681682        padding-left: 0;
    682683}
    683684
    684685.wp-block-pullquote .wp-block-pullquote__citation {
    685         color: #333;
     686        color: inherit;
    686687        font-family: "Noto Sans", sans-serif;
    687688        font-size: 15px;
    688689        font-style: normal;
     
    690691        text-transform: none;
    691692}
    692693
    693 .wp-block-pullquote[class*="-text-color"] blockquote cite,
    694 .wp-block-pullquote[style*="color"] blockquote cite {
    695         color: inherit;
    696 }
    697 
    698694@media screen and (min-width: 46.25em) {
    699695        .wp-block-pullquote .wp-block-pullquote__citation {
    700696                font-size: 17px;