Make WordPress Core

Ticket #56695: 56695.2.patch

File 56695.2.patch, 1.4 KB (added by nidhidhandhukiya, 11 months ago)

Updated the patch, This patch can reoslve the issue for both Pullquote & Quote block.

  • wp-content/themes/twentyeleven/editor-blocks.css

     
    551551:root .editor-styles-wrapper .has-white-background-color {
    552552        background-color: #fff;
    553553}
     554
     555.editor-styles-wrapper .wp-block-pullquote[style*="font-weight"] p,
     556.editor-styles-wrapper .wp-block-pullquote[style*="font-weight"] cite{
     557 font-weight: inherit;
     558 font-style: inherit;
     559}
     560
     561.editor-styles-wrapper .wp-block-quote[style*="font-weight"] p,
     562.editor-styles-wrapper .wp-block-quote[style*="font-weight"] cite{
     563   font-weight: inherit;
     564   font-style: inherit;
     565}
     566 No newline at end of file
  • wp-content/themes/twentyeleven/style.css

     
    28572857#ie8 section.featured-post .attachment-small-feature {
    28582858        max-width: none;
    28592859}
     2860
     2861.wp-block-pullquote[style*="font-weight"] p,
     2862.wp-block-pullquote[style*="font-weight"] cite{
     2863        font-weight: inherit;
     2864        font-style: inherit;
     2865}
     2866
     2867.wp-block-quote[style*="font-weight"] p,
     2868.wp-block-quote[style*="font-weight"] cite{
     2869        font-weight: inherit;
     2870        font-style: inherit;
     2871}
     2872 No newline at end of file