Ticket #59801: 59801.re-establish-color.patch
| File 59801.re-establish-color.patch, 1.8 KB (added by , 18 months ago) |
|---|
-
src/wp-content/themes/twentyfifteen/css/blocks.css
320 320 /* Pullquote */ 321 321 322 322 .wp-block-pullquote { 323 border: 0; 323 border: 0 solid; 324 color: #707070; 325 color: rgba(51, 51, 51, 0.7); 324 326 } 325 327 326 328 .wp-block-pullquote blockquote { … … 331 333 padding-right: 0; 332 334 } 333 335 336 .wp-block-pullquote.has-text-color blockquote { 337 color: inherit; 338 } 339 334 340 .wp-block-pullquote cite { 335 341 color: #333; 336 342 font-family: "Noto Sans", sans-serif; … … 340 346 text-transform: none; 341 347 } 342 348 343 .wp-block-pullquote[class*="-text-color"] blockquote cite, 344 .wp-block-pullquote[style*="color"] blockquote cite { 349 .wp-block-pullquote.has-background cite { 345 350 color: inherit; 346 351 } 347 352 -
src/wp-content/themes/twentyfifteen/css/editor-blocks.css
675 675 /* Pullquote */ 676 676 677 677 .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: #707070; 681 color: rgba(51, 51, 51, 0.7); 680 682 margin: 0; 681 683 padding-left: 0; 682 684 } 683 685 686 .wp-block-pullquote.has-text-color blockquote { 687 color: inherit; 688 } 689 684 690 .wp-block-pullquote .wp-block-pullquote__citation { 685 691 color: #333; 686 692 font-family: "Noto Sans", sans-serif; … … 690 696 text-transform: none; 691 697 } 692 698 693 .wp-block-pullquote[class*="-text-color"] blockquote cite, 694 .wp-block-pullquote[style*="color"] blockquote cite { 699 .wp-block-pullquote.has-background cite { 695 700 color: inherit; 696 701 } 697 702