Make WordPress Core

Ticket #63860: 63860.patch

File 63860.patch, 2.7 KB (added by nidhidhandhukiya, 9 months ago)
  • wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css

     
    792792.editor-styles-wrapper .wp-block-pullquote {
    793793        border: 0 solid;
    794794        color: inherit;
    795         padding: 0;
     795        padding: 10px;
    796796        position: relative;
    797797        text-align: center;
    798798}
     
    812812        width: 44px;
    813813}
    814814
     815.editor-styles-wrapper .wp-block-pullquote.has-text-align-right::before {
     816    margin: 0 0 1.5rem auto;
     817}
     818.editor-styles-wrapper .wp-block-pullquote.has-text-align-left::before {
     819    margin: 0 auto 1.5rem 0;
     820}
     821
    815822.editor-styles-wrapper .wp-block .wp-block-pullquote p {
    816823        font-family: inherit;
    817824        font-size: 28px;
  • wp-content/themes/twentytwenty/assets/css/editor-style-block.css

     
    796796.editor-styles-wrapper .wp-block-pullquote {
    797797        border: 0 solid;
    798798        color: inherit;
    799         padding: 0;
     799        padding: 10px;
    800800        position: relative;
    801801        text-align: center;
    802802}
     
    815815        height: 44px;
    816816        width: 44px;
    817817}
     818.editor-styles-wrapper .wp-block-pullquote.has-text-align-right::before {
     819    margin: 0 0 1.5rem auto;
     820}
     821.editor-styles-wrapper .wp-block-pullquote.has-text-align-left::before {
     822    margin: 0 auto 1.5rem 0;
     823}
    818824
    819825.editor-styles-wrapper .wp-block .wp-block-pullquote p {
    820826        font-family: inherit;
  • wp-content/themes/twentytwenty/style-rtl.css

     
    64666466                width: calc(100% - 8rem);
    64676467        }
    64686468}
     6469.wp-block-pullquote.has-text-align-right::before {
     6470    margin: 0 0 1.5rem auto;
     6471}
     6472.wp-block-pullquote.has-text-align-left::before {
     6473    margin: 0 auto 1.5rem 0;
     6474}
     6475.wp-block-pullquote{
     6476        padding:10px;
     6477}
     6478 No newline at end of file
  • wp-content/themes/twentytwenty/style.css

     
    65826582                width: calc(100% - 8rem);
    65836583        }
    65846584}
     6585.wp-block-pullquote.has-text-align-right::before {
     6586    margin: 0 0 1.5rem auto;
     6587}
     6588.wp-block-pullquote.has-text-align-left::before {
     6589    margin: 0 auto 1.5rem 0;
     6590}
     6591.wp-block-pullquote{
     6592        padding:10px;
     6593}
     6594 No newline at end of file