Make WordPress Core

Ticket #52129: 52129.patch

File 52129.patch, 1.0 KB (added by poena, 4 years ago)

Add text color to rows with background color.

  • wp-content/themes/twentytwentyone/assets/sass/05-blocks/table/_editor.scss

     
    2727
    2828                tbody tr:nth-child(odd) {
    2929                        background-color: var(--table--stripes-background-color);
     30                        color: var(--table--has-background-text-color);
    3031                }
    3132        }
    3233}
  • wp-content/themes/twentytwentyone/assets/sass/05-blocks/table/_style.scss

     
    3131
    3232                tbody tr:nth-child(odd) {
    3333                        background-color: var(--table--stripes-background-color);
     34                        color: var(--table--has-background-text-color);
    3435                }
    3536        }
    3637}