@patternfly/react-styles 4.72.14 → 4.72.17
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/CHANGELOG.md +24 -0
- package/css/components/DescriptionList/description-list.css +36 -2
- package/css/components/DescriptionList/description-list.d.ts +3 -0
- package/css/components/DescriptionList/description-list.js +3 -0
- package/css/components/DescriptionList/description-list.mjs +3 -0
- package/css/components/Page/page.css +154 -24
- package/css/components/Page/page.d.ts +12 -2
- package/css/components/Page/page.js +12 -2
- package/css/components/Page/page.mjs +12 -2
- package/css/components/ProgressStepper/progress-stepper.css +416 -69
- package/css/components/ProgressStepper/progress-stepper.d.ts +13 -2
- package/css/components/ProgressStepper/progress-stepper.js +13 -2
- package/css/components/ProgressStepper/progress-stepper.mjs +13 -2
- package/css/components/Tabs/tabs.css +30 -0
- package/css/components/Tabs/tabs.d.ts +2 -0
- package/css/components/Tabs/tabs.js +2 -0
- package/css/components/Tabs/tabs.mjs +2 -0
- package/css/components/Wizard/wizard.css +2 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,30 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## 4.72.17 (2022-06-22)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
## 4.72.16 (2022-06-22)
|
15
|
+
|
16
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
## 4.72.15 (2022-06-21)
|
23
|
+
|
24
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
|
6
30
|
## 4.72.14 (2022-06-17)
|
7
31
|
|
8
32
|
**Note:** Version bump only for package @patternfly/react-styles
|
@@ -8,6 +8,7 @@
|
|
8
8
|
--pf-c-description-list__group--RowGap: var(--pf-global--spacer--sm);
|
9
9
|
--pf-c-description-list__group--ColumnGap: var(--pf-global--spacer--sm);
|
10
10
|
--pf-c-description-list__group--GridTemplateColumns: auto;
|
11
|
+
--pf-c-description-list__group--GridTemplateRows: auto 1fr;
|
11
12
|
--pf-c-description-list__group--GridColumn: auto;
|
12
13
|
--pf-c-description-list--m-compact--RowGap: var(--pf-global--gutter);
|
13
14
|
--pf-c-description-list--m-compact--ColumnGap: var(--pf-global--spacer--sm);
|
@@ -20,9 +21,11 @@
|
|
20
21
|
--pf-c-description-list__term-icon--MarginRight: var(--pf-global--spacer--sm);
|
21
22
|
--pf-c-description-list__term-icon--Color: var(--pf-global--icon--Color--light);
|
22
23
|
--pf-c-description-list--m-vertical__group--GridTemplateColumns: repeat(var(--pf-c-description-list--GridTemplateColumns--count));
|
24
|
+
--pf-c-description-list--m-vertical__group--GridTemplateRows: auto 1fr;
|
23
25
|
--pf-c-description-list--m-horizontal__term--width: 12ch;
|
24
26
|
--pf-c-description-list--m-horizontal__description--width: minmax(10ch, auto);
|
25
27
|
--pf-c-description-list--m-horizontal__group--GridTemplateColumns: var(--pf-c-description-list__term--width) var(--pf-c-description-list--m-horizontal__description--width);
|
28
|
+
--pf-c-description-list--m-horizontal__group--GridTemplateRows: auto;
|
26
29
|
--pf-c-description-list--m-1-col--GridTemplateColumns--count: 1;
|
27
30
|
--pf-c-description-list--m-2-col--GridTemplateColumns--count: 2;
|
28
31
|
--pf-c-description-list--m-3-col--GridTemplateColumns--count: 3;
|
@@ -33,6 +36,8 @@
|
|
33
36
|
--pf-c-description-list__text--m-help-text--TextDecorationOffset: 0.25rem;
|
34
37
|
--pf-c-description-list__text--m-help-text--hover--TextDecorationColor: var(--pf-global--Color--100);
|
35
38
|
--pf-c-description-list__text--m-help-text--focus--TextDecorationColor: var(--pf-global--Color--100);
|
39
|
+
--pf-c-description-list--m-display-lg__description--FontSize: var(--pf-global--FontSize--lg);
|
40
|
+
--pf-c-description-list--m-display-2xl__description--FontSize: var(--pf-global--FontSize--2xl);
|
36
41
|
display: grid;
|
37
42
|
align-items: baseline;
|
38
43
|
row-gap: var(--pf-c-description-list--RowGap);
|
@@ -119,7 +124,8 @@
|
|
119
124
|
column-count: var(--pf-c-description-list--GridTemplateColumns--count);
|
120
125
|
margin-bottom: calc(var(--pf-c-description-list--RowGap) * -1);
|
121
126
|
}
|
122
|
-
.pf-c-description-list.pf-m-fill-columns .pf-c-description-list__group
|
127
|
+
.pf-c-description-list.pf-m-fill-columns .pf-c-description-list__group,
|
128
|
+
.pf-c-description-list.pf-m-fill-columns > .pf-c-card {
|
123
129
|
display: inline-grid;
|
124
130
|
width: 100%;
|
125
131
|
margin-bottom: var(--pf-c-description-list--RowGap);
|
@@ -128,13 +134,25 @@
|
|
128
134
|
-webkit-column-break-inside: avoid;
|
129
135
|
-moz-column-break-inside: avoid;
|
130
136
|
}
|
137
|
+
.pf-c-description-list.pf-m-display-lg {
|
138
|
+
--pf-c-description-list__description--FontSize: var(--pf-c-description-list--m-display-lg__description--FontSize);
|
139
|
+
}
|
140
|
+
.pf-c-description-list.pf-m-display-2xl {
|
141
|
+
--pf-c-description-list__description--FontSize: var(--pf-c-description-list--m-display-2xl__description--FontSize);
|
142
|
+
}
|
143
|
+
.pf-c-description-list > .pf-c-card {
|
144
|
+
align-self: stretch;
|
145
|
+
padding: var(--pf-c-card--first-child--PaddingTop) var(--pf-c-card--child--PaddingRight) var(--pf-c-card--child--PaddingBottom) var(--pf-c-card--child--PaddingLeft);
|
146
|
+
}
|
131
147
|
|
132
|
-
.pf-c-description-list__group
|
148
|
+
.pf-c-description-list__group,
|
149
|
+
.pf-c-description-list > .pf-c-card {
|
133
150
|
display: grid;
|
134
151
|
grid-column: var(--pf-c-description-list__group--GridColumn);
|
135
152
|
row-gap: var(--pf-c-description-list__group--RowGap);
|
136
153
|
column-gap: var(--pf-c-description-list__group--ColumnGap);
|
137
154
|
grid-template-columns: var(--pf-c-description-list__group--GridTemplateColumns);
|
155
|
+
grid-template-rows: var(--pf-c-description-list__group--GridTemplateRows);
|
138
156
|
align-items: baseline;
|
139
157
|
}
|
140
158
|
|
@@ -162,6 +180,10 @@
|
|
162
180
|
color: var(--pf-c-description-list__term-icon--Color);
|
163
181
|
}
|
164
182
|
|
183
|
+
.pf-c-description-list__description {
|
184
|
+
font-size: var(--pf-c-description-list__description--FontSize, inherit);
|
185
|
+
}
|
186
|
+
|
165
187
|
.pf-c-description-list__text {
|
166
188
|
min-width: 0;
|
167
189
|
}
|
@@ -191,9 +213,11 @@
|
|
191
213
|
}
|
192
214
|
.pf-c-description-list.pf-m-horizontal {
|
193
215
|
--pf-c-description-list__group--GridTemplateColumns: var(--pf-c-description-list--m-horizontal__group--GridTemplateColumns);
|
216
|
+
--pf-c-description-list__group--GridTemplateRows: var(--pf-c-description-list--m-horizontal__group--GridTemplateRows);
|
194
217
|
}
|
195
218
|
.pf-c-description-list.pf-m-vertical {
|
196
219
|
--pf-c-description-list__group--GridTemplateColumns: var(--pf-c-description-list--m-vertical__group--GridTemplateColumns);
|
220
|
+
--pf-c-description-list__group--GridTemplateRows: var(--pf-c-description-list--m-vertical__group--GridTemplateRows);
|
197
221
|
}
|
198
222
|
@media (min-width: 576px) {
|
199
223
|
.pf-c-description-list.pf-m-1-col-on-sm {
|
@@ -207,9 +231,11 @@
|
|
207
231
|
}
|
208
232
|
.pf-c-description-list.pf-m-horizontal-on-sm {
|
209
233
|
--pf-c-description-list__group--GridTemplateColumns: var(--pf-c-description-list--m-horizontal__group--GridTemplateColumns);
|
234
|
+
--pf-c-description-list__group--GridTemplateRows: var(--pf-c-description-list--m-horizontal__group--GridTemplateRows);
|
210
235
|
}
|
211
236
|
.pf-c-description-list.pf-m-vertical-on-sm {
|
212
237
|
--pf-c-description-list__group--GridTemplateColumns: var(--pf-c-description-list--m-vertical__group--GridTemplateColumns);
|
238
|
+
--pf-c-description-list__group--GridTemplateRows: var(--pf-c-description-list--m-vertical__group--GridTemplateRows);
|
213
239
|
}
|
214
240
|
}
|
215
241
|
@media (min-width: 768px) {
|
@@ -224,9 +250,11 @@
|
|
224
250
|
}
|
225
251
|
.pf-c-description-list.pf-m-horizontal-on-md {
|
226
252
|
--pf-c-description-list__group--GridTemplateColumns: var(--pf-c-description-list--m-horizontal__group--GridTemplateColumns);
|
253
|
+
--pf-c-description-list__group--GridTemplateRows: var(--pf-c-description-list--m-horizontal__group--GridTemplateRows);
|
227
254
|
}
|
228
255
|
.pf-c-description-list.pf-m-vertical-on-md {
|
229
256
|
--pf-c-description-list__group--GridTemplateColumns: var(--pf-c-description-list--m-vertical__group--GridTemplateColumns);
|
257
|
+
--pf-c-description-list__group--GridTemplateRows: var(--pf-c-description-list--m-vertical__group--GridTemplateRows);
|
230
258
|
}
|
231
259
|
}
|
232
260
|
@media (min-width: 992px) {
|
@@ -241,9 +269,11 @@
|
|
241
269
|
}
|
242
270
|
.pf-c-description-list.pf-m-horizontal-on-lg {
|
243
271
|
--pf-c-description-list__group--GridTemplateColumns: var(--pf-c-description-list--m-horizontal__group--GridTemplateColumns);
|
272
|
+
--pf-c-description-list__group--GridTemplateRows: var(--pf-c-description-list--m-horizontal__group--GridTemplateRows);
|
244
273
|
}
|
245
274
|
.pf-c-description-list.pf-m-vertical-on-lg {
|
246
275
|
--pf-c-description-list__group--GridTemplateColumns: var(--pf-c-description-list--m-vertical__group--GridTemplateColumns);
|
276
|
+
--pf-c-description-list__group--GridTemplateRows: var(--pf-c-description-list--m-vertical__group--GridTemplateRows);
|
247
277
|
}
|
248
278
|
}
|
249
279
|
@media (min-width: 1200px) {
|
@@ -258,9 +288,11 @@
|
|
258
288
|
}
|
259
289
|
.pf-c-description-list.pf-m-horizontal-on-xl {
|
260
290
|
--pf-c-description-list__group--GridTemplateColumns: var(--pf-c-description-list--m-horizontal__group--GridTemplateColumns);
|
291
|
+
--pf-c-description-list__group--GridTemplateRows: var(--pf-c-description-list--m-horizontal__group--GridTemplateRows);
|
261
292
|
}
|
262
293
|
.pf-c-description-list.pf-m-vertical-on-xl {
|
263
294
|
--pf-c-description-list__group--GridTemplateColumns: var(--pf-c-description-list--m-vertical__group--GridTemplateColumns);
|
295
|
+
--pf-c-description-list__group--GridTemplateRows: var(--pf-c-description-list--m-vertical__group--GridTemplateRows);
|
264
296
|
}
|
265
297
|
}
|
266
298
|
@media (min-width: 1450px) {
|
@@ -275,8 +307,10 @@
|
|
275
307
|
}
|
276
308
|
.pf-c-description-list.pf-m-horizontal-on-2xl {
|
277
309
|
--pf-c-description-list__group--GridTemplateColumns: var(--pf-c-description-list--m-horizontal__group--GridTemplateColumns);
|
310
|
+
--pf-c-description-list__group--GridTemplateRows: var(--pf-c-description-list--m-horizontal__group--GridTemplateRows);
|
278
311
|
}
|
279
312
|
.pf-c-description-list.pf-m-vertical-on-2xl {
|
280
313
|
--pf-c-description-list__group--GridTemplateColumns: var(--pf-c-description-list--m-vertical__group--GridTemplateColumns);
|
314
|
+
--pf-c-description-list__group--GridTemplateRows: var(--pf-c-description-list--m-vertical__group--GridTemplateRows);
|
281
315
|
}
|
282
316
|
}
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import './description-list.css';
|
2
2
|
declare const _default: {
|
3
|
+
"card": "pf-c-card",
|
3
4
|
"descriptionList": "pf-c-description-list",
|
4
5
|
"descriptionListDescription": "pf-c-description-list__description",
|
5
6
|
"descriptionListGroup": "pf-c-description-list__group",
|
@@ -13,6 +14,8 @@ declare const _default: {
|
|
13
14
|
"compact": "pf-m-compact",
|
14
15
|
"fluid": "pf-m-fluid",
|
15
16
|
"fillColumns": "pf-m-fill-columns",
|
17
|
+
"displayLg": "pf-m-display-lg",
|
18
|
+
"display_2xl": "pf-m-display-2xl",
|
16
19
|
"helpText": "pf-m-help-text",
|
17
20
|
"1Col": "pf-m-1-col",
|
18
21
|
"2Col": "pf-m-2-col",
|
@@ -2,6 +2,7 @@
|
|
2
2
|
exports.__esModule = true;
|
3
3
|
require('./description-list.css');
|
4
4
|
exports.default = {
|
5
|
+
"card": "pf-c-card",
|
5
6
|
"descriptionList": "pf-c-description-list",
|
6
7
|
"descriptionListDescription": "pf-c-description-list__description",
|
7
8
|
"descriptionListGroup": "pf-c-description-list__group",
|
@@ -15,6 +16,8 @@ exports.default = {
|
|
15
16
|
"compact": "pf-m-compact",
|
16
17
|
"fluid": "pf-m-fluid",
|
17
18
|
"fillColumns": "pf-m-fill-columns",
|
19
|
+
"displayLg": "pf-m-display-lg",
|
20
|
+
"display_2xl": "pf-m-display-2xl",
|
18
21
|
"helpText": "pf-m-help-text",
|
19
22
|
"1Col": "pf-m-1-col",
|
20
23
|
"2Col": "pf-m-2-col",
|
@@ -1,5 +1,6 @@
|
|
1
1
|
import('./description-list.css');
|
2
2
|
export default {
|
3
|
+
"card": "pf-c-card",
|
3
4
|
"descriptionList": "pf-c-description-list",
|
4
5
|
"descriptionListDescription": "pf-c-description-list__description",
|
5
6
|
"descriptionListGroup": "pf-c-description-list__group",
|
@@ -13,6 +14,8 @@ export default {
|
|
13
14
|
"compact": "pf-m-compact",
|
14
15
|
"fluid": "pf-m-fluid",
|
15
16
|
"fillColumns": "pf-m-fill-columns",
|
17
|
+
"displayLg": "pf-m-display-lg",
|
18
|
+
"display_2xl": "pf-m-display-2xl",
|
16
19
|
"helpText": "pf-m-help-text",
|
17
20
|
"1Col": "pf-m-1-col",
|
18
21
|
"2Col": "pf-m-2-col",
|
@@ -497,30 +497,6 @@
|
|
497
497
|
.pf-c-page__main-subnav {
|
498
498
|
flex-shrink: 0;
|
499
499
|
}
|
500
|
-
.pf-c-page__main-nav.pf-m-sticky-top,
|
501
|
-
.pf-c-page__main-breadcrumb.pf-m-sticky-top,
|
502
|
-
.pf-c-page__main-tabs.pf-m-sticky-top,
|
503
|
-
.pf-c-page__main-section.pf-m-sticky-top,
|
504
|
-
.pf-c-page__main-wizard.pf-m-sticky-top,
|
505
|
-
.pf-c-page__main-group.pf-m-sticky-top,
|
506
|
-
.pf-c-page__main-subnav.pf-m-sticky-top {
|
507
|
-
position: sticky;
|
508
|
-
top: 0;
|
509
|
-
z-index: var(--pf-c-page--section--m-sticky-top--ZIndex);
|
510
|
-
box-shadow: var(--pf-c-page--section--m-sticky-top--BoxShadow);
|
511
|
-
}
|
512
|
-
.pf-c-page__main-nav.pf-m-sticky-bottom,
|
513
|
-
.pf-c-page__main-breadcrumb.pf-m-sticky-bottom,
|
514
|
-
.pf-c-page__main-tabs.pf-m-sticky-bottom,
|
515
|
-
.pf-c-page__main-section.pf-m-sticky-bottom,
|
516
|
-
.pf-c-page__main-wizard.pf-m-sticky-bottom,
|
517
|
-
.pf-c-page__main-group.pf-m-sticky-bottom,
|
518
|
-
.pf-c-page__main-subnav.pf-m-sticky-bottom {
|
519
|
-
position: sticky;
|
520
|
-
bottom: 0;
|
521
|
-
z-index: var(--pf-c-page--section--m-sticky-bottom--ZIndex);
|
522
|
-
box-shadow: var(--pf-c-page--section--m-sticky-bottom--BoxShadow);
|
523
|
-
}
|
524
500
|
.pf-c-page__main-nav.pf-m-overflow-scroll,
|
525
501
|
.pf-c-page__main-breadcrumb.pf-m-overflow-scroll,
|
526
502
|
.pf-c-page__main-tabs.pf-m-overflow-scroll,
|
@@ -552,6 +528,160 @@
|
|
552
528
|
z-index: var(--pf-c-page--section--m-shadow-top--ZIndex);
|
553
529
|
box-shadow: var(--pf-c-page--section--m-shadow-top--BoxShadow);
|
554
530
|
}
|
531
|
+
.pf-c-page__main-nav.pf-m-sticky-top,
|
532
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-top,
|
533
|
+
.pf-c-page__main-tabs.pf-m-sticky-top,
|
534
|
+
.pf-c-page__main-section.pf-m-sticky-top,
|
535
|
+
.pf-c-page__main-wizard.pf-m-sticky-top,
|
536
|
+
.pf-c-page__main-group.pf-m-sticky-top,
|
537
|
+
.pf-c-page__main-subnav.pf-m-sticky-top {
|
538
|
+
position: sticky;
|
539
|
+
top: 0;
|
540
|
+
z-index: var(--pf-c-page--section--m-sticky-top--ZIndex);
|
541
|
+
box-shadow: var(--pf-c-page--section--m-sticky-top--BoxShadow);
|
542
|
+
}
|
543
|
+
.pf-c-page__main-nav.pf-m-sticky-bottom,
|
544
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-bottom,
|
545
|
+
.pf-c-page__main-tabs.pf-m-sticky-bottom,
|
546
|
+
.pf-c-page__main-section.pf-m-sticky-bottom,
|
547
|
+
.pf-c-page__main-wizard.pf-m-sticky-bottom,
|
548
|
+
.pf-c-page__main-group.pf-m-sticky-bottom,
|
549
|
+
.pf-c-page__main-subnav.pf-m-sticky-bottom {
|
550
|
+
position: sticky;
|
551
|
+
bottom: 0;
|
552
|
+
z-index: var(--pf-c-page--section--m-sticky-bottom--ZIndex);
|
553
|
+
box-shadow: var(--pf-c-page--section--m-sticky-bottom--BoxShadow);
|
554
|
+
}
|
555
|
+
@media (min-height: 0) {
|
556
|
+
.pf-c-page__main-nav.pf-m-sticky-top-on-sm-height,
|
557
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-top-on-sm-height,
|
558
|
+
.pf-c-page__main-tabs.pf-m-sticky-top-on-sm-height,
|
559
|
+
.pf-c-page__main-section.pf-m-sticky-top-on-sm-height,
|
560
|
+
.pf-c-page__main-wizard.pf-m-sticky-top-on-sm-height,
|
561
|
+
.pf-c-page__main-group.pf-m-sticky-top-on-sm-height,
|
562
|
+
.pf-c-page__main-subnav.pf-m-sticky-top-on-sm-height {
|
563
|
+
position: sticky;
|
564
|
+
top: 0;
|
565
|
+
z-index: var(--pf-c-page--section--m-sticky-top--ZIndex);
|
566
|
+
box-shadow: var(--pf-c-page--section--m-sticky-top--BoxShadow);
|
567
|
+
}
|
568
|
+
.pf-c-page__main-nav.pf-m-sticky-bottom-on-sm-height,
|
569
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-sm-height,
|
570
|
+
.pf-c-page__main-tabs.pf-m-sticky-bottom-on-sm-height,
|
571
|
+
.pf-c-page__main-section.pf-m-sticky-bottom-on-sm-height,
|
572
|
+
.pf-c-page__main-wizard.pf-m-sticky-bottom-on-sm-height,
|
573
|
+
.pf-c-page__main-group.pf-m-sticky-bottom-on-sm-height,
|
574
|
+
.pf-c-page__main-subnav.pf-m-sticky-bottom-on-sm-height {
|
575
|
+
position: sticky;
|
576
|
+
bottom: 0;
|
577
|
+
z-index: var(--pf-c-page--section--m-sticky-bottom--ZIndex);
|
578
|
+
box-shadow: var(--pf-c-page--section--m-sticky-bottom--BoxShadow);
|
579
|
+
}
|
580
|
+
}
|
581
|
+
@media (min-height: 40rem) {
|
582
|
+
.pf-c-page__main-nav.pf-m-sticky-top-on-md-height,
|
583
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-top-on-md-height,
|
584
|
+
.pf-c-page__main-tabs.pf-m-sticky-top-on-md-height,
|
585
|
+
.pf-c-page__main-section.pf-m-sticky-top-on-md-height,
|
586
|
+
.pf-c-page__main-wizard.pf-m-sticky-top-on-md-height,
|
587
|
+
.pf-c-page__main-group.pf-m-sticky-top-on-md-height,
|
588
|
+
.pf-c-page__main-subnav.pf-m-sticky-top-on-md-height {
|
589
|
+
position: sticky;
|
590
|
+
top: 0;
|
591
|
+
z-index: var(--pf-c-page--section--m-sticky-top--ZIndex);
|
592
|
+
box-shadow: var(--pf-c-page--section--m-sticky-top--BoxShadow);
|
593
|
+
}
|
594
|
+
.pf-c-page__main-nav.pf-m-sticky-bottom-on-md-height,
|
595
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-md-height,
|
596
|
+
.pf-c-page__main-tabs.pf-m-sticky-bottom-on-md-height,
|
597
|
+
.pf-c-page__main-section.pf-m-sticky-bottom-on-md-height,
|
598
|
+
.pf-c-page__main-wizard.pf-m-sticky-bottom-on-md-height,
|
599
|
+
.pf-c-page__main-group.pf-m-sticky-bottom-on-md-height,
|
600
|
+
.pf-c-page__main-subnav.pf-m-sticky-bottom-on-md-height {
|
601
|
+
position: sticky;
|
602
|
+
bottom: 0;
|
603
|
+
z-index: var(--pf-c-page--section--m-sticky-bottom--ZIndex);
|
604
|
+
box-shadow: var(--pf-c-page--section--m-sticky-bottom--BoxShadow);
|
605
|
+
}
|
606
|
+
}
|
607
|
+
@media (min-height: 48rem) {
|
608
|
+
.pf-c-page__main-nav.pf-m-sticky-top-on-lg-height,
|
609
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-top-on-lg-height,
|
610
|
+
.pf-c-page__main-tabs.pf-m-sticky-top-on-lg-height,
|
611
|
+
.pf-c-page__main-section.pf-m-sticky-top-on-lg-height,
|
612
|
+
.pf-c-page__main-wizard.pf-m-sticky-top-on-lg-height,
|
613
|
+
.pf-c-page__main-group.pf-m-sticky-top-on-lg-height,
|
614
|
+
.pf-c-page__main-subnav.pf-m-sticky-top-on-lg-height {
|
615
|
+
position: sticky;
|
616
|
+
top: 0;
|
617
|
+
z-index: var(--pf-c-page--section--m-sticky-top--ZIndex);
|
618
|
+
box-shadow: var(--pf-c-page--section--m-sticky-top--BoxShadow);
|
619
|
+
}
|
620
|
+
.pf-c-page__main-nav.pf-m-sticky-bottom-on-lg-height,
|
621
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-lg-height,
|
622
|
+
.pf-c-page__main-tabs.pf-m-sticky-bottom-on-lg-height,
|
623
|
+
.pf-c-page__main-section.pf-m-sticky-bottom-on-lg-height,
|
624
|
+
.pf-c-page__main-wizard.pf-m-sticky-bottom-on-lg-height,
|
625
|
+
.pf-c-page__main-group.pf-m-sticky-bottom-on-lg-height,
|
626
|
+
.pf-c-page__main-subnav.pf-m-sticky-bottom-on-lg-height {
|
627
|
+
position: sticky;
|
628
|
+
bottom: 0;
|
629
|
+
z-index: var(--pf-c-page--section--m-sticky-bottom--ZIndex);
|
630
|
+
box-shadow: var(--pf-c-page--section--m-sticky-bottom--BoxShadow);
|
631
|
+
}
|
632
|
+
}
|
633
|
+
@media (min-height: 60rem) {
|
634
|
+
.pf-c-page__main-nav.pf-m-sticky-top-on-xl-height,
|
635
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-top-on-xl-height,
|
636
|
+
.pf-c-page__main-tabs.pf-m-sticky-top-on-xl-height,
|
637
|
+
.pf-c-page__main-section.pf-m-sticky-top-on-xl-height,
|
638
|
+
.pf-c-page__main-wizard.pf-m-sticky-top-on-xl-height,
|
639
|
+
.pf-c-page__main-group.pf-m-sticky-top-on-xl-height,
|
640
|
+
.pf-c-page__main-subnav.pf-m-sticky-top-on-xl-height {
|
641
|
+
position: sticky;
|
642
|
+
top: 0;
|
643
|
+
z-index: var(--pf-c-page--section--m-sticky-top--ZIndex);
|
644
|
+
box-shadow: var(--pf-c-page--section--m-sticky-top--BoxShadow);
|
645
|
+
}
|
646
|
+
.pf-c-page__main-nav.pf-m-sticky-bottom-on-xl-height,
|
647
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-xl-height,
|
648
|
+
.pf-c-page__main-tabs.pf-m-sticky-bottom-on-xl-height,
|
649
|
+
.pf-c-page__main-section.pf-m-sticky-bottom-on-xl-height,
|
650
|
+
.pf-c-page__main-wizard.pf-m-sticky-bottom-on-xl-height,
|
651
|
+
.pf-c-page__main-group.pf-m-sticky-bottom-on-xl-height,
|
652
|
+
.pf-c-page__main-subnav.pf-m-sticky-bottom-on-xl-height {
|
653
|
+
position: sticky;
|
654
|
+
bottom: 0;
|
655
|
+
z-index: var(--pf-c-page--section--m-sticky-bottom--ZIndex);
|
656
|
+
box-shadow: var(--pf-c-page--section--m-sticky-bottom--BoxShadow);
|
657
|
+
}
|
658
|
+
}
|
659
|
+
@media (min-height: 80rem) {
|
660
|
+
.pf-c-page__main-nav.pf-m-sticky-top-on-2xl-height,
|
661
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-top-on-2xl-height,
|
662
|
+
.pf-c-page__main-tabs.pf-m-sticky-top-on-2xl-height,
|
663
|
+
.pf-c-page__main-section.pf-m-sticky-top-on-2xl-height,
|
664
|
+
.pf-c-page__main-wizard.pf-m-sticky-top-on-2xl-height,
|
665
|
+
.pf-c-page__main-group.pf-m-sticky-top-on-2xl-height,
|
666
|
+
.pf-c-page__main-subnav.pf-m-sticky-top-on-2xl-height {
|
667
|
+
position: sticky;
|
668
|
+
top: 0;
|
669
|
+
z-index: var(--pf-c-page--section--m-sticky-top--ZIndex);
|
670
|
+
box-shadow: var(--pf-c-page--section--m-sticky-top--BoxShadow);
|
671
|
+
}
|
672
|
+
.pf-c-page__main-nav.pf-m-sticky-bottom-on-2xl-height,
|
673
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-2xl-height,
|
674
|
+
.pf-c-page__main-tabs.pf-m-sticky-bottom-on-2xl-height,
|
675
|
+
.pf-c-page__main-section.pf-m-sticky-bottom-on-2xl-height,
|
676
|
+
.pf-c-page__main-wizard.pf-m-sticky-bottom-on-2xl-height,
|
677
|
+
.pf-c-page__main-group.pf-m-sticky-bottom-on-2xl-height,
|
678
|
+
.pf-c-page__main-subnav.pf-m-sticky-bottom-on-2xl-height {
|
679
|
+
position: sticky;
|
680
|
+
bottom: 0;
|
681
|
+
z-index: var(--pf-c-page--section--m-sticky-bottom--ZIndex);
|
682
|
+
box-shadow: var(--pf-c-page--section--m-sticky-bottom--BoxShadow);
|
683
|
+
}
|
684
|
+
}
|
555
685
|
|
556
686
|
.pf-c-page__main,
|
557
687
|
.pf-c-page__drawer {
|
@@ -29,11 +29,21 @@ declare const _default: {
|
|
29
29
|
"collapsed": "pf-m-collapsed",
|
30
30
|
"limitWidth": "pf-m-limit-width",
|
31
31
|
"alignCenter": "pf-m-align-center",
|
32
|
-
"stickyTop": "pf-m-sticky-top",
|
33
|
-
"stickyBottom": "pf-m-sticky-bottom",
|
34
32
|
"overflowScroll": "pf-m-overflow-scroll",
|
35
33
|
"shadowBottom": "pf-m-shadow-bottom",
|
36
34
|
"shadowTop": "pf-m-shadow-top",
|
35
|
+
"stickyTop": "pf-m-sticky-top",
|
36
|
+
"stickyBottom": "pf-m-sticky-bottom",
|
37
|
+
"stickyTopOnSmHeight": "pf-m-sticky-top-on-sm-height",
|
38
|
+
"stickyBottomOnSmHeight": "pf-m-sticky-bottom-on-sm-height",
|
39
|
+
"stickyTopOnMdHeight": "pf-m-sticky-top-on-md-height",
|
40
|
+
"stickyBottomOnMdHeight": "pf-m-sticky-bottom-on-md-height",
|
41
|
+
"stickyTopOnLgHeight": "pf-m-sticky-top-on-lg-height",
|
42
|
+
"stickyBottomOnLgHeight": "pf-m-sticky-bottom-on-lg-height",
|
43
|
+
"stickyTopOnXlHeight": "pf-m-sticky-top-on-xl-height",
|
44
|
+
"stickyBottomOnXlHeight": "pf-m-sticky-bottom-on-xl-height",
|
45
|
+
"stickyTopOn_2xlHeight": "pf-m-sticky-top-on-2xl-height",
|
46
|
+
"stickyBottomOn_2xlHeight": "pf-m-sticky-bottom-on-2xl-height",
|
37
47
|
"fill": "pf-m-fill",
|
38
48
|
"noFill": "pf-m-no-fill",
|
39
49
|
"light_100": "pf-m-light-100",
|
@@ -31,11 +31,21 @@ exports.default = {
|
|
31
31
|
"collapsed": "pf-m-collapsed",
|
32
32
|
"limitWidth": "pf-m-limit-width",
|
33
33
|
"alignCenter": "pf-m-align-center",
|
34
|
-
"stickyTop": "pf-m-sticky-top",
|
35
|
-
"stickyBottom": "pf-m-sticky-bottom",
|
36
34
|
"overflowScroll": "pf-m-overflow-scroll",
|
37
35
|
"shadowBottom": "pf-m-shadow-bottom",
|
38
36
|
"shadowTop": "pf-m-shadow-top",
|
37
|
+
"stickyTop": "pf-m-sticky-top",
|
38
|
+
"stickyBottom": "pf-m-sticky-bottom",
|
39
|
+
"stickyTopOnSmHeight": "pf-m-sticky-top-on-sm-height",
|
40
|
+
"stickyBottomOnSmHeight": "pf-m-sticky-bottom-on-sm-height",
|
41
|
+
"stickyTopOnMdHeight": "pf-m-sticky-top-on-md-height",
|
42
|
+
"stickyBottomOnMdHeight": "pf-m-sticky-bottom-on-md-height",
|
43
|
+
"stickyTopOnLgHeight": "pf-m-sticky-top-on-lg-height",
|
44
|
+
"stickyBottomOnLgHeight": "pf-m-sticky-bottom-on-lg-height",
|
45
|
+
"stickyTopOnXlHeight": "pf-m-sticky-top-on-xl-height",
|
46
|
+
"stickyBottomOnXlHeight": "pf-m-sticky-bottom-on-xl-height",
|
47
|
+
"stickyTopOn_2xlHeight": "pf-m-sticky-top-on-2xl-height",
|
48
|
+
"stickyBottomOn_2xlHeight": "pf-m-sticky-bottom-on-2xl-height",
|
39
49
|
"fill": "pf-m-fill",
|
40
50
|
"noFill": "pf-m-no-fill",
|
41
51
|
"light_100": "pf-m-light-100",
|
@@ -29,11 +29,21 @@ export default {
|
|
29
29
|
"collapsed": "pf-m-collapsed",
|
30
30
|
"limitWidth": "pf-m-limit-width",
|
31
31
|
"alignCenter": "pf-m-align-center",
|
32
|
-
"stickyTop": "pf-m-sticky-top",
|
33
|
-
"stickyBottom": "pf-m-sticky-bottom",
|
34
32
|
"overflowScroll": "pf-m-overflow-scroll",
|
35
33
|
"shadowBottom": "pf-m-shadow-bottom",
|
36
34
|
"shadowTop": "pf-m-shadow-top",
|
35
|
+
"stickyTop": "pf-m-sticky-top",
|
36
|
+
"stickyBottom": "pf-m-sticky-bottom",
|
37
|
+
"stickyTopOnSmHeight": "pf-m-sticky-top-on-sm-height",
|
38
|
+
"stickyBottomOnSmHeight": "pf-m-sticky-bottom-on-sm-height",
|
39
|
+
"stickyTopOnMdHeight": "pf-m-sticky-top-on-md-height",
|
40
|
+
"stickyBottomOnMdHeight": "pf-m-sticky-bottom-on-md-height",
|
41
|
+
"stickyTopOnLgHeight": "pf-m-sticky-top-on-lg-height",
|
42
|
+
"stickyBottomOnLgHeight": "pf-m-sticky-bottom-on-lg-height",
|
43
|
+
"stickyTopOnXlHeight": "pf-m-sticky-top-on-xl-height",
|
44
|
+
"stickyBottomOnXlHeight": "pf-m-sticky-bottom-on-xl-height",
|
45
|
+
"stickyTopOn_2xlHeight": "pf-m-sticky-top-on-2xl-height",
|
46
|
+
"stickyBottomOn_2xlHeight": "pf-m-sticky-bottom-on-2xl-height",
|
37
47
|
"fill": "pf-m-fill",
|
38
48
|
"noFill": "pf-m-no-fill",
|
39
49
|
"light_100": "pf-m-light-100",
|