@patternfly/patternfly 4.197.1 → 4.198.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.
- package/components/Card/card.css +12 -0
- package/components/Card/card.scss +14 -0
- package/components/ProgressStepper/progress-stepper.css +1 -0
- package/components/ProgressStepper/progress-stepper.scss +1 -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/ProgressStepper/examples/ProgressStepper.md +7 -13
- package/docs/components/Table/examples/Table.md +1176 -5
- package/package.json +1 -1
- package/patternfly-no-reset.css +38 -9
- package/patternfly.css +38 -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,6 +8401,16 @@ 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
|
}
|
|
@@ -23002,6 +23014,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
23002
23014
|
font-weight: var(--pf-c-progress-stepper__step-title--FontWeight);
|
|
23003
23015
|
color: var(--pf-c-progress-stepper__step-title--Color);
|
|
23004
23016
|
text-align: var(--pf-c-progress-stepper__step-title--TextAlign);
|
|
23017
|
+
border: 0;
|
|
23005
23018
|
}
|
|
23006
23019
|
.pf-c-progress-stepper__step-title.pf-m-help-text {
|
|
23007
23020
|
text-decoration: underline;
|
|
@@ -27072,12 +27085,14 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27072
27085
|
border-bottom: 0;
|
|
27073
27086
|
}
|
|
27074
27087
|
.pf-c-table.pf-m-sticky-header > thead > tr > * {
|
|
27088
|
+
z-index: var(--pf-global--ZIndex--xs);
|
|
27089
|
+
}
|
|
27090
|
+
.pf-c-table.pf-m-sticky-header > thead:not(.pf-m-nested-column-header) > tr > * {
|
|
27075
27091
|
position: sticky;
|
|
27076
27092
|
top: 0;
|
|
27077
|
-
z-index: var(--pf-global--ZIndex--xs);
|
|
27078
27093
|
background: var(--pf-c-table--BackgroundColor);
|
|
27079
27094
|
}
|
|
27080
|
-
.pf-c-table.pf-m-sticky-header > thead > tr > *::after {
|
|
27095
|
+
.pf-c-table.pf-m-sticky-header > thead:not(.pf-m-nested-column-header) > tr > *::after {
|
|
27081
27096
|
position: absolute;
|
|
27082
27097
|
right: 0;
|
|
27083
27098
|
bottom: 0;
|
|
@@ -27085,6 +27100,27 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27085
27100
|
content: "";
|
|
27086
27101
|
border-bottom: var(--pf-c-table--border-width--base) solid var(--pf-c-table--BorderColor);
|
|
27087
27102
|
}
|
|
27103
|
+
.pf-c-table.pf-m-sticky-header > .pf-m-nested-column-header {
|
|
27104
|
+
position: sticky;
|
|
27105
|
+
top: 0;
|
|
27106
|
+
z-index: var(--pf-global--ZIndex--xs);
|
|
27107
|
+
background: var(--pf-c-table--BackgroundColor);
|
|
27108
|
+
}
|
|
27109
|
+
.pf-c-table.pf-m-sticky-header > .pf-m-nested-column-header > .pf-m-border-row {
|
|
27110
|
+
height: var(--pf-c-table--border-width--base);
|
|
27111
|
+
background-color: var(--pf-c-table--BorderColor);
|
|
27112
|
+
}
|
|
27113
|
+
.pf-c-table.pf-m-sticky-header > .pf-m-nested-column-header tr:not(:nth-last-child(2)) th:not([rowspan]),
|
|
27114
|
+
.pf-c-table.pf-m-sticky-header > .pf-m-nested-column-header tr:not(:nth-last-child(2)) td:not([rowspan]) {
|
|
27115
|
+
--pf-c-table--cell--PaddingBottom: var(--pf-c-table--thead--m-nested-column-header--tr--PaddingBottom);
|
|
27116
|
+
}
|
|
27117
|
+
.pf-c-table:not(.pf-m-sticky-header) > .pf-m-nested-column-header tr:not(:last-child) {
|
|
27118
|
+
border-bottom: 0;
|
|
27119
|
+
}
|
|
27120
|
+
.pf-c-table:not(.pf-m-sticky-header) > .pf-m-nested-column-header tr:not(:last-child) th:not([rowspan]),
|
|
27121
|
+
.pf-c-table:not(.pf-m-sticky-header) > .pf-m-nested-column-header tr:not(:last-child) td:not([rowspan]) {
|
|
27122
|
+
--pf-c-table--cell--PaddingBottom: var(--pf-c-table--thead--m-nested-column-header--tr--PaddingBottom);
|
|
27123
|
+
}
|
|
27088
27124
|
.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),
|
|
27089
27125
|
.pf-c-table > .pf-m-striped > tr:nth-child(odd),
|
|
27090
27126
|
.pf-c-table > .pf-m-striped-even > tr:nth-child(even),
|
|
@@ -27182,13 +27218,6 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27182
27218
|
.pf-c-table thead.pf-m-nested-column-header tr:not(:first-child) td:not([rowspan]) {
|
|
27183
27219
|
--pf-c-table--cell--PaddingTop: var(--pf-c-table--thead--m-nested-column-header--tr--PaddingTop);
|
|
27184
27220
|
}
|
|
27185
|
-
.pf-c-table thead.pf-m-nested-column-header tr:not(:last-child) {
|
|
27186
|
-
--pf-c-table--border-width--base: 0;
|
|
27187
|
-
}
|
|
27188
|
-
.pf-c-table thead.pf-m-nested-column-header tr:not(:last-child) th:not([rowspan]),
|
|
27189
|
-
.pf-c-table thead.pf-m-nested-column-header tr:not(:last-child) td:not([rowspan]) {
|
|
27190
|
-
--pf-c-table--cell--PaddingBottom: var(--pf-c-table--thead--m-nested-column-header--tr--PaddingBottom);
|
|
27191
|
-
}
|
|
27192
27221
|
.pf-c-table thead .pf-c-table__subhead {
|
|
27193
27222
|
--pf-c-table__sort__button__text--Color: var(--pf-c-table__subhead--Color);
|
|
27194
27223
|
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,6 +8528,16 @@ 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
|
}
|
|
@@ -23129,6 +23141,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
23129
23141
|
font-weight: var(--pf-c-progress-stepper__step-title--FontWeight);
|
|
23130
23142
|
color: var(--pf-c-progress-stepper__step-title--Color);
|
|
23131
23143
|
text-align: var(--pf-c-progress-stepper__step-title--TextAlign);
|
|
23144
|
+
border: 0;
|
|
23132
23145
|
}
|
|
23133
23146
|
.pf-c-progress-stepper__step-title.pf-m-help-text {
|
|
23134
23147
|
text-decoration: underline;
|
|
@@ -27199,12 +27212,14 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27199
27212
|
border-bottom: 0;
|
|
27200
27213
|
}
|
|
27201
27214
|
.pf-c-table.pf-m-sticky-header > thead > tr > * {
|
|
27215
|
+
z-index: var(--pf-global--ZIndex--xs);
|
|
27216
|
+
}
|
|
27217
|
+
.pf-c-table.pf-m-sticky-header > thead:not(.pf-m-nested-column-header) > tr > * {
|
|
27202
27218
|
position: sticky;
|
|
27203
27219
|
top: 0;
|
|
27204
|
-
z-index: var(--pf-global--ZIndex--xs);
|
|
27205
27220
|
background: var(--pf-c-table--BackgroundColor);
|
|
27206
27221
|
}
|
|
27207
|
-
.pf-c-table.pf-m-sticky-header > thead > tr > *::after {
|
|
27222
|
+
.pf-c-table.pf-m-sticky-header > thead:not(.pf-m-nested-column-header) > tr > *::after {
|
|
27208
27223
|
position: absolute;
|
|
27209
27224
|
right: 0;
|
|
27210
27225
|
bottom: 0;
|
|
@@ -27212,6 +27227,27 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27212
27227
|
content: "";
|
|
27213
27228
|
border-bottom: var(--pf-c-table--border-width--base) solid var(--pf-c-table--BorderColor);
|
|
27214
27229
|
}
|
|
27230
|
+
.pf-c-table.pf-m-sticky-header > .pf-m-nested-column-header {
|
|
27231
|
+
position: sticky;
|
|
27232
|
+
top: 0;
|
|
27233
|
+
z-index: var(--pf-global--ZIndex--xs);
|
|
27234
|
+
background: var(--pf-c-table--BackgroundColor);
|
|
27235
|
+
}
|
|
27236
|
+
.pf-c-table.pf-m-sticky-header > .pf-m-nested-column-header > .pf-m-border-row {
|
|
27237
|
+
height: var(--pf-c-table--border-width--base);
|
|
27238
|
+
background-color: var(--pf-c-table--BorderColor);
|
|
27239
|
+
}
|
|
27240
|
+
.pf-c-table.pf-m-sticky-header > .pf-m-nested-column-header tr:not(:nth-last-child(2)) th:not([rowspan]),
|
|
27241
|
+
.pf-c-table.pf-m-sticky-header > .pf-m-nested-column-header tr:not(:nth-last-child(2)) td:not([rowspan]) {
|
|
27242
|
+
--pf-c-table--cell--PaddingBottom: var(--pf-c-table--thead--m-nested-column-header--tr--PaddingBottom);
|
|
27243
|
+
}
|
|
27244
|
+
.pf-c-table:not(.pf-m-sticky-header) > .pf-m-nested-column-header tr:not(:last-child) {
|
|
27245
|
+
border-bottom: 0;
|
|
27246
|
+
}
|
|
27247
|
+
.pf-c-table:not(.pf-m-sticky-header) > .pf-m-nested-column-header tr:not(:last-child) th:not([rowspan]),
|
|
27248
|
+
.pf-c-table:not(.pf-m-sticky-header) > .pf-m-nested-column-header tr:not(:last-child) td:not([rowspan]) {
|
|
27249
|
+
--pf-c-table--cell--PaddingBottom: var(--pf-c-table--thead--m-nested-column-header--tr--PaddingBottom);
|
|
27250
|
+
}
|
|
27215
27251
|
.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),
|
|
27216
27252
|
.pf-c-table > .pf-m-striped > tr:nth-child(odd),
|
|
27217
27253
|
.pf-c-table > .pf-m-striped-even > tr:nth-child(even),
|
|
@@ -27309,13 +27345,6 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
27309
27345
|
.pf-c-table thead.pf-m-nested-column-header tr:not(:first-child) td:not([rowspan]) {
|
|
27310
27346
|
--pf-c-table--cell--PaddingTop: var(--pf-c-table--thead--m-nested-column-header--tr--PaddingTop);
|
|
27311
27347
|
}
|
|
27312
|
-
.pf-c-table thead.pf-m-nested-column-header tr:not(:last-child) {
|
|
27313
|
-
--pf-c-table--border-width--base: 0;
|
|
27314
|
-
}
|
|
27315
|
-
.pf-c-table thead.pf-m-nested-column-header tr:not(:last-child) th:not([rowspan]),
|
|
27316
|
-
.pf-c-table thead.pf-m-nested-column-header tr:not(:last-child) td:not([rowspan]) {
|
|
27317
|
-
--pf-c-table--cell--PaddingBottom: var(--pf-c-table--thead--m-nested-column-header--tr--PaddingBottom);
|
|
27318
|
-
}
|
|
27319
27348
|
.pf-c-table thead .pf-c-table__subhead {
|
|
27320
27349
|
--pf-c-table__sort__button__text--Color: var(--pf-c-table__subhead--Color);
|
|
27321
27350
|
color: var(--pf-c-table__subhead--Color);
|