@pathscale/ui 1.1.10 → 1.1.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/table/table.css +15 -13
- package/package.json +1 -1
|
@@ -16,7 +16,9 @@
|
|
|
16
16
|
|
|
17
17
|
.table-root--primary {
|
|
18
18
|
background-color: var(--color-base-200);
|
|
19
|
-
|
|
19
|
+
padding-inline: 0.25rem;
|
|
20
|
+
padding-bottom: 0.25rem;
|
|
21
|
+
border-radius: calc(var(--radius-box, 1rem) * 1.25);
|
|
20
22
|
}
|
|
21
23
|
|
|
22
24
|
/* --------------------------------------------------------------------------
|
|
@@ -92,13 +94,13 @@
|
|
|
92
94
|
}
|
|
93
95
|
|
|
94
96
|
.table-root--secondary .table__column:first-child {
|
|
95
|
-
border-top-left-radius:
|
|
96
|
-
border-bottom-left-radius:
|
|
97
|
+
border-top-left-radius: 1rem;
|
|
98
|
+
border-bottom-left-radius: 1rem;
|
|
97
99
|
}
|
|
98
100
|
|
|
99
101
|
.table-root--secondary .table__column:last-child {
|
|
100
|
-
border-top-right-radius:
|
|
101
|
-
border-bottom-right-radius:
|
|
102
|
+
border-top-right-radius: 1rem;
|
|
103
|
+
border-bottom-right-radius: 1rem;
|
|
102
104
|
}
|
|
103
105
|
|
|
104
106
|
.table-root--secondary .table__body tr:first-child td:first-child,
|
|
@@ -194,20 +196,20 @@
|
|
|
194
196
|
/* --------------------------------------------------------------------------
|
|
195
197
|
Table Body (<tbody>)
|
|
196
198
|
-------------------------------------------------------------------------- */
|
|
197
|
-
.
|
|
198
|
-
border-top-left-radius:
|
|
199
|
+
.table__body tr:first-child td:first-child {
|
|
200
|
+
border-top-left-radius: 1rem;
|
|
199
201
|
}
|
|
200
202
|
|
|
201
|
-
.
|
|
202
|
-
border-top-right-radius:
|
|
203
|
+
.table__body tr:first-child td:last-child {
|
|
204
|
+
border-top-right-radius: 1rem;
|
|
203
205
|
}
|
|
204
206
|
|
|
205
|
-
.
|
|
206
|
-
border-bottom-left-radius:
|
|
207
|
+
.table__body tr:last-child td:first-child {
|
|
208
|
+
border-bottom-left-radius: 1rem;
|
|
207
209
|
}
|
|
208
210
|
|
|
209
|
-
.
|
|
210
|
-
border-bottom-right-radius:
|
|
211
|
+
.table__body tr:last-child td:last-child {
|
|
212
|
+
border-bottom-right-radius: 1rem;
|
|
211
213
|
}
|
|
212
214
|
|
|
213
215
|
/* --------------------------------------------------------------------------
|