@patternfly/patternfly 6.2.0-prerelease.17 → 6.2.0-prerelease.19
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 +17 -0
- package/components/Card/card.scss +22 -0
- package/components/Page/page.css +16 -1
- package/components/Page/page.scss +17 -3
- package/components/_index.css +33 -1
- package/docs/components/Card/examples/Card.md +30 -0
- package/docs/components/Tabs/examples/Tabs.md +145 -3
- package/package.json +1 -1
- package/patternfly-no-globals.css +33 -1
- package/patternfly.css +33 -1
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/docs/components/TabContent/examples/TabContent.md +0 -153
package/components/Card/card.css
CHANGED
|
@@ -23,6 +23,8 @@
|
|
|
23
23
|
--pf-v6-c-card__actions--Gap: var(--pf-t--global--spacer--gap--action-to-action--default);
|
|
24
24
|
--pf-v6-c-card__actions--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
25
25
|
--pf-v6-c-card__actions--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
26
|
+
--pf-v6-c-card__header--m-wrap--RowGap: var(--pf-t--global--spacer--sm);
|
|
27
|
+
--pf-v6-c-card__header--m-wrap--ColumnGap: var(--pf-t--global--spacer--md);
|
|
26
28
|
--pf-v6-c-card__header-toggle--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
27
29
|
--pf-v6-c-card__header-toggle--MarginInlineEnd: var(--pf-t--global--spacer--gap--text-to-element--default);
|
|
28
30
|
--pf-v6-c-card__header-toggle--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
@@ -186,6 +188,21 @@
|
|
|
186
188
|
.pf-v6-c-card__header.pf-m-toggle-right .pf-v6-c-card__header-toggle {
|
|
187
189
|
order: 2;
|
|
188
190
|
}
|
|
191
|
+
.pf-v6-c-card__header.pf-m-wrap {
|
|
192
|
+
--pf-v6-c-card__actions--PaddingInlineStart: 0;
|
|
193
|
+
gap: var(--pf-v6-c-card__header--m-wrap--RowGap) var(--pf-v6-c-card__header--m-wrap--ColumnGap);
|
|
194
|
+
}
|
|
195
|
+
.pf-v6-c-card__header.pf-m-wrap,
|
|
196
|
+
.pf-v6-c-card__header.pf-m-wrap .pf-v6-c-card__actions {
|
|
197
|
+
flex-wrap: wrap;
|
|
198
|
+
row-gap: var(--pf-v6-c-card__header--m-wrap--RowGap);
|
|
199
|
+
}
|
|
200
|
+
.pf-v6-c-card__header.pf-m-wrap .pf-v6-c-card__actions {
|
|
201
|
+
margin-inline-start: 0;
|
|
202
|
+
}
|
|
203
|
+
.pf-v6-c-card__header.pf-m-wrap .pf-v6-c-card__actions + * {
|
|
204
|
+
margin-inline-end: auto;
|
|
205
|
+
}
|
|
189
206
|
|
|
190
207
|
.pf-v6-c-card__header-main {
|
|
191
208
|
flex-grow: 1;
|
|
@@ -25,6 +25,8 @@
|
|
|
25
25
|
--#{$card}__actions--Gap: var(--pf-t--global--spacer--gap--action-to-action--default);
|
|
26
26
|
--#{$card}__actions--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
27
27
|
--#{$card}__actions--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
28
|
+
--#{$card}__header--m-wrap--RowGap: var(--pf-t--global--spacer--sm);
|
|
29
|
+
--#{$card}__header--m-wrap--ColumnGap: var(--pf-t--global--spacer--md);
|
|
28
30
|
|
|
29
31
|
// Expandable
|
|
30
32
|
--#{$card}__header-toggle--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
@@ -265,6 +267,26 @@
|
|
|
265
267
|
order: 2;
|
|
266
268
|
}
|
|
267
269
|
}
|
|
270
|
+
|
|
271
|
+
&.pf-m-wrap {
|
|
272
|
+
--pf-v6-c-card__actions--PaddingInlineStart: 0;
|
|
273
|
+
|
|
274
|
+
gap: var(--#{$card}__header--m-wrap--RowGap) var(--#{$card}__header--m-wrap--ColumnGap);
|
|
275
|
+
|
|
276
|
+
&,
|
|
277
|
+
.#{$card}__actions {
|
|
278
|
+
flex-wrap: wrap;
|
|
279
|
+
row-gap: var(--#{$card}__header--m-wrap--RowGap);
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.#{$card}__actions {
|
|
283
|
+
+ * {
|
|
284
|
+
margin-inline-end: auto;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
margin-inline-start: 0
|
|
288
|
+
}
|
|
289
|
+
}
|
|
268
290
|
}
|
|
269
291
|
|
|
270
292
|
.#{$card}__header-main {
|
package/components/Page/page.css
CHANGED
|
@@ -36,12 +36,18 @@
|
|
|
36
36
|
--pf-v6-c-page__main-container--GridArea: main;
|
|
37
37
|
--pf-v6-c-page--masthead--main-container--GridArea: sidebar / sidebar / main / main;
|
|
38
38
|
--pf-v6-c-page__main-container--MaxHeight: calc(100% - var(--pf-t--global--spacer--lg));
|
|
39
|
+
--pf-v6-c-page__main-container--AlignSelf: start;
|
|
39
40
|
--pf-v6-c-page__main-container--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
40
41
|
--pf-v6-c-page__main-container--MarginInlineStart: var(--pf-v6-c-page--inset);
|
|
41
42
|
--pf-v6-c-page__main-container--MarginInlineEnd: var(--pf-v6-c-page--inset);
|
|
42
43
|
--pf-v6-c-page__main-container--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
43
44
|
--pf-v6-c-page__main-container--BorderWidth: 0.25rem;
|
|
44
45
|
--pf-v6-c-page__main-container--BorderColor: var(--pf-v6-c-page__main-container--BackgroundColor);
|
|
46
|
+
--pf-v6-c-page__main-container--xs--AlignSelf: stretch;
|
|
47
|
+
--pf-v6-c-page__main-container--xs--BorderRadius: 0;
|
|
48
|
+
--pf-v6-c-page__main-container--xs--MarginInlineStart: 0;
|
|
49
|
+
--pf-v6-c-page__main-container--xs--MaxHeight: 100%;
|
|
50
|
+
--pf-v6-c-page__main-container--xs--MarginInlineEnd: 0;
|
|
45
51
|
--pf-v6-c-page__main-section--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
46
52
|
--pf-v6-c-page__main-section--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
|
|
47
53
|
--pf-v6-c-page__main-section--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
@@ -399,7 +405,7 @@
|
|
|
399
405
|
.pf-v6-c-page__main-container {
|
|
400
406
|
display: flex;
|
|
401
407
|
flex-direction: column;
|
|
402
|
-
align-self:
|
|
408
|
+
align-self: var(--pf-v6-c-page__main-container--AlignSelf);
|
|
403
409
|
max-height: var(--pf-v6-c-page__main-container--MaxHeight);
|
|
404
410
|
margin-inline-start: var(--pf-v6-c-page__main-container--MarginInlineStart);
|
|
405
411
|
margin-inline-end: var(--pf-v6-c-page__main-container--MarginInlineEnd);
|
|
@@ -407,6 +413,15 @@
|
|
|
407
413
|
border: var(--pf-v6-c-page__main-container--BorderWidth) solid var(--pf-v6-c-page__main-container--BorderColor);
|
|
408
414
|
border-radius: var(--pf-v6-c-page__main-container--BorderRadius);
|
|
409
415
|
}
|
|
416
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
|
417
|
+
.pf-v6-c-page__main-container {
|
|
418
|
+
--pf-v6-c-page__main-container--AlignSelf: var(--pf-v6-c-page__main-container--xs--AlignSelf);
|
|
419
|
+
--pf-v6-c-page__main-container--MarginInlineStart: var(--pf-v6-c-page__main-container--xs--MarginInlineStart);
|
|
420
|
+
--pf-v6-c-page__main-container--MarginInlineEnd: var(--pf-v6-c-page__main-container--xs--MarginInlineEnd);
|
|
421
|
+
--pf-v6-c-page__main-container--MaxHeight: var(--pf-v6-c-page__main-container--xs--MaxHeight);
|
|
422
|
+
--pf-v6-c-page__main-container--BorderRadius: var(--pf-v6-c-page__main-container--xs--BorderRadius);
|
|
423
|
+
}
|
|
424
|
+
}
|
|
410
425
|
|
|
411
426
|
.pf-v6-c-page__main-container,
|
|
412
427
|
.pf-v6-c-page__drawer {
|
|
@@ -60,12 +60,18 @@ $pf-page-v6--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
|
|
|
60
60
|
--#{$page}__main-container--GridArea: main;
|
|
61
61
|
--#{$page}--masthead--main-container--GridArea: sidebar / sidebar / main / main; // no sidebar
|
|
62
62
|
--#{$page}__main-container--MaxHeight: calc(100% - var(--pf-t--global--spacer--lg));
|
|
63
|
+
--#{$page}__main-container--AlignSelf: start;
|
|
63
64
|
--#{$page}__main-container--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
64
|
-
--#{$page}__main-container--MarginInlineStart: var(--#{$page}--inset);
|
|
65
|
+
--#{$page}__main-container--MarginInlineStart: var(--#{$page}--inset);
|
|
65
66
|
--#{$page}__main-container--MarginInlineEnd: var(--#{$page}--inset);
|
|
66
67
|
--#{$page}__main-container--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
67
68
|
--#{$page}__main-container--BorderWidth: #{pf-size-prem(4px)}; // TODO Change to be a page outline token
|
|
68
69
|
--#{$page}__main-container--BorderColor: var(--#{$page}__main-container--BackgroundColor); // TODO Border should match the background to blend in - change to be a page outline token
|
|
70
|
+
--#{$page}__main-container--xs--AlignSelf: stretch;
|
|
71
|
+
--#{$page}__main-container--xs--BorderRadius: 0;
|
|
72
|
+
--#{$page}__main-container--xs--MarginInlineStart: 0;
|
|
73
|
+
--#{$page}__main-container--xs--MaxHeight: 100%;
|
|
74
|
+
--#{$page}__main-container--xs--MarginInlineEnd: 0;
|
|
69
75
|
|
|
70
76
|
// Main section
|
|
71
77
|
--#{$page}__main-section--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -80,7 +86,7 @@ $pf-page-v6--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
|
|
|
80
86
|
|
|
81
87
|
// Limit width
|
|
82
88
|
--#{$page}--section--m-limit-width--MaxWidth: calc(#{pf-size-prem(2000px)} - var(--#{$page}__sidebar--Width));
|
|
83
|
-
|
|
89
|
+
|
|
84
90
|
// Sticky
|
|
85
91
|
--#{$page}--section--m-sticky-top--ZIndex: var(--pf-t--global--z-index--md);
|
|
86
92
|
--#{$page}--section--m-sticky-top--BoxShadow: var(--pf-t--global--box-shadow--sm--bottom);
|
|
@@ -320,13 +326,21 @@ $pf-page-v6--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
|
|
|
320
326
|
.#{$page}__main-container {
|
|
321
327
|
display: flex;
|
|
322
328
|
flex-direction: column;
|
|
323
|
-
align-self:
|
|
329
|
+
align-self: var(--#{$page}__main-container--AlignSelf);
|
|
324
330
|
max-height: var(--#{$page}__main-container--MaxHeight);
|
|
325
331
|
margin-inline-start: var(--#{$page}__main-container--MarginInlineStart);
|
|
326
332
|
margin-inline-end: var(--#{$page}__main-container--MarginInlineEnd);
|
|
327
333
|
background: var(--#{$page}__main-container--BackgroundColor);
|
|
328
334
|
border: var(--#{$page}__main-container--BorderWidth) solid var(--#{$page}__main-container--BorderColor);
|
|
329
335
|
border-radius: var(--#{$page}__main-container--BorderRadius);
|
|
336
|
+
|
|
337
|
+
@media screen and (max-width: pf-v6-max-width-bp($pf-v6-global--breakpoint--md)) {
|
|
338
|
+
--#{$page}__main-container--AlignSelf: var(--#{$page}__main-container--xs--AlignSelf);
|
|
339
|
+
--#{$page}__main-container--MarginInlineStart: var(--#{$page}__main-container--xs--MarginInlineStart);
|
|
340
|
+
--#{$page}__main-container--MarginInlineEnd: var(--#{$page}__main-container--xs--MarginInlineEnd);
|
|
341
|
+
--#{$page}__main-container--MaxHeight: var(--#{$page}__main-container--xs--MaxHeight);
|
|
342
|
+
--#{$page}__main-container--BorderRadius: var(--#{$page}__main-container--xs--BorderRadius);
|
|
343
|
+
}
|
|
330
344
|
}
|
|
331
345
|
|
|
332
346
|
.#{$page}__main-container,
|
package/components/_index.css
CHANGED
|
@@ -2310,6 +2310,8 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
2310
2310
|
--pf-v6-c-card__actions--Gap: var(--pf-t--global--spacer--gap--action-to-action--default);
|
|
2311
2311
|
--pf-v6-c-card__actions--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
2312
2312
|
--pf-v6-c-card__actions--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
2313
|
+
--pf-v6-c-card__header--m-wrap--RowGap: var(--pf-t--global--spacer--sm);
|
|
2314
|
+
--pf-v6-c-card__header--m-wrap--ColumnGap: var(--pf-t--global--spacer--md);
|
|
2313
2315
|
--pf-v6-c-card__header-toggle--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
2314
2316
|
--pf-v6-c-card__header-toggle--MarginInlineEnd: var(--pf-t--global--spacer--gap--text-to-element--default);
|
|
2315
2317
|
--pf-v6-c-card__header-toggle--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
@@ -2473,6 +2475,21 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
2473
2475
|
.pf-v6-c-card__header.pf-m-toggle-right .pf-v6-c-card__header-toggle {
|
|
2474
2476
|
order: 2;
|
|
2475
2477
|
}
|
|
2478
|
+
.pf-v6-c-card__header.pf-m-wrap {
|
|
2479
|
+
--pf-v6-c-card__actions--PaddingInlineStart: 0;
|
|
2480
|
+
gap: var(--pf-v6-c-card__header--m-wrap--RowGap) var(--pf-v6-c-card__header--m-wrap--ColumnGap);
|
|
2481
|
+
}
|
|
2482
|
+
.pf-v6-c-card__header.pf-m-wrap,
|
|
2483
|
+
.pf-v6-c-card__header.pf-m-wrap .pf-v6-c-card__actions {
|
|
2484
|
+
flex-wrap: wrap;
|
|
2485
|
+
row-gap: var(--pf-v6-c-card__header--m-wrap--RowGap);
|
|
2486
|
+
}
|
|
2487
|
+
.pf-v6-c-card__header.pf-m-wrap .pf-v6-c-card__actions {
|
|
2488
|
+
margin-inline-start: 0;
|
|
2489
|
+
}
|
|
2490
|
+
.pf-v6-c-card__header.pf-m-wrap .pf-v6-c-card__actions + * {
|
|
2491
|
+
margin-inline-end: auto;
|
|
2492
|
+
}
|
|
2476
2493
|
|
|
2477
2494
|
.pf-v6-c-card__header-main {
|
|
2478
2495
|
flex-grow: 1;
|
|
@@ -11652,12 +11669,18 @@ ul.pf-v6-c-list {
|
|
|
11652
11669
|
--pf-v6-c-page__main-container--GridArea: main;
|
|
11653
11670
|
--pf-v6-c-page--masthead--main-container--GridArea: sidebar / sidebar / main / main;
|
|
11654
11671
|
--pf-v6-c-page__main-container--MaxHeight: calc(100% - var(--pf-t--global--spacer--lg));
|
|
11672
|
+
--pf-v6-c-page__main-container--AlignSelf: start;
|
|
11655
11673
|
--pf-v6-c-page__main-container--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
11656
11674
|
--pf-v6-c-page__main-container--MarginInlineStart: var(--pf-v6-c-page--inset);
|
|
11657
11675
|
--pf-v6-c-page__main-container--MarginInlineEnd: var(--pf-v6-c-page--inset);
|
|
11658
11676
|
--pf-v6-c-page__main-container--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
11659
11677
|
--pf-v6-c-page__main-container--BorderWidth: 0.25rem;
|
|
11660
11678
|
--pf-v6-c-page__main-container--BorderColor: var(--pf-v6-c-page__main-container--BackgroundColor);
|
|
11679
|
+
--pf-v6-c-page__main-container--xs--AlignSelf: stretch;
|
|
11680
|
+
--pf-v6-c-page__main-container--xs--BorderRadius: 0;
|
|
11681
|
+
--pf-v6-c-page__main-container--xs--MarginInlineStart: 0;
|
|
11682
|
+
--pf-v6-c-page__main-container--xs--MaxHeight: 100%;
|
|
11683
|
+
--pf-v6-c-page__main-container--xs--MarginInlineEnd: 0;
|
|
11661
11684
|
--pf-v6-c-page__main-section--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
11662
11685
|
--pf-v6-c-page__main-section--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
|
|
11663
11686
|
--pf-v6-c-page__main-section--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
@@ -12015,7 +12038,7 @@ ul.pf-v6-c-list {
|
|
|
12015
12038
|
.pf-v6-c-page__main-container {
|
|
12016
12039
|
display: flex;
|
|
12017
12040
|
flex-direction: column;
|
|
12018
|
-
align-self:
|
|
12041
|
+
align-self: var(--pf-v6-c-page__main-container--AlignSelf);
|
|
12019
12042
|
max-height: var(--pf-v6-c-page__main-container--MaxHeight);
|
|
12020
12043
|
margin-inline-start: var(--pf-v6-c-page__main-container--MarginInlineStart);
|
|
12021
12044
|
margin-inline-end: var(--pf-v6-c-page__main-container--MarginInlineEnd);
|
|
@@ -12023,6 +12046,15 @@ ul.pf-v6-c-list {
|
|
|
12023
12046
|
border: var(--pf-v6-c-page__main-container--BorderWidth) solid var(--pf-v6-c-page__main-container--BorderColor);
|
|
12024
12047
|
border-radius: var(--pf-v6-c-page__main-container--BorderRadius);
|
|
12025
12048
|
}
|
|
12049
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
|
12050
|
+
.pf-v6-c-page__main-container {
|
|
12051
|
+
--pf-v6-c-page__main-container--AlignSelf: var(--pf-v6-c-page__main-container--xs--AlignSelf);
|
|
12052
|
+
--pf-v6-c-page__main-container--MarginInlineStart: var(--pf-v6-c-page__main-container--xs--MarginInlineStart);
|
|
12053
|
+
--pf-v6-c-page__main-container--MarginInlineEnd: var(--pf-v6-c-page__main-container--xs--MarginInlineEnd);
|
|
12054
|
+
--pf-v6-c-page__main-container--MaxHeight: var(--pf-v6-c-page__main-container--xs--MaxHeight);
|
|
12055
|
+
--pf-v6-c-page__main-container--BorderRadius: var(--pf-v6-c-page__main-container--xs--BorderRadius);
|
|
12056
|
+
}
|
|
12057
|
+
}
|
|
12026
12058
|
|
|
12027
12059
|
.pf-v6-c-page__main-container,
|
|
12028
12060
|
.pf-v6-c-page__drawer {
|
|
@@ -212,6 +212,35 @@ cssPrefix: pf-v6-c-card
|
|
|
212
212
|
|
|
213
213
|
```
|
|
214
214
|
|
|
215
|
+
### Card with header that wraps
|
|
216
|
+
|
|
217
|
+
```html
|
|
218
|
+
<div class="pf-v6-c-card">
|
|
219
|
+
<div class="pf-v6-c-card__header pf-m-wrap">
|
|
220
|
+
<div class="pf-v6-c-card__actions pf-m-no-offset">
|
|
221
|
+
<button class="pf-v6-c-button pf-m-primary" type="button">
|
|
222
|
+
<span class="pf-v6-c-button__text">Primary action</span>
|
|
223
|
+
</button>
|
|
224
|
+
|
|
225
|
+
<button class="pf-v6-c-button pf-m-secondary" type="button">
|
|
226
|
+
<span class="pf-v6-c-button__text">Secondary action</span>
|
|
227
|
+
</button>
|
|
228
|
+
|
|
229
|
+
<button class="pf-v6-c-button pf-m-tertiary" type="button">
|
|
230
|
+
<span class="pf-v6-c-button__text">Tertiary action</span>
|
|
231
|
+
</button>
|
|
232
|
+
</div>
|
|
233
|
+
<div class="pf-v6-c-card__title">
|
|
234
|
+
<h2
|
|
235
|
+
class="pf-v6-c-card__title-text"
|
|
236
|
+
>This is a longer card title that takes up more space</h2>
|
|
237
|
+
</div>
|
|
238
|
+
</div>
|
|
239
|
+
<div class="pf-v6-c-card__body">This is the card body</div>
|
|
240
|
+
</div>
|
|
241
|
+
|
|
242
|
+
```
|
|
243
|
+
|
|
215
244
|
### Actions with no offset
|
|
216
245
|
|
|
217
246
|
```html
|
|
@@ -1690,6 +1719,7 @@ A card is a generic rectangular container that can be used to build other compon
|
|
|
1690
1719
|
| `.pf-v6-c-card__sr-input` | `<input>` | Creates an input which, when focused, makes a following `.pf-v6-c-card` appear focused. |
|
|
1691
1720
|
| `.pf-m-compact` | `.pf-v6-c-card` | Creates a compact variation of the card component that involves smaller font sizes and spacing. This variation is for use on dashboards and where a smaller card is preferred. |
|
|
1692
1721
|
| `.pf-m-display-lg` | `.pf-v6-c-card` | Creates a large variation of the card component that involves larger font sizes and spacing. This variation is for marketing use cases. |
|
|
1722
|
+
| `.pf-m-wrap` | `.pf-v6-c-card__header` | Modifies the card header to wrap its children. |
|
|
1693
1723
|
| `.pf-m-no-fill` | `.pf-v6-c-card__body` | Sets a `.pf-v6-c-card__body` not to fill the available space in `.pf-v6-c-card`. `.pf-m-no-fill` can be added to multiple card bodies. |
|
|
1694
1724
|
| `.pf-m-selectable` | `.pf-v6-c-card` | Modifies a card to be selectable. |
|
|
1695
1725
|
| `.pf-m-clickable` | `.pf-v6-c-card` | Modifies a card to be clickable. |
|
|
@@ -9099,14 +9099,137 @@ cssPrefix: pf-v6-c-tabs
|
|
|
9099
9099
|
|
|
9100
9100
|
```
|
|
9101
9101
|
|
|
9102
|
+
## Tab content
|
|
9103
|
+
|
|
9104
|
+
### Default tab content example
|
|
9105
|
+
|
|
9106
|
+
```html
|
|
9107
|
+
<section
|
|
9108
|
+
class="pf-v6-c-tab-content"
|
|
9109
|
+
id="basic-tab1-panel"
|
|
9110
|
+
role="tabpanel"
|
|
9111
|
+
tabindex="0"
|
|
9112
|
+
>
|
|
9113
|
+
<div class="pf-v6-c-tab-content__body">Panel 1</div>
|
|
9114
|
+
</section>
|
|
9115
|
+
<section
|
|
9116
|
+
class="pf-v6-c-tab-content"
|
|
9117
|
+
id="basic-tab2-panel"
|
|
9118
|
+
role="tabpanel"
|
|
9119
|
+
tabindex="0"
|
|
9120
|
+
hidden
|
|
9121
|
+
>
|
|
9122
|
+
<div class="pf-v6-c-tab-content__body">Panel 2</div>
|
|
9123
|
+
</section>
|
|
9124
|
+
<section
|
|
9125
|
+
class="pf-v6-c-tab-content"
|
|
9126
|
+
id="basic-tab3-panel"
|
|
9127
|
+
role="tabpanel"
|
|
9128
|
+
tabindex="0"
|
|
9129
|
+
hidden
|
|
9130
|
+
>
|
|
9131
|
+
<div class="pf-v6-c-tab-content__body">Panel 3</div>
|
|
9132
|
+
</section>
|
|
9133
|
+
<section
|
|
9134
|
+
class="pf-v6-c-tab-content"
|
|
9135
|
+
id="basic-tab4-panel"
|
|
9136
|
+
role="tabpanel"
|
|
9137
|
+
tabindex="0"
|
|
9138
|
+
hidden
|
|
9139
|
+
>
|
|
9140
|
+
<div class="pf-v6-c-tab-content__body">Panel 4</div>
|
|
9141
|
+
</section>
|
|
9142
|
+
|
|
9143
|
+
```
|
|
9144
|
+
|
|
9145
|
+
### Padding
|
|
9146
|
+
|
|
9147
|
+
```html
|
|
9148
|
+
<section
|
|
9149
|
+
class="pf-v6-c-tab-content"
|
|
9150
|
+
id="tab1-panel-with-padding"
|
|
9151
|
+
role="tabpanel"
|
|
9152
|
+
tabindex="0"
|
|
9153
|
+
>
|
|
9154
|
+
<div class="pf-v6-c-tab-content__body pf-m-padding">Panel 1</div>
|
|
9155
|
+
</section>
|
|
9156
|
+
<section
|
|
9157
|
+
class="pf-v6-c-tab-content"
|
|
9158
|
+
id="tab2-panel-with-padding"
|
|
9159
|
+
role="tabpanel"
|
|
9160
|
+
tabindex="0"
|
|
9161
|
+
hidden
|
|
9162
|
+
>
|
|
9163
|
+
<div class="pf-v6-c-tab-content__body pf-m-padding">Panel 2</div>
|
|
9164
|
+
</section>
|
|
9165
|
+
<section
|
|
9166
|
+
class="pf-v6-c-tab-content"
|
|
9167
|
+
id="tab3-panel-with-padding"
|
|
9168
|
+
role="tabpanel"
|
|
9169
|
+
tabindex="0"
|
|
9170
|
+
hidden
|
|
9171
|
+
>
|
|
9172
|
+
<div class="pf-v6-c-tab-content__body pf-m-padding">Panel 3</div>
|
|
9173
|
+
</section>
|
|
9174
|
+
<section
|
|
9175
|
+
class="pf-v6-c-tab-content"
|
|
9176
|
+
id="tab4-panel-with-padding"
|
|
9177
|
+
role="tabpanel"
|
|
9178
|
+
tabindex="0"
|
|
9179
|
+
hidden
|
|
9180
|
+
>
|
|
9181
|
+
<div class="pf-v6-c-tab-content__body pf-m-padding">Panel 4</div>
|
|
9182
|
+
</section>
|
|
9183
|
+
|
|
9184
|
+
```
|
|
9185
|
+
|
|
9186
|
+
### Secondary
|
|
9187
|
+
|
|
9188
|
+
```html
|
|
9189
|
+
<section
|
|
9190
|
+
class="pf-v6-c-tab-content pf-m-secondary"
|
|
9191
|
+
id="secondary-tab1-panel"
|
|
9192
|
+
role="tabpanel"
|
|
9193
|
+
tabindex="0"
|
|
9194
|
+
>
|
|
9195
|
+
<div class="pf-v6-c-tab-content__body">Panel 1</div>
|
|
9196
|
+
</section>
|
|
9197
|
+
<section
|
|
9198
|
+
class="pf-v6-c-tab-content pf-m-secondary"
|
|
9199
|
+
id="secondary-tab2-panel"
|
|
9200
|
+
role="tabpanel"
|
|
9201
|
+
tabindex="0"
|
|
9202
|
+
hidden
|
|
9203
|
+
>
|
|
9204
|
+
<div class="pf-v6-c-tab-content__body">Panel 2</div>
|
|
9205
|
+
</section>
|
|
9206
|
+
<section
|
|
9207
|
+
class="pf-v6-c-tab-content pf-m-secondary"
|
|
9208
|
+
id="secondary-tab3-panel"
|
|
9209
|
+
role="tabpanel"
|
|
9210
|
+
tabindex="0"
|
|
9211
|
+
hidden
|
|
9212
|
+
>
|
|
9213
|
+
<div class="pf-v6-c-tab-content__body">Panel 3</div>
|
|
9214
|
+
</section>
|
|
9215
|
+
<section
|
|
9216
|
+
class="pf-v6-c-tab-content pf-m-secondary"
|
|
9217
|
+
id="secondary-tab4-panel"
|
|
9218
|
+
role="tabpanel"
|
|
9219
|
+
tabindex="0"
|
|
9220
|
+
hidden
|
|
9221
|
+
>
|
|
9222
|
+
<div class="pf-v6-c-tab-content__body">Panel 4</div>
|
|
9223
|
+
</section>
|
|
9224
|
+
|
|
9225
|
+
```
|
|
9226
|
+
|
|
9102
9227
|
## Documentation
|
|
9103
9228
|
|
|
9104
|
-
###
|
|
9229
|
+
### Tabs overview
|
|
9105
9230
|
|
|
9106
9231
|
The tabs component should only be used to change content views within a page. The similar-looking but semantically different [horizontal nav component](/components/navigation/#horizontal) is available for general navigation use cases.
|
|
9107
9232
|
|
|
9108
|
-
Tabs should be used with the [tab content component](/components/tab-content).
|
|
9109
|
-
|
|
9110
9233
|
Whenever a list of tabs is unique on the current page, it can be used in a `<nav>` element. Cases where the same set of tabs are duplicated in multiple regions on a page (e.g. cards on a dashboard) are less likely to benefit from using the `<nav>` element.
|
|
9111
9234
|
|
|
9112
9235
|
### Usage
|
|
@@ -9144,3 +9267,22 @@ Whenever a list of tabs is unique on the current page, it can be used in a `<nav
|
|
|
9144
9267
|
| `.pf-m-expanded` | `.pf-v6-c-tabs` | Modifies the expandable tabs component for the expanded state. |
|
|
9145
9268
|
| `.pf-m-disabled` | `a.pf-v6-c-tabs__link` | Modifies a tabs link for disabled styles. |
|
|
9146
9269
|
| `.pf-m-aria-disabled` | `.pf-v6-c-tabs__link` | Modifies a tabs link for disabled styles, but is still hoverable/focusable. |
|
|
9270
|
+
|
|
9271
|
+
### Tab content accessibility
|
|
9272
|
+
|
|
9273
|
+
| Attribute | Applied to | Outcome |
|
|
9274
|
+
| -- | -- | -- |
|
|
9275
|
+
| `role="tabpanel"` | `.pf-v6-c-tab-content` | Indicates that the element serves as a container for a set of tabs. **Required** |
|
|
9276
|
+
| `aria-labelledby=[ID of tab element]` | `.pf-v6-c-tab-content` | Provides an accessible name for the tab panel by referring to the tab element that controls it. **Required**
|
|
9277
|
+
| `id=[ID of tab panel]` | `.pf-v6-c-tab-content` | Provides an ID for the tab panel, and should be used as the value of `aria-controls` on the tab element that controls the panel. **Required**
|
|
9278
|
+
| `hidden` | `.pf-v6-c-tab-content` | Indicates that the tab panel is not visible. **Required on all but the active tab panel**
|
|
9279
|
+
| `tabindex="0"` | `.pf-v6-c-tab-content` | Puts the tab panel in the page tab sequence and facilitates movement to panel content for assistive technology users. **Required**
|
|
9280
|
+
|
|
9281
|
+
### Tab content usage
|
|
9282
|
+
|
|
9283
|
+
| Class | Applied to | Outcome |
|
|
9284
|
+
| -- | -- | -- |
|
|
9285
|
+
| `.pf-v6-c-tab-content` | `<section>` | Initiates the tab content component. **Required** |
|
|
9286
|
+
| `.pf-v6-c-tab-content__body` | `<div>` | Initiates the tab content body component. |
|
|
9287
|
+
| `.pf-m-padding` | `.pf-v6-c-tab-content__body` | Modifies the tab content body component padding. |
|
|
9288
|
+
| `.pf-m-secondary` | `.pf-v6-c-tab-content` | Modifies the tab content component for secondary styles. |
|
package/package.json
CHANGED
|
@@ -9772,6 +9772,8 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
9772
9772
|
--pf-v6-c-card__actions--Gap: var(--pf-t--global--spacer--gap--action-to-action--default);
|
|
9773
9773
|
--pf-v6-c-card__actions--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
9774
9774
|
--pf-v6-c-card__actions--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
9775
|
+
--pf-v6-c-card__header--m-wrap--RowGap: var(--pf-t--global--spacer--sm);
|
|
9776
|
+
--pf-v6-c-card__header--m-wrap--ColumnGap: var(--pf-t--global--spacer--md);
|
|
9775
9777
|
--pf-v6-c-card__header-toggle--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
9776
9778
|
--pf-v6-c-card__header-toggle--MarginInlineEnd: var(--pf-t--global--spacer--gap--text-to-element--default);
|
|
9777
9779
|
--pf-v6-c-card__header-toggle--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
@@ -9935,6 +9937,21 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
9935
9937
|
.pf-v6-c-card__header.pf-m-toggle-right .pf-v6-c-card__header-toggle {
|
|
9936
9938
|
order: 2;
|
|
9937
9939
|
}
|
|
9940
|
+
.pf-v6-c-card__header.pf-m-wrap {
|
|
9941
|
+
--pf-v6-c-card__actions--PaddingInlineStart: 0;
|
|
9942
|
+
gap: var(--pf-v6-c-card__header--m-wrap--RowGap) var(--pf-v6-c-card__header--m-wrap--ColumnGap);
|
|
9943
|
+
}
|
|
9944
|
+
.pf-v6-c-card__header.pf-m-wrap,
|
|
9945
|
+
.pf-v6-c-card__header.pf-m-wrap .pf-v6-c-card__actions {
|
|
9946
|
+
flex-wrap: wrap;
|
|
9947
|
+
row-gap: var(--pf-v6-c-card__header--m-wrap--RowGap);
|
|
9948
|
+
}
|
|
9949
|
+
.pf-v6-c-card__header.pf-m-wrap .pf-v6-c-card__actions {
|
|
9950
|
+
margin-inline-start: 0;
|
|
9951
|
+
}
|
|
9952
|
+
.pf-v6-c-card__header.pf-m-wrap .pf-v6-c-card__actions + * {
|
|
9953
|
+
margin-inline-end: auto;
|
|
9954
|
+
}
|
|
9938
9955
|
|
|
9939
9956
|
.pf-v6-c-card__header-main {
|
|
9940
9957
|
flex-grow: 1;
|
|
@@ -19114,12 +19131,18 @@ ul.pf-v6-c-list {
|
|
|
19114
19131
|
--pf-v6-c-page__main-container--GridArea: main;
|
|
19115
19132
|
--pf-v6-c-page--masthead--main-container--GridArea: sidebar / sidebar / main / main;
|
|
19116
19133
|
--pf-v6-c-page__main-container--MaxHeight: calc(100% - var(--pf-t--global--spacer--lg));
|
|
19134
|
+
--pf-v6-c-page__main-container--AlignSelf: start;
|
|
19117
19135
|
--pf-v6-c-page__main-container--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
19118
19136
|
--pf-v6-c-page__main-container--MarginInlineStart: var(--pf-v6-c-page--inset);
|
|
19119
19137
|
--pf-v6-c-page__main-container--MarginInlineEnd: var(--pf-v6-c-page--inset);
|
|
19120
19138
|
--pf-v6-c-page__main-container--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
19121
19139
|
--pf-v6-c-page__main-container--BorderWidth: 0.25rem;
|
|
19122
19140
|
--pf-v6-c-page__main-container--BorderColor: var(--pf-v6-c-page__main-container--BackgroundColor);
|
|
19141
|
+
--pf-v6-c-page__main-container--xs--AlignSelf: stretch;
|
|
19142
|
+
--pf-v6-c-page__main-container--xs--BorderRadius: 0;
|
|
19143
|
+
--pf-v6-c-page__main-container--xs--MarginInlineStart: 0;
|
|
19144
|
+
--pf-v6-c-page__main-container--xs--MaxHeight: 100%;
|
|
19145
|
+
--pf-v6-c-page__main-container--xs--MarginInlineEnd: 0;
|
|
19123
19146
|
--pf-v6-c-page__main-section--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
19124
19147
|
--pf-v6-c-page__main-section--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
|
|
19125
19148
|
--pf-v6-c-page__main-section--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
@@ -19477,7 +19500,7 @@ ul.pf-v6-c-list {
|
|
|
19477
19500
|
.pf-v6-c-page__main-container {
|
|
19478
19501
|
display: flex;
|
|
19479
19502
|
flex-direction: column;
|
|
19480
|
-
align-self:
|
|
19503
|
+
align-self: var(--pf-v6-c-page__main-container--AlignSelf);
|
|
19481
19504
|
max-height: var(--pf-v6-c-page__main-container--MaxHeight);
|
|
19482
19505
|
margin-inline-start: var(--pf-v6-c-page__main-container--MarginInlineStart);
|
|
19483
19506
|
margin-inline-end: var(--pf-v6-c-page__main-container--MarginInlineEnd);
|
|
@@ -19485,6 +19508,15 @@ ul.pf-v6-c-list {
|
|
|
19485
19508
|
border: var(--pf-v6-c-page__main-container--BorderWidth) solid var(--pf-v6-c-page__main-container--BorderColor);
|
|
19486
19509
|
border-radius: var(--pf-v6-c-page__main-container--BorderRadius);
|
|
19487
19510
|
}
|
|
19511
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
|
19512
|
+
.pf-v6-c-page__main-container {
|
|
19513
|
+
--pf-v6-c-page__main-container--AlignSelf: var(--pf-v6-c-page__main-container--xs--AlignSelf);
|
|
19514
|
+
--pf-v6-c-page__main-container--MarginInlineStart: var(--pf-v6-c-page__main-container--xs--MarginInlineStart);
|
|
19515
|
+
--pf-v6-c-page__main-container--MarginInlineEnd: var(--pf-v6-c-page__main-container--xs--MarginInlineEnd);
|
|
19516
|
+
--pf-v6-c-page__main-container--MaxHeight: var(--pf-v6-c-page__main-container--xs--MaxHeight);
|
|
19517
|
+
--pf-v6-c-page__main-container--BorderRadius: var(--pf-v6-c-page__main-container--xs--BorderRadius);
|
|
19518
|
+
}
|
|
19519
|
+
}
|
|
19488
19520
|
|
|
19489
19521
|
.pf-v6-c-page__main-container,
|
|
19490
19522
|
.pf-v6-c-page__drawer {
|
package/patternfly.css
CHANGED
|
@@ -9908,6 +9908,8 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
9908
9908
|
--pf-v6-c-card__actions--Gap: var(--pf-t--global--spacer--gap--action-to-action--default);
|
|
9909
9909
|
--pf-v6-c-card__actions--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
9910
9910
|
--pf-v6-c-card__actions--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
9911
|
+
--pf-v6-c-card__header--m-wrap--RowGap: var(--pf-t--global--spacer--sm);
|
|
9912
|
+
--pf-v6-c-card__header--m-wrap--ColumnGap: var(--pf-t--global--spacer--md);
|
|
9911
9913
|
--pf-v6-c-card__header-toggle--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
9912
9914
|
--pf-v6-c-card__header-toggle--MarginInlineEnd: var(--pf-t--global--spacer--gap--text-to-element--default);
|
|
9913
9915
|
--pf-v6-c-card__header-toggle--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
@@ -10071,6 +10073,21 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
10071
10073
|
.pf-v6-c-card__header.pf-m-toggle-right .pf-v6-c-card__header-toggle {
|
|
10072
10074
|
order: 2;
|
|
10073
10075
|
}
|
|
10076
|
+
.pf-v6-c-card__header.pf-m-wrap {
|
|
10077
|
+
--pf-v6-c-card__actions--PaddingInlineStart: 0;
|
|
10078
|
+
gap: var(--pf-v6-c-card__header--m-wrap--RowGap) var(--pf-v6-c-card__header--m-wrap--ColumnGap);
|
|
10079
|
+
}
|
|
10080
|
+
.pf-v6-c-card__header.pf-m-wrap,
|
|
10081
|
+
.pf-v6-c-card__header.pf-m-wrap .pf-v6-c-card__actions {
|
|
10082
|
+
flex-wrap: wrap;
|
|
10083
|
+
row-gap: var(--pf-v6-c-card__header--m-wrap--RowGap);
|
|
10084
|
+
}
|
|
10085
|
+
.pf-v6-c-card__header.pf-m-wrap .pf-v6-c-card__actions {
|
|
10086
|
+
margin-inline-start: 0;
|
|
10087
|
+
}
|
|
10088
|
+
.pf-v6-c-card__header.pf-m-wrap .pf-v6-c-card__actions + * {
|
|
10089
|
+
margin-inline-end: auto;
|
|
10090
|
+
}
|
|
10074
10091
|
|
|
10075
10092
|
.pf-v6-c-card__header-main {
|
|
10076
10093
|
flex-grow: 1;
|
|
@@ -19250,12 +19267,18 @@ ul.pf-v6-c-list {
|
|
|
19250
19267
|
--pf-v6-c-page__main-container--GridArea: main;
|
|
19251
19268
|
--pf-v6-c-page--masthead--main-container--GridArea: sidebar / sidebar / main / main;
|
|
19252
19269
|
--pf-v6-c-page__main-container--MaxHeight: calc(100% - var(--pf-t--global--spacer--lg));
|
|
19270
|
+
--pf-v6-c-page__main-container--AlignSelf: start;
|
|
19253
19271
|
--pf-v6-c-page__main-container--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
19254
19272
|
--pf-v6-c-page__main-container--MarginInlineStart: var(--pf-v6-c-page--inset);
|
|
19255
19273
|
--pf-v6-c-page__main-container--MarginInlineEnd: var(--pf-v6-c-page--inset);
|
|
19256
19274
|
--pf-v6-c-page__main-container--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
19257
19275
|
--pf-v6-c-page__main-container--BorderWidth: 0.25rem;
|
|
19258
19276
|
--pf-v6-c-page__main-container--BorderColor: var(--pf-v6-c-page__main-container--BackgroundColor);
|
|
19277
|
+
--pf-v6-c-page__main-container--xs--AlignSelf: stretch;
|
|
19278
|
+
--pf-v6-c-page__main-container--xs--BorderRadius: 0;
|
|
19279
|
+
--pf-v6-c-page__main-container--xs--MarginInlineStart: 0;
|
|
19280
|
+
--pf-v6-c-page__main-container--xs--MaxHeight: 100%;
|
|
19281
|
+
--pf-v6-c-page__main-container--xs--MarginInlineEnd: 0;
|
|
19259
19282
|
--pf-v6-c-page__main-section--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
19260
19283
|
--pf-v6-c-page__main-section--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
|
|
19261
19284
|
--pf-v6-c-page__main-section--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
@@ -19613,7 +19636,7 @@ ul.pf-v6-c-list {
|
|
|
19613
19636
|
.pf-v6-c-page__main-container {
|
|
19614
19637
|
display: flex;
|
|
19615
19638
|
flex-direction: column;
|
|
19616
|
-
align-self:
|
|
19639
|
+
align-self: var(--pf-v6-c-page__main-container--AlignSelf);
|
|
19617
19640
|
max-height: var(--pf-v6-c-page__main-container--MaxHeight);
|
|
19618
19641
|
margin-inline-start: var(--pf-v6-c-page__main-container--MarginInlineStart);
|
|
19619
19642
|
margin-inline-end: var(--pf-v6-c-page__main-container--MarginInlineEnd);
|
|
@@ -19621,6 +19644,15 @@ ul.pf-v6-c-list {
|
|
|
19621
19644
|
border: var(--pf-v6-c-page__main-container--BorderWidth) solid var(--pf-v6-c-page__main-container--BorderColor);
|
|
19622
19645
|
border-radius: var(--pf-v6-c-page__main-container--BorderRadius);
|
|
19623
19646
|
}
|
|
19647
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
|
19648
|
+
.pf-v6-c-page__main-container {
|
|
19649
|
+
--pf-v6-c-page__main-container--AlignSelf: var(--pf-v6-c-page__main-container--xs--AlignSelf);
|
|
19650
|
+
--pf-v6-c-page__main-container--MarginInlineStart: var(--pf-v6-c-page__main-container--xs--MarginInlineStart);
|
|
19651
|
+
--pf-v6-c-page__main-container--MarginInlineEnd: var(--pf-v6-c-page__main-container--xs--MarginInlineEnd);
|
|
19652
|
+
--pf-v6-c-page__main-container--MaxHeight: var(--pf-v6-c-page__main-container--xs--MaxHeight);
|
|
19653
|
+
--pf-v6-c-page__main-container--BorderRadius: var(--pf-v6-c-page__main-container--xs--BorderRadius);
|
|
19654
|
+
}
|
|
19655
|
+
}
|
|
19624
19656
|
|
|
19625
19657
|
.pf-v6-c-page__main-container,
|
|
19626
19658
|
.pf-v6-c-page__drawer {
|