Make WordPress Core

Ticket #58022: 58022.alternative.patch

File 58022.alternative.patch, 1022 bytes (added by sabernhardt, 15 months ago)

only fixes the default border color on the front

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

     
    33513351
    33523352/* Block: Table ------------------------------ */
    33533353
     3354.wp-block-table table:where(:not(.has-text-color)) * {
     3355        border-color: inherit;
     3356}
     3357
    33543358.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    33553359        background: #dcd7ca;
    33563360}
  • src/wp-content/themes/twentytwenty/style.css

     
    33713371
    33723372/* Block: Table ------------------------------ */
    33733373
     3374.wp-block-table table:where(:not(.has-text-color)) * {
     3375        border-color: inherit;
     3376}
     3377
    33743378.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    33753379        background: #dcd7ca;
    33763380}