diff --git a/src/wp-content/themes/twentysixteen/css/blocks.css b/src/wp-content/themes/twentysixteen/css/blocks.css
index 9ddea8073f..81a001b618 100644
a
|
b
|
p.has-drop-cap:not(:focus)::first-letter { |
198 | 198 | .wp-block-table { |
199 | 199 | border-collapse: separate; |
200 | 200 | border-spacing: 0; |
201 | | border-width: 1px 0 0 1px; |
| 201 | border-width: inherit; |
202 | 202 | margin: 0 0 1.75em; |
203 | 203 | table-layout: fixed; |
204 | 204 | width: 100%; |
… |
… |
p.has-drop-cap:not(:focus)::first-letter { |
220 | 220 | border-width: 0 1px 1px 0; |
221 | 221 | } |
222 | 222 | |
| 223 | .wp-block-table.is-style-stripes { |
| 224 | border-bottom: none; |
| 225 | } |
| 226 | |
| 227 | .wp-block-table.is-style-stripes table { |
| 228 | border-width: 1px; |
| 229 | } |
| 230 | |
223 | 231 | .rtl .wp-block-table th, |
224 | 232 | .rtl .wp-block-table td { |
225 | 233 | text-align: right; |
diff --git a/src/wp-content/themes/twentysixteen/css/editor-blocks.css b/src/wp-content/themes/twentysixteen/css/editor-blocks.css
index 4bf8cbf54f..f363f52517 100644
a
|
b
|
Description: Used to style blocks in the editor. |
531 | 531 | padding: 0; |
532 | 532 | } |
533 | 533 | |
| 534 | .wp-block-table.is-style-stripes { |
| 535 | border-bottom: none; |
| 536 | } |
| 537 | |
| 538 | .wp-block-table.is-style-stripes table { |
| 539 | border-width: 1px; |
| 540 | } |
| 541 | |
534 | 542 | .rtl .wp-block-table th, |
535 | 543 | .rtl .wp-block-table td { |
536 | 544 | text-align: right; |