Make WordPress Core

Ticket #60020: 60020.patch

File 60020.patch, 5.3 KB (added by pitamdey, 14 months ago)

After applying this solution the issue is resolved

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

     
    126126
    127127.entry .entry-content {
    128128
    129         //! Paragraphs
    130         p.has-background {
    131                 padding: 20px 30px;
    132         }
    133 
    134129        //! Audio
    135130        .wp-block-audio {
    136131
  • wp-content/themes/twentynineteen/style-rtl.css

     
    54495449  }
    54505450}
    54515451
    5452 .entry .entry-content p.has-background {
    5453   padding: 20px 30px;
    5454 }
    5455 
    54565452.entry .entry-content .wp-block-audio {
    54575453  width: 100%;
    54585454}
  • wp-content/themes/twentynineteen/style.css

     
    54615461  }
    54625462}
    54635463
    5464 .entry .entry-content p.has-background {
    5465   padding: 20px 30px;
    5466 }
    5467 
    54685464.entry .entry-content .wp-block-audio {
    54695465  width: 100%;
    54705466}
  • wp-content/themes/twentytwentyone/assets/css/ie-editor.css

     
    14881488        line-height: 1.7;
    14891489}
    14901490
    1491 p.has-background {
    1492         padding: 20px;
    1493 }
    1494 
    14951491pre.wp-block-preformatted {
    14961492        overflow-x: auto;
    14971493        white-space: pre !important;
  • wp-content/themes/twentytwentyone/assets/css/ie.css

     
    36333633        line-height: 1.7;
    36343634}
    36353635
    3636 p.has-background {
    3637         padding: 20px;
    3638 }
    3639 
    36403636p.has-text-color a {
    36413637        color: #28303d;
    36423638}
  • wp-content/themes/twentytwentyone/assets/css/style-editor.css

     
    14001400        line-height: var(--wp--typography--line-height, var(--global--line-height-body));
    14011401}
    14021402
    1403 p.has-background {
    1404         padding: var(--global--spacing-unit);
    1405 }
    1406 
    14071403pre.wp-block-preformatted {
    14081404        overflow-x: auto;
    14091405        white-space: pre !important;
  • wp-content/themes/twentytwentyone/style-rtl.css

     
    27922792        line-height: var(--wp--typography--line-height, var(--global--line-height-body));
    27932793}
    27942794
    2795 p.has-background {
    2796         padding: var(--global--spacing-unit);
    2797 }
    2798 
    27992795p.has-text-color a {
    28002796        color: var(--wp--style--color--link, var(--global--color-primary));
    28012797}
  • wp-content/themes/twentytwentyone/style.css

     
    28022802        line-height: var(--wp--typography--line-height, var(--global--line-height-body));
    28032803}
    28042804
    2805 p.has-background {
    2806         padding: var(--global--spacing-unit);
    2807 }
    2808 
    28092805p.has-text-color a {
    28102806        color: var(--wp--style--color--link, var(--global--color-primary));
    28112807}
  • wp-includes/blocks/paragraph/style-rtl.css

     
    3333  overflow:hidden;
    3434}
    3535
    36 p.has-background{
    37   padding:1.25em 2.375em;
    38 }
    39 
    4036:where(p.has-text-color:not(.has-link-color)) a{
    4137  color:inherit;
    4238}
    43  No newline at end of file
  • wp-includes/blocks/paragraph/style.css

     
    3333  overflow:hidden;
    3434}
    3535
    36 p.has-background{
    37   padding:1.25em 2.375em;
    38 }
    39 
    4036:where(p.has-text-color:not(.has-link-color)) a{
    4137  color:inherit;
    4238}
    43  No newline at end of file
  • wp-includes/css/dist/block-library/style-rtl.css

     
    20782078  overflow:hidden;
    20792079}
    20802080
    2081 p.has-background{
    2082   padding:1.25em 2.375em;
    2083 }
    2084 
    20852081:where(p.has-text-color:not(.has-link-color)) a{
    20862082  color:inherit;
    20872083}
  • wp-includes/css/dist/block-library/style.css

     
    20782078  overflow:hidden;
    20792079}
    20802080
    2081 p.has-background{
    2082   padding:1.25em 2.375em;
    2083 }
    2084 
    20852081:where(p.has-text-color:not(.has-link-color)) a{
    20862082  color:inherit;
    20872083}