@godxjp/ui 18.15.1 → 18.15.2
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.
|
@@ -346,6 +346,15 @@
|
|
|
346
346
|
.ui-table-bordered :is([data-slot="table-head"], [data-slot="table-cell"]):not(:last-child) {
|
|
347
347
|
border-inline-end: 1px solid var(--table-border-color, hsl(var(--border)));
|
|
348
348
|
}
|
|
349
|
+
|
|
350
|
+
/* A bordered table sitting FLUSH inside a Card already has the card's frame around it —
|
|
351
|
+
* its own outer frame doubles up as two nested rounded borders (measured on
|
|
352
|
+
* customer-inquiries detail: TABLE 1px inside .ui-card 1px, gh#305). Drop only the outer
|
|
353
|
+
* frame; the vertical column rules above and TableRow's horizontal rules stay, so the
|
|
354
|
+
* grid inside the card is unchanged. A bordered table NOT in a flush card keeps its frame. */
|
|
355
|
+
[data-slot="card-content"][data-flush] .ui-table-bordered {
|
|
356
|
+
border: 0;
|
|
357
|
+
}
|
|
349
358
|
}
|
|
350
359
|
|
|
351
360
|
@layer components {
|