_table.scss 622 B

123456789101112131415161718192021222324
  1. .wp-block-table.is-style-stripes,
  2. .wp-block-table {
  3. figcaption { // See https://github.com/WordPress/gutenberg/issues/34650
  4. color: var(--wp--custom--color--primary);
  5. font-size: var(--wp--custom--table--figcaption--typography--font-size);
  6. text-align: center;
  7. }
  8. td, th {
  9. // See https://github.com/WordPress/gutenberg/issues/31261
  10. border: 1px solid;
  11. padding: calc(0.5*var(--wp--custom--gap--vertical)) calc(0.5*var(--wp--custom--gap--horizontal));
  12. }
  13. border-bottom: none;
  14. }
  15. .wp-block-table.is-style-stripes {
  16. tbody {
  17. tr:nth-child(odd) {
  18. background-color: var(--wp--custom--color--tertiary);
  19. }
  20. }
  21. }