Author: Adam Argyle [argyle@google.com]
Committer: GitHub [noreply@github.com] Tue, 28 Nov 2023 16:43:12 +0000
Hash: f5d7e09144d1c4d01b028b0ed4a53c8131853b76
Timestamp: Tue, 28 Nov 2023 16:43:12 +0000 (9 months ago)

+8 -8 +/-1 browse
fixes #440 (#441)
fixes #440 (#441)

1diff --git a/src/extra/normalize.src.css b/src/extra/normalize.src.css
2index 8c43b97..a55fa8f 100644
3--- a/src/extra/normalize.src.css
4+++ b/src/extra/normalize.src.css
5 @@ -305,26 +305,26 @@
6 }
7
8 :where(table:not(:has(tfoot)) tr:last-child td:first-child) {
9- border-bottom-left-radius: var(--nice-inner-radius);
10+ border-end-start-radius: var(--nice-inner-radius);
11 }
12
13 :where(table:not(:has(tfoot)) tr:last-child td:last-child) {
14- border-bottom-right-radius: var(--nice-inner-radius);
15+ border-end-end-radius: var(--nice-inner-radius);
16 }
17
18- :where(table thead th:first-child) {
19- border-top-left-radius: var(--nice-inner-radius);
20+ :where(table thead tr:first-child th:first-child) {
21+ border-start-start-radius: var(--nice-inner-radius);
22 }
23
24- :where(table thead th:last-child) {
25- border-top-right-radius: var(--nice-inner-radius);
26+ :where(table thead tr:first-child th:last-child) {
27+ border-start-end-radius: var(--nice-inner-radius);
28 }
29
30- :where(tfoot th:first-of-type) {
31+ :where(tfoot tr:last-child :is(th,td):first-of-type) {
32 border-end-start-radius: var(--nice-inner-radius);
33 }
34
35- :where(tfoot th:last-of-type) {
36+ :where(tfoot tr:last-child :is(th,td):last-of-type) {
37 border-end-end-radius: var(--nice-inner-radius);
38 }
39