_editor.scss 411 B

1234567891011121314151617
  1. table,
  2. .wp-block-table {
  3. th {
  4. @include font-family( map-deep-get($config-heading, "font", "family") );
  5. }
  6. td,
  7. th {
  8. padding: calc( 0.5 * #{map-deep-get($config-global, "spacing", "unit")} );
  9. }
  10. &.is-style-stripes tbody tr:nth-child(odd) {
  11. background-color: #{map-deep-get($config-global, "color", "border", "light")};
  12. color: #{map-deep-get($config-global, "color", "foreground", "default")};
  13. }
  14. }