Make WordPress Core

Ticket #56011: 56011.border-padding.diff

File 56011.border-padding.diff, 2.0 KB (added by sabernhardt, 2 months ago)

removes the border and sets the same value for both left and right padding (2rem, or 20px)

  • src/wp-content/themes/twentytwenty/assets/css/editor-style-block-rtl.css

     
    683683        letter-spacing: inherit;
    684684}
    685685
     686.editor-styles-wrapper .wp-block-quote.is-style-plain {
     687        border-width: 0;
     688        padding: 5px 20px;
     689}
     690
    686691.editor-styles-wrapper .wp-block-quote.is-style-large {
    687692        border: none;
    688693        padding: 0;
  • src/wp-content/themes/twentytwenty/assets/css/editor-style-block.css

     
    687687        letter-spacing: inherit;
    688688}
    689689
     690.editor-styles-wrapper .wp-block-quote.is-style-plain {
     691        border-width: 0;
     692        padding: 5px 20px;
     693}
     694
    690695.editor-styles-wrapper .wp-block-quote.is-style-large {
    691696        border: none;
    692697        padding: 0;
  • src/wp-content/themes/twentytwenty/style-rtl.css

     
    34033403        padding: 0 2rem 0 0;
    34043404}
    34053405
     3406/* STYLE: PLAIN */
     3407
     3408.wp-block-quote.is-style-plain {
     3409        border-width: 0;
     3410        padding: 0.5rem 2rem;
     3411}
     3412
    34063413/* STYLE: LARGE */
    34073414
    34083415.wp-block-quote.is-large,
  • src/wp-content/themes/twentytwenty/style.css

     
    34273427        /*rtl:end:ignore*/
    34283428}
    34293429
     3430/* STYLE: PLAIN */
     3431
     3432.wp-block-quote.is-style-plain {
     3433        border-width: 0;
     3434        padding: 0.5rem 2rem;
     3435}
     3436
    34303437/* STYLE: LARGE */
    34313438
    34323439.wp-block-quote.is-large,