@patternfly/patternfly 4.197.0 → 4.198.1
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/Card/card.css +20 -0
- package/components/Card/card.scss +21 -0
- package/components/Card/themes/dark/card.scss +13 -0
- package/components/Table/table.css +25 -9
- package/components/Table/table.scss +46 -11
- package/docs/components/Card/examples/Card.md +22 -0
- package/docs/components/Table/examples/Table.md +1176 -5
- package/package.json +1 -1
- package/patternfly-no-reset.css +75 -9
- package/patternfly.css +75 -9
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/package.json
CHANGED
package/patternfly-no-reset.css
CHANGED
|
@@ -8173,6 +8173,8 @@ button.pf-c-breadcrumb__link {
|
|
|
8173
8173
|
--pf-c-card__header--m-toggle-right--toggle--MarginRight: calc(var(--pf-global--spacer--form-element) * -1);
|
|
8174
8174
|
--pf-c-card__header--m-toggle-right--toggle--MarginLeft: var(--pf-global--spacer--xs);
|
|
8175
8175
|
--pf-c-card__header--m-toggle-right--actions--MarginRight: 0;
|
|
8176
|
+
--pf-c-card__input--focus--BorderWidth: var(--pf-global--BorderWidth--md);
|
|
8177
|
+
--pf-c-card__input--focus--BorderColor: var(--pf-global--primary-color--100);
|
|
8176
8178
|
display: flex;
|
|
8177
8179
|
flex-direction: column;
|
|
8178
8180
|
background-color: var(--pf-c-card--BackgroundColor);
|
|
@@ -8399,10 +8401,58 @@ button.pf-c-breadcrumb__link {
|
|
|
8399
8401
|
font-size: var(--pf-c-card__footer--FontSize);
|
|
8400
8402
|
}
|
|
8401
8403
|
|
|
8404
|
+
.pf-c-card__sr-input:focus + .pf-c-card::after {
|
|
8405
|
+
position: absolute;
|
|
8406
|
+
top: 0;
|
|
8407
|
+
right: 0;
|
|
8408
|
+
bottom: 0;
|
|
8409
|
+
left: 0;
|
|
8410
|
+
content: "";
|
|
8411
|
+
border: var(--pf-c-card__input--focus--BorderWidth) solid var(--pf-c-card__input--focus--BorderColor);
|
|
8412
|
+
}
|
|
8413
|
+
|
|
8402
8414
|
.pf-m-overpass-font .pf-c-card .pf-c-card__title {
|
|
8403
8415
|
font-weight: var(--pf-global--FontWeight--normal);
|
|
8404
8416
|
}
|
|
8405
8417
|
|
|
8418
|
+
:where(.pf-theme-dark) .pf-c-wizard__header, :where(.pf-theme-dark) .pf-c-page__sidebar-body.pf-m-menu .pf-c-context-selector,
|
|
8419
|
+
:where(.pf-theme-dark) .pf-c-page__main-section[class*=pf-m-dark-],
|
|
8420
|
+
:where(.pf-theme-dark) .pf-c-page__header, :where(.pf-theme-dark) .pf-c-masthead, :where(.pf-theme-dark) .pf-c-login__header,
|
|
8421
|
+
:where(.pf-theme-dark) .pf-c-login__footer, :where(.pf-theme-dark) .pf-c-log-viewer.pf-m-dark .pf-c-log-viewer__main, :where(.pf-theme-dark) .pf-c-about-modal-box, :where(.pf-theme-dark) .pf-c-banner {
|
|
8422
|
+
--pf-global--Color--100: #e0e0e0;
|
|
8423
|
+
--pf-global--Color--200: #aaabac;
|
|
8424
|
+
--pf-global--BorderColor--100: #444548;
|
|
8425
|
+
--pf-global--primary-color--100: #1fa7f8;
|
|
8426
|
+
--pf-global--link--Color: #1fa7f8;
|
|
8427
|
+
--pf-global--link--Color--hover: #73bcf7;
|
|
8428
|
+
--pf-global--BackgroundColor--100: #1b1d21;
|
|
8429
|
+
}
|
|
8430
|
+
:where(.pf-theme-dark) .pf-c-wizard__header .pf-c-button, :where(.pf-theme-dark) .pf-c-page__sidebar-body.pf-m-menu .pf-c-context-selector .pf-c-button,
|
|
8431
|
+
:where(.pf-theme-dark) .pf-c-page__main-section[class*=pf-m-dark-] .pf-c-button,
|
|
8432
|
+
:where(.pf-theme-dark) .pf-c-page__header .pf-c-button, :where(.pf-theme-dark) .pf-c-masthead .pf-c-button, :where(.pf-theme-dark) .pf-c-login__header .pf-c-button,
|
|
8433
|
+
:where(.pf-theme-dark) .pf-c-login__footer .pf-c-button, :where(.pf-theme-dark) .pf-c-log-viewer.pf-m-dark .pf-c-log-viewer__main .pf-c-button, :where(.pf-theme-dark) .pf-c-about-modal-box .pf-c-button, :where(.pf-theme-dark) .pf-c-banner .pf-c-button {
|
|
8434
|
+
--pf-c-button--m-primary--Color: var(--pf-global--Color--light-100);
|
|
8435
|
+
--pf-c-button--m-primary--hover--Color: var(--pf-global--Color--light-100);
|
|
8436
|
+
--pf-c-button--m-primary--focus--Color: var(--pf-global--Color--light-100);
|
|
8437
|
+
--pf-c-button--m-primary--active--Color: var(--pf-global--Color--light-100);
|
|
8438
|
+
--pf-c-button--m-primary--BackgroundColor: var(--pf-global--primary-color--300);
|
|
8439
|
+
--pf-c-button--m-primary--hover--BackgroundColor: var(--pf-global--primary-color--200);
|
|
8440
|
+
--pf-c-button--m-primary--focus--BackgroundColor: var(--pf-global--primary-color--200);
|
|
8441
|
+
--pf-c-button--m-primary--active--BackgroundColor: var(--pf-global--primary-color--200);
|
|
8442
|
+
--pf-c-button--m-secondary--Color: var(--pf-global--primary-color--100);
|
|
8443
|
+
--pf-c-button--m-secondary--hover--Color: var(--pf-global--primary-color--100);
|
|
8444
|
+
--pf-c-button--m-secondary--focus--Color: var(--pf-global--primary-color--100);
|
|
8445
|
+
--pf-c-button--m-secondary--active--Color: var(--pf-global--primary-color--100);
|
|
8446
|
+
}
|
|
8447
|
+
|
|
8448
|
+
:where(.pf-theme-dark) .pf-c-card {
|
|
8449
|
+
--pf-c-card--BoxShadow: var(--pf-global--BoxShadow--md);
|
|
8450
|
+
--pf-c-card--m-hoverable-raised--hover--BoxShadow: var(--pf-global--BoxShadow--lg);
|
|
8451
|
+
--pf-c-card--m-selectable-raised--hover--BoxShadow: var(--pf-global--BoxShadow--lg);
|
|
8452
|
+
--pf-c-card--m-selectable-raised--focus--BoxShadow: var(--pf-global--BoxShadow--lg);
|
|
8453
|
+
--pf-c-card--m-selectable-raised--active--BoxShadow: var(--pf-global--BoxShadow--lg);
|
|
8454
|
+
}
|
|
8455
|
+
|
|
8406
8456
|
.pf-c-check {
|
|
8407
8457
|
--pf-c-check--GridGap: var(--pf-global--spacer--xs) var(--pf-global--spacer--sm);
|
|
8408
8458
|
--pf-c-check__label--disabled--Color: var(--pf-global--disabled-color--100);
|
|
@@ -27034,12 +27084,14 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27034
27084
|
border-bottom: 0;
|
|
27035
27085
|
}
|
|
27036
27086
|
.pf-c-table.pf-m-sticky-header > thead > tr > * {
|
|
27087
|
+
z-index: var(--pf-global--ZIndex--xs);
|
|
27088
|
+
}
|
|
27089
|
+
.pf-c-table.pf-m-sticky-header > thead:not(.pf-m-nested-column-header) > tr > * {
|
|
27037
27090
|
position: sticky;
|
|
27038
27091
|
top: 0;
|
|
27039
|
-
z-index: var(--pf-global--ZIndex--xs);
|
|
27040
27092
|
background: var(--pf-c-table--BackgroundColor);
|
|
27041
27093
|
}
|
|
27042
|
-
.pf-c-table.pf-m-sticky-header > thead > tr > *::after {
|
|
27094
|
+
.pf-c-table.pf-m-sticky-header > thead:not(.pf-m-nested-column-header) > tr > *::after {
|
|
27043
27095
|
position: absolute;
|
|
27044
27096
|
right: 0;
|
|
27045
27097
|
bottom: 0;
|
|
@@ -27047,6 +27099,27 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27047
27099
|
content: "";
|
|
27048
27100
|
border-bottom: var(--pf-c-table--border-width--base) solid var(--pf-c-table--BorderColor);
|
|
27049
27101
|
}
|
|
27102
|
+
.pf-c-table.pf-m-sticky-header > .pf-m-nested-column-header {
|
|
27103
|
+
position: sticky;
|
|
27104
|
+
top: 0;
|
|
27105
|
+
z-index: var(--pf-global--ZIndex--xs);
|
|
27106
|
+
background: var(--pf-c-table--BackgroundColor);
|
|
27107
|
+
}
|
|
27108
|
+
.pf-c-table.pf-m-sticky-header > .pf-m-nested-column-header > .pf-m-border-row {
|
|
27109
|
+
height: var(--pf-c-table--border-width--base);
|
|
27110
|
+
background-color: var(--pf-c-table--BorderColor);
|
|
27111
|
+
}
|
|
27112
|
+
.pf-c-table.pf-m-sticky-header > .pf-m-nested-column-header tr:not(:nth-last-child(2)) th:not([rowspan]),
|
|
27113
|
+
.pf-c-table.pf-m-sticky-header > .pf-m-nested-column-header tr:not(:nth-last-child(2)) td:not([rowspan]) {
|
|
27114
|
+
--pf-c-table--cell--PaddingBottom: var(--pf-c-table--thead--m-nested-column-header--tr--PaddingBottom);
|
|
27115
|
+
}
|
|
27116
|
+
.pf-c-table:not(.pf-m-sticky-header) > .pf-m-nested-column-header tr:not(:last-child) {
|
|
27117
|
+
border-bottom: 0;
|
|
27118
|
+
}
|
|
27119
|
+
.pf-c-table:not(.pf-m-sticky-header) > .pf-m-nested-column-header tr:not(:last-child) th:not([rowspan]),
|
|
27120
|
+
.pf-c-table:not(.pf-m-sticky-header) > .pf-m-nested-column-header tr:not(:last-child) td:not([rowspan]) {
|
|
27121
|
+
--pf-c-table--cell--PaddingBottom: var(--pf-c-table--thead--m-nested-column-header--tr--PaddingBottom);
|
|
27122
|
+
}
|
|
27050
27123
|
.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),
|
|
27051
27124
|
.pf-c-table > .pf-m-striped > tr:nth-child(odd),
|
|
27052
27125
|
.pf-c-table > .pf-m-striped-even > tr:nth-child(even),
|
|
@@ -27144,13 +27217,6 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27144
27217
|
.pf-c-table thead.pf-m-nested-column-header tr:not(:first-child) td:not([rowspan]) {
|
|
27145
27218
|
--pf-c-table--cell--PaddingTop: var(--pf-c-table--thead--m-nested-column-header--tr--PaddingTop);
|
|
27146
27219
|
}
|
|
27147
|
-
.pf-c-table thead.pf-m-nested-column-header tr:not(:last-child) {
|
|
27148
|
-
--pf-c-table--border-width--base: 0;
|
|
27149
|
-
}
|
|
27150
|
-
.pf-c-table thead.pf-m-nested-column-header tr:not(:last-child) th:not([rowspan]),
|
|
27151
|
-
.pf-c-table thead.pf-m-nested-column-header tr:not(:last-child) td:not([rowspan]) {
|
|
27152
|
-
--pf-c-table--cell--PaddingBottom: var(--pf-c-table--thead--m-nested-column-header--tr--PaddingBottom);
|
|
27153
|
-
}
|
|
27154
27220
|
.pf-c-table thead .pf-c-table__subhead {
|
|
27155
27221
|
--pf-c-table__sort__button__text--Color: var(--pf-c-table__subhead--Color);
|
|
27156
27222
|
color: var(--pf-c-table__subhead--Color);
|
package/patternfly.css
CHANGED
|
@@ -8300,6 +8300,8 @@ button.pf-c-breadcrumb__link {
|
|
|
8300
8300
|
--pf-c-card__header--m-toggle-right--toggle--MarginRight: calc(var(--pf-global--spacer--form-element) * -1);
|
|
8301
8301
|
--pf-c-card__header--m-toggle-right--toggle--MarginLeft: var(--pf-global--spacer--xs);
|
|
8302
8302
|
--pf-c-card__header--m-toggle-right--actions--MarginRight: 0;
|
|
8303
|
+
--pf-c-card__input--focus--BorderWidth: var(--pf-global--BorderWidth--md);
|
|
8304
|
+
--pf-c-card__input--focus--BorderColor: var(--pf-global--primary-color--100);
|
|
8303
8305
|
display: flex;
|
|
8304
8306
|
flex-direction: column;
|
|
8305
8307
|
background-color: var(--pf-c-card--BackgroundColor);
|
|
@@ -8526,10 +8528,58 @@ button.pf-c-breadcrumb__link {
|
|
|
8526
8528
|
font-size: var(--pf-c-card__footer--FontSize);
|
|
8527
8529
|
}
|
|
8528
8530
|
|
|
8531
|
+
.pf-c-card__sr-input:focus + .pf-c-card::after {
|
|
8532
|
+
position: absolute;
|
|
8533
|
+
top: 0;
|
|
8534
|
+
right: 0;
|
|
8535
|
+
bottom: 0;
|
|
8536
|
+
left: 0;
|
|
8537
|
+
content: "";
|
|
8538
|
+
border: var(--pf-c-card__input--focus--BorderWidth) solid var(--pf-c-card__input--focus--BorderColor);
|
|
8539
|
+
}
|
|
8540
|
+
|
|
8529
8541
|
.pf-m-overpass-font .pf-c-card .pf-c-card__title {
|
|
8530
8542
|
font-weight: var(--pf-global--FontWeight--normal);
|
|
8531
8543
|
}
|
|
8532
8544
|
|
|
8545
|
+
:where(.pf-theme-dark) .pf-c-wizard__header, :where(.pf-theme-dark) .pf-c-page__sidebar-body.pf-m-menu .pf-c-context-selector,
|
|
8546
|
+
:where(.pf-theme-dark) .pf-c-page__main-section[class*=pf-m-dark-],
|
|
8547
|
+
:where(.pf-theme-dark) .pf-c-page__header, :where(.pf-theme-dark) .pf-c-masthead, :where(.pf-theme-dark) .pf-c-login__header,
|
|
8548
|
+
:where(.pf-theme-dark) .pf-c-login__footer, :where(.pf-theme-dark) .pf-c-log-viewer.pf-m-dark .pf-c-log-viewer__main, :where(.pf-theme-dark) .pf-c-about-modal-box, :where(.pf-theme-dark) .pf-c-banner {
|
|
8549
|
+
--pf-global--Color--100: #e0e0e0;
|
|
8550
|
+
--pf-global--Color--200: #aaabac;
|
|
8551
|
+
--pf-global--BorderColor--100: #444548;
|
|
8552
|
+
--pf-global--primary-color--100: #1fa7f8;
|
|
8553
|
+
--pf-global--link--Color: #1fa7f8;
|
|
8554
|
+
--pf-global--link--Color--hover: #73bcf7;
|
|
8555
|
+
--pf-global--BackgroundColor--100: #1b1d21;
|
|
8556
|
+
}
|
|
8557
|
+
:where(.pf-theme-dark) .pf-c-wizard__header .pf-c-button, :where(.pf-theme-dark) .pf-c-page__sidebar-body.pf-m-menu .pf-c-context-selector .pf-c-button,
|
|
8558
|
+
:where(.pf-theme-dark) .pf-c-page__main-section[class*=pf-m-dark-] .pf-c-button,
|
|
8559
|
+
:where(.pf-theme-dark) .pf-c-page__header .pf-c-button, :where(.pf-theme-dark) .pf-c-masthead .pf-c-button, :where(.pf-theme-dark) .pf-c-login__header .pf-c-button,
|
|
8560
|
+
:where(.pf-theme-dark) .pf-c-login__footer .pf-c-button, :where(.pf-theme-dark) .pf-c-log-viewer.pf-m-dark .pf-c-log-viewer__main .pf-c-button, :where(.pf-theme-dark) .pf-c-about-modal-box .pf-c-button, :where(.pf-theme-dark) .pf-c-banner .pf-c-button {
|
|
8561
|
+
--pf-c-button--m-primary--Color: var(--pf-global--Color--light-100);
|
|
8562
|
+
--pf-c-button--m-primary--hover--Color: var(--pf-global--Color--light-100);
|
|
8563
|
+
--pf-c-button--m-primary--focus--Color: var(--pf-global--Color--light-100);
|
|
8564
|
+
--pf-c-button--m-primary--active--Color: var(--pf-global--Color--light-100);
|
|
8565
|
+
--pf-c-button--m-primary--BackgroundColor: var(--pf-global--primary-color--300);
|
|
8566
|
+
--pf-c-button--m-primary--hover--BackgroundColor: var(--pf-global--primary-color--200);
|
|
8567
|
+
--pf-c-button--m-primary--focus--BackgroundColor: var(--pf-global--primary-color--200);
|
|
8568
|
+
--pf-c-button--m-primary--active--BackgroundColor: var(--pf-global--primary-color--200);
|
|
8569
|
+
--pf-c-button--m-secondary--Color: var(--pf-global--primary-color--100);
|
|
8570
|
+
--pf-c-button--m-secondary--hover--Color: var(--pf-global--primary-color--100);
|
|
8571
|
+
--pf-c-button--m-secondary--focus--Color: var(--pf-global--primary-color--100);
|
|
8572
|
+
--pf-c-button--m-secondary--active--Color: var(--pf-global--primary-color--100);
|
|
8573
|
+
}
|
|
8574
|
+
|
|
8575
|
+
:where(.pf-theme-dark) .pf-c-card {
|
|
8576
|
+
--pf-c-card--BoxShadow: var(--pf-global--BoxShadow--md);
|
|
8577
|
+
--pf-c-card--m-hoverable-raised--hover--BoxShadow: var(--pf-global--BoxShadow--lg);
|
|
8578
|
+
--pf-c-card--m-selectable-raised--hover--BoxShadow: var(--pf-global--BoxShadow--lg);
|
|
8579
|
+
--pf-c-card--m-selectable-raised--focus--BoxShadow: var(--pf-global--BoxShadow--lg);
|
|
8580
|
+
--pf-c-card--m-selectable-raised--active--BoxShadow: var(--pf-global--BoxShadow--lg);
|
|
8581
|
+
}
|
|
8582
|
+
|
|
8533
8583
|
.pf-c-check {
|
|
8534
8584
|
--pf-c-check--GridGap: var(--pf-global--spacer--xs) var(--pf-global--spacer--sm);
|
|
8535
8585
|
--pf-c-check__label--disabled--Color: var(--pf-global--disabled-color--100);
|
|
@@ -27161,12 +27211,14 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27161
27211
|
border-bottom: 0;
|
|
27162
27212
|
}
|
|
27163
27213
|
.pf-c-table.pf-m-sticky-header > thead > tr > * {
|
|
27214
|
+
z-index: var(--pf-global--ZIndex--xs);
|
|
27215
|
+
}
|
|
27216
|
+
.pf-c-table.pf-m-sticky-header > thead:not(.pf-m-nested-column-header) > tr > * {
|
|
27164
27217
|
position: sticky;
|
|
27165
27218
|
top: 0;
|
|
27166
|
-
z-index: var(--pf-global--ZIndex--xs);
|
|
27167
27219
|
background: var(--pf-c-table--BackgroundColor);
|
|
27168
27220
|
}
|
|
27169
|
-
.pf-c-table.pf-m-sticky-header > thead > tr > *::after {
|
|
27221
|
+
.pf-c-table.pf-m-sticky-header > thead:not(.pf-m-nested-column-header) > tr > *::after {
|
|
27170
27222
|
position: absolute;
|
|
27171
27223
|
right: 0;
|
|
27172
27224
|
bottom: 0;
|
|
@@ -27174,6 +27226,27 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27174
27226
|
content: "";
|
|
27175
27227
|
border-bottom: var(--pf-c-table--border-width--base) solid var(--pf-c-table--BorderColor);
|
|
27176
27228
|
}
|
|
27229
|
+
.pf-c-table.pf-m-sticky-header > .pf-m-nested-column-header {
|
|
27230
|
+
position: sticky;
|
|
27231
|
+
top: 0;
|
|
27232
|
+
z-index: var(--pf-global--ZIndex--xs);
|
|
27233
|
+
background: var(--pf-c-table--BackgroundColor);
|
|
27234
|
+
}
|
|
27235
|
+
.pf-c-table.pf-m-sticky-header > .pf-m-nested-column-header > .pf-m-border-row {
|
|
27236
|
+
height: var(--pf-c-table--border-width--base);
|
|
27237
|
+
background-color: var(--pf-c-table--BorderColor);
|
|
27238
|
+
}
|
|
27239
|
+
.pf-c-table.pf-m-sticky-header > .pf-m-nested-column-header tr:not(:nth-last-child(2)) th:not([rowspan]),
|
|
27240
|
+
.pf-c-table.pf-m-sticky-header > .pf-m-nested-column-header tr:not(:nth-last-child(2)) td:not([rowspan]) {
|
|
27241
|
+
--pf-c-table--cell--PaddingBottom: var(--pf-c-table--thead--m-nested-column-header--tr--PaddingBottom);
|
|
27242
|
+
}
|
|
27243
|
+
.pf-c-table:not(.pf-m-sticky-header) > .pf-m-nested-column-header tr:not(:last-child) {
|
|
27244
|
+
border-bottom: 0;
|
|
27245
|
+
}
|
|
27246
|
+
.pf-c-table:not(.pf-m-sticky-header) > .pf-m-nested-column-header tr:not(:last-child) th:not([rowspan]),
|
|
27247
|
+
.pf-c-table:not(.pf-m-sticky-header) > .pf-m-nested-column-header tr:not(:last-child) td:not([rowspan]) {
|
|
27248
|
+
--pf-c-table--cell--PaddingBottom: var(--pf-c-table--thead--m-nested-column-header--tr--PaddingBottom);
|
|
27249
|
+
}
|
|
27177
27250
|
.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),
|
|
27178
27251
|
.pf-c-table > .pf-m-striped > tr:nth-child(odd),
|
|
27179
27252
|
.pf-c-table > .pf-m-striped-even > tr:nth-child(even),
|
|
@@ -27271,13 +27344,6 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27271
27344
|
.pf-c-table thead.pf-m-nested-column-header tr:not(:first-child) td:not([rowspan]) {
|
|
27272
27345
|
--pf-c-table--cell--PaddingTop: var(--pf-c-table--thead--m-nested-column-header--tr--PaddingTop);
|
|
27273
27346
|
}
|
|
27274
|
-
.pf-c-table thead.pf-m-nested-column-header tr:not(:last-child) {
|
|
27275
|
-
--pf-c-table--border-width--base: 0;
|
|
27276
|
-
}
|
|
27277
|
-
.pf-c-table thead.pf-m-nested-column-header tr:not(:last-child) th:not([rowspan]),
|
|
27278
|
-
.pf-c-table thead.pf-m-nested-column-header tr:not(:last-child) td:not([rowspan]) {
|
|
27279
|
-
--pf-c-table--cell--PaddingBottom: var(--pf-c-table--thead--m-nested-column-header--tr--PaddingBottom);
|
|
27280
|
-
}
|
|
27281
27347
|
.pf-c-table thead .pf-c-table__subhead {
|
|
27282
27348
|
--pf-c-table__sort__button__text--Color: var(--pf-c-table__subhead--Color);
|
|
27283
27349
|
color: var(--pf-c-table__subhead--Color);
|