@patternfly/patternfly 4.167.0 → 4.168.0
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/components/Table/table.css +8 -0
- package/components/Table/table.scss +16 -0
- package/docs/components/Table/examples/Table.md +899 -241
- package/package.json +1 -1
- package/patternfly-no-reset.css +8 -0
- package/patternfly.css +8 -0
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/docs/pages/modifiers.md +0 -86
package/package.json
CHANGED
package/patternfly-no-reset.css
CHANGED
|
@@ -24261,6 +24261,7 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
24261
24261
|
--pf-c-table--thead--m-nested-column-header--tr--PaddingTop: var(--pf-global--spacer--xs);
|
|
24262
24262
|
--pf-c-table--thead--m-nested-column-header--tr--PaddingBottom: var(--pf-global--spacer--xs);
|
|
24263
24263
|
--pf-c-table__subhead--Color: var(--pf-global--Color--200);
|
|
24264
|
+
--pf-c-table--m-striped__tr--BackgroundColor: var(--pf-global--BackgroundColor--light-200);
|
|
24264
24265
|
color: var(--pf-global--Color--100);
|
|
24265
24266
|
width: 100%;
|
|
24266
24267
|
background-color: var(--pf-c-table--BackgroundColor);
|
|
@@ -24302,6 +24303,13 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
24302
24303
|
content: "";
|
|
24303
24304
|
border-bottom: var(--pf-c-table--border-width--base) solid var(--pf-c-table--BorderColor);
|
|
24304
24305
|
}
|
|
24306
|
+
.pf-c-table.pf-m-striped:not(.pf-m-expandable) > tbody > tr:nth-child(odd), .pf-c-table.pf-m-striped.pf-m-expandable > tbody:nth-of-type(odd) > tr:not(.pf-c-table__expandable-row),
|
|
24307
|
+
.pf-c-table > .pf-m-striped > tr:nth-child(odd),
|
|
24308
|
+
.pf-c-table > .pf-m-striped-even > tr:nth-child(even),
|
|
24309
|
+
.pf-c-table tr.pf-m-striped {
|
|
24310
|
+
--pf-c-table__sticky-column--BackgroundColor: var(--pf-c-table--m-striped__tr--BackgroundColor);
|
|
24311
|
+
background: var(--pf-c-table--m-striped__tr--BackgroundColor);
|
|
24312
|
+
}
|
|
24305
24313
|
.pf-c-table tr:not(.pf-c-table__expandable-row) {
|
|
24306
24314
|
border-bottom: var(--pf-c-table--border-width--base) solid var(--pf-c-table--BorderColor);
|
|
24307
24315
|
}
|
package/patternfly.css
CHANGED
|
@@ -24383,6 +24383,7 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
24383
24383
|
--pf-c-table--thead--m-nested-column-header--tr--PaddingTop: var(--pf-global--spacer--xs);
|
|
24384
24384
|
--pf-c-table--thead--m-nested-column-header--tr--PaddingBottom: var(--pf-global--spacer--xs);
|
|
24385
24385
|
--pf-c-table__subhead--Color: var(--pf-global--Color--200);
|
|
24386
|
+
--pf-c-table--m-striped__tr--BackgroundColor: var(--pf-global--BackgroundColor--light-200);
|
|
24386
24387
|
color: var(--pf-global--Color--100);
|
|
24387
24388
|
width: 100%;
|
|
24388
24389
|
background-color: var(--pf-c-table--BackgroundColor);
|
|
@@ -24424,6 +24425,13 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
24424
24425
|
content: "";
|
|
24425
24426
|
border-bottom: var(--pf-c-table--border-width--base) solid var(--pf-c-table--BorderColor);
|
|
24426
24427
|
}
|
|
24428
|
+
.pf-c-table.pf-m-striped:not(.pf-m-expandable) > tbody > tr:nth-child(odd), .pf-c-table.pf-m-striped.pf-m-expandable > tbody:nth-of-type(odd) > tr:not(.pf-c-table__expandable-row),
|
|
24429
|
+
.pf-c-table > .pf-m-striped > tr:nth-child(odd),
|
|
24430
|
+
.pf-c-table > .pf-m-striped-even > tr:nth-child(even),
|
|
24431
|
+
.pf-c-table tr.pf-m-striped {
|
|
24432
|
+
--pf-c-table__sticky-column--BackgroundColor: var(--pf-c-table--m-striped__tr--BackgroundColor);
|
|
24433
|
+
background: var(--pf-c-table--m-striped__tr--BackgroundColor);
|
|
24434
|
+
}
|
|
24427
24435
|
.pf-c-table tr:not(.pf-c-table__expandable-row) {
|
|
24428
24436
|
border-bottom: var(--pf-c-table--border-width--base) solid var(--pf-c-table--BorderColor);
|
|
24429
24437
|
}
|