1234567891011121314151617181920212223242526272829303132333435 |
- .wp-block-table.is-style-stripes,
- .wp-block-table {
- th {
- font-weight: 400;
- }
- tbody td { // tbody adds the specificity needed to override the default Gutenberg styles
- border-bottom-width: 0;
- border-top-width: 0;
- vertical-align: top;
- border-color: var(--wp--preset--color--primary);
- }
- tr:first-child td {
- border-top-width: 1px;
- }
- tr:last-child td {
- border-bottom-width: 1px;
- }
- figcaption {
- color: var(--wp--preset--color--primary);
- }
- }
- .wp-block-table.is-style-stripes {
- tbody {
- tr:nth-child(odd) {
- background-color: var(--wp--preset--color--secondary);
- }
- }
- }
|