123456789101112131415161718192021222324 |
- .wp-block-table.is-style-stripes,
- .wp-block-table {
- figcaption { // See https://github.com/WordPress/gutenberg/issues/34650
- color: var(--wp--custom--color--primary);
- font-size: var(--wp--custom--table--figcaption--typography--font-size);
- text-align: center;
- }
- td, th {
- // See https://github.com/WordPress/gutenberg/issues/31261
- border: 1px solid;
- padding: calc(0.5*var(--wp--custom--gap--vertical)) calc(0.5*var(--wp--custom--gap--horizontal));
- }
- border-bottom: none;
- }
- .wp-block-table.is-style-stripes {
- tbody {
- tr:nth-child(odd) {
- background-color: var(--wp--custom--color--tertiary);
- }
- }
- }
|