@patternfly/patternfly 6.5.0-prerelease.31 → 6.5.0-prerelease.33
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/Compass/compass.css +14 -4
- package/components/Compass/compass.scss +16 -4
- package/components/Masthead/masthead.css +52 -0
- package/components/Masthead/masthead.scss +49 -0
- package/components/Nav/nav.css +59 -0
- package/components/Nav/nav.scss +75 -3
- package/components/Page/page.css +20 -0
- package/components/Page/page.scss +27 -0
- package/components/Toolbar/toolbar.css +32 -6
- package/components/Toolbar/toolbar.scss +28 -4
- package/components/_index.css +177 -10
- package/docs/components/Compass/examples/Compass.css +8 -2
- package/docs/components/Compass/examples/Compass.md +22 -1
- package/docs/components/Masthead/examples/masthead.md +67 -0
- package/docs/components/Nav/examples/Navigation.md +44 -0
- package/docs/components/Page/examples/Page.md +37 -0
- package/docs/components/Toolbar/examples/Toolbar.md +28 -0
- package/docs/demos/AboutModal/examples/AboutModal.md +5 -5
- package/docs/demos/Alert/examples/Alert.md +15 -15
- package/docs/demos/BackToTop/examples/BackToTop.md +5 -5
- package/docs/demos/Banner/examples/Banner.md +10 -10
- package/docs/demos/CardView/examples/CardView.md +5 -5
- package/docs/demos/Compass/examples/Compass.md +208 -0
- package/docs/demos/Dashboard/examples/Dashboard.md +5 -5
- package/docs/demos/DataList/examples/DataList.md +20 -23
- package/docs/demos/DescriptionList/examples/DescriptionList.md +15 -15
- package/docs/demos/Drawer/examples/Drawer.md +25 -25
- package/docs/demos/JumpLinks/examples/JumpLinks.md +30 -30
- package/docs/demos/Masthead/examples/Masthead.md +55 -58
- package/docs/demos/Modal/examples/Modal.md +30 -33
- package/docs/demos/Nav/examples/Nav.md +299 -62
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +25 -25
- package/docs/demos/Page/examples/Page.md +70 -79
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +35 -35
- package/docs/demos/Skeleton/examples/Skeleton.md +5 -5
- package/docs/demos/Table/examples/Table.md +75 -78
- package/docs/demos/Tabs/examples/Tabs.md +30 -30
- package/docs/demos/Toolbar/examples/Toolbar.md +10 -10
- package/docs/demos/Wizard/examples/Wizard.md +45 -48
- package/package.json +1 -1
- package/patternfly-no-globals.css +177 -10
- package/patternfly.css +177 -10
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
--pf-v6-c-toolbar--m-sticky--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
41
41
|
--pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
42
42
|
--pf-v6-c-toolbar--m-sticky--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
43
|
+
--pf-v6-c-toolbar--m-vertical--Width: fit-content;
|
|
43
44
|
--pf-v6-c-toolbar__expand-all-icon--Rotate: 0;
|
|
44
45
|
--pf-v6-c-toolbar__expand-all-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
45
46
|
--pf-v6-c-toolbar__expand-all-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
@@ -243,6 +244,16 @@
|
|
|
243
244
|
.pf-v6-c-toolbar.pf-m-no-background {
|
|
244
245
|
--pf-v6-c-toolbar--BackgroundColor: var(--pf-v6-c-toolbar--m-no-background--BackgroundColor);
|
|
245
246
|
}
|
|
247
|
+
.pf-v6-c-toolbar.pf-m-vertical {
|
|
248
|
+
--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart: auto;
|
|
249
|
+
--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart: 0;
|
|
250
|
+
--pf-v6-c-toolbar--PaddingBlockEnd: 0;
|
|
251
|
+
--pf-v6-c-toolbar--Width: var(--pf-v6-c-toolbar--m-vertical--Width);
|
|
252
|
+
}
|
|
253
|
+
.pf-v6-c-toolbar.pf-m-vertical :is(.pf-v6-c-toolbar__group, .pf-v6-c-toolbar__item, .pf-v6-c-toolbar__content-section) {
|
|
254
|
+
flex-direction: column;
|
|
255
|
+
align-items: center;
|
|
256
|
+
}
|
|
246
257
|
|
|
247
258
|
.pf-v6-c-toolbar__item {
|
|
248
259
|
--pf-v6-c-toolbar__item--Width--base: var(--pf-v6-c-toolbar__item--Width);
|
|
@@ -322,6 +333,9 @@
|
|
|
322
333
|
row-gap: var(--pf-v6-c-toolbar__group--RowGap);
|
|
323
334
|
column-gap: var(--pf-v6-c-toolbar__group--ColumnGap);
|
|
324
335
|
}
|
|
336
|
+
.pf-v6-c-toolbar.pf-m-vertical .pf-v6-c-toolbar__group {
|
|
337
|
+
row-gap: var(--pf-v6-c-toolbar__group--ColumnGap);
|
|
338
|
+
}
|
|
325
339
|
.pf-v6-c-toolbar__group.pf-m-filter-group {
|
|
326
340
|
column-gap: var(--pf-v6-c-toolbar__group--m-filter-group--ColumnGap);
|
|
327
341
|
}
|
|
@@ -333,9 +347,15 @@
|
|
|
333
347
|
.pf-v6-c-toolbar__group.pf-m-action-group {
|
|
334
348
|
column-gap: var(--pf-v6-c-toolbar__group--m-action-group--ColumnGap);
|
|
335
349
|
}
|
|
350
|
+
.pf-v6-c-toolbar.pf-m-vertical .pf-v6-c-toolbar__group.pf-m-action-group {
|
|
351
|
+
row-gap: var(--pf-v6-c-toolbar__group--m-action-group--ColumnGap);
|
|
352
|
+
}
|
|
336
353
|
.pf-v6-c-toolbar__group.pf-m-action-group-plain {
|
|
337
354
|
column-gap: var(--pf-v6-c-toolbar__group--m-action-group-plain--ColumnGap);
|
|
338
355
|
}
|
|
356
|
+
.pf-v6-c-toolbar.pf-m-vertical .pf-v6-c-toolbar__group.pf-m-action-group-plain {
|
|
357
|
+
row-gap: var(--pf-v6-c-toolbar__group--m-action-group-plain--ColumnGap);
|
|
358
|
+
}
|
|
339
359
|
.pf-v6-c-toolbar__group.pf-m-action-group-inline {
|
|
340
360
|
flex-wrap: wrap;
|
|
341
361
|
column-gap: var(--pf-v6-c-toolbar__group--m-action-group-inline--ColumnGap);
|
|
@@ -412,7 +432,8 @@
|
|
|
412
432
|
}
|
|
413
433
|
.pf-v6-c-toolbar__group.pf-m-align-end,
|
|
414
434
|
.pf-v6-c-toolbar__item.pf-m-align-end {
|
|
415
|
-
margin-
|
|
435
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
436
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
416
437
|
}
|
|
417
438
|
.pf-v6-c-toolbar__group.pf-m-flex-grow,
|
|
418
439
|
.pf-v6-c-toolbar__item.pf-m-flex-grow {
|
|
@@ -667,7 +688,8 @@
|
|
|
667
688
|
}
|
|
668
689
|
.pf-v6-c-toolbar__group.pf-m-align-end-on-sm,
|
|
669
690
|
.pf-v6-c-toolbar__item.pf-m-align-end-on-sm {
|
|
670
|
-
margin-
|
|
691
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
692
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
671
693
|
}
|
|
672
694
|
.pf-v6-c-toolbar__group.pf-m-flex-grow-on-sm,
|
|
673
695
|
.pf-v6-c-toolbar__item.pf-m-flex-grow-on-sm {
|
|
@@ -919,7 +941,8 @@
|
|
|
919
941
|
}
|
|
920
942
|
.pf-v6-c-toolbar__group.pf-m-align-end-on-md,
|
|
921
943
|
.pf-v6-c-toolbar__item.pf-m-align-end-on-md {
|
|
922
|
-
margin-
|
|
944
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
945
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
923
946
|
}
|
|
924
947
|
.pf-v6-c-toolbar__group.pf-m-flex-grow-on-md,
|
|
925
948
|
.pf-v6-c-toolbar__item.pf-m-flex-grow-on-md {
|
|
@@ -1171,7 +1194,8 @@
|
|
|
1171
1194
|
}
|
|
1172
1195
|
.pf-v6-c-toolbar__group.pf-m-align-end-on-lg,
|
|
1173
1196
|
.pf-v6-c-toolbar__item.pf-m-align-end-on-lg {
|
|
1174
|
-
margin-
|
|
1197
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
1198
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
1175
1199
|
}
|
|
1176
1200
|
.pf-v6-c-toolbar__group.pf-m-flex-grow-on-lg,
|
|
1177
1201
|
.pf-v6-c-toolbar__item.pf-m-flex-grow-on-lg {
|
|
@@ -1423,7 +1447,8 @@
|
|
|
1423
1447
|
}
|
|
1424
1448
|
.pf-v6-c-toolbar__group.pf-m-align-end-on-xl,
|
|
1425
1449
|
.pf-v6-c-toolbar__item.pf-m-align-end-on-xl {
|
|
1426
|
-
margin-
|
|
1450
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
1451
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
1427
1452
|
}
|
|
1428
1453
|
.pf-v6-c-toolbar__group.pf-m-flex-grow-on-xl,
|
|
1429
1454
|
.pf-v6-c-toolbar__item.pf-m-flex-grow-on-xl {
|
|
@@ -1675,7 +1700,8 @@
|
|
|
1675
1700
|
}
|
|
1676
1701
|
.pf-v6-c-toolbar__group.pf-m-align-end-on-2xl,
|
|
1677
1702
|
.pf-v6-c-toolbar__item.pf-m-align-end-on-2xl {
|
|
1678
|
-
margin-
|
|
1703
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
1704
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
1679
1705
|
}
|
|
1680
1706
|
.pf-v6-c-toolbar__group.pf-m-flex-grow-on-2xl,
|
|
1681
1707
|
.pf-v6-c-toolbar__item.pf-m-flex-grow-on-2xl {
|
|
@@ -69,6 +69,9 @@ $pf-v6--include-toolbar-breakpoints: true !default;
|
|
|
69
69
|
--#{$toolbar}--m-sticky--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
70
70
|
--#{$toolbar}--m-sticky--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
71
71
|
|
|
72
|
+
// * Toolbar vertical
|
|
73
|
+
--#{$toolbar}--m-vertical--Width: fit-content;
|
|
74
|
+
|
|
72
75
|
// * Toolbar expand all
|
|
73
76
|
--#{$toolbar}__expand-all-icon--Rotate: 0;
|
|
74
77
|
--#{$toolbar}__expand-all-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
@@ -193,9 +196,17 @@ $pf-v6--include-toolbar-breakpoints: true !default;
|
|
|
193
196
|
--#{$toolbar}--BackgroundColor: var(--#{$toolbar}--m-no-background--BackgroundColor);
|
|
194
197
|
}
|
|
195
198
|
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
+
&.pf-m-vertical {
|
|
200
|
+
--#{$toolbar}--child--m-align-end--MarginBlockStart: auto;
|
|
201
|
+
--#{$toolbar}--child--m-align-end--MarginInlineStart: 0;
|
|
202
|
+
--#{$toolbar}--PaddingBlockEnd: 0;
|
|
203
|
+
--#{$toolbar}--Width: var(--#{$toolbar}--m-vertical--Width);
|
|
204
|
+
|
|
205
|
+
:is(.#{$toolbar}__group, .#{$toolbar}__item, .#{$toolbar}__content-section) {
|
|
206
|
+
flex-direction: column;
|
|
207
|
+
align-items: center;
|
|
208
|
+
}
|
|
209
|
+
}
|
|
199
210
|
}
|
|
200
211
|
|
|
201
212
|
// - Toolbar item
|
|
@@ -237,6 +248,10 @@ $pf-v6--include-toolbar-breakpoints: true !default;
|
|
|
237
248
|
row-gap: var(--#{$toolbar}__group--RowGap);
|
|
238
249
|
column-gap: var(--#{$toolbar}__group--ColumnGap);
|
|
239
250
|
|
|
251
|
+
.#{$toolbar}.pf-m-vertical & {
|
|
252
|
+
row-gap: var(--#{$toolbar}__group--ColumnGap);
|
|
253
|
+
}
|
|
254
|
+
|
|
240
255
|
// - Toolbar filter group
|
|
241
256
|
&.pf-m-filter-group {
|
|
242
257
|
column-gap: var(--#{$toolbar}__group--m-filter-group--ColumnGap);
|
|
@@ -252,11 +267,19 @@ $pf-v6--include-toolbar-breakpoints: true !default;
|
|
|
252
267
|
// - Toolbar action group
|
|
253
268
|
&.pf-m-action-group {
|
|
254
269
|
column-gap: var(--#{$toolbar}__group--m-action-group--ColumnGap);
|
|
270
|
+
|
|
271
|
+
.#{$toolbar}.pf-m-vertical & {
|
|
272
|
+
row-gap: var(--#{$toolbar}__group--m-action-group--ColumnGap);
|
|
273
|
+
}
|
|
255
274
|
}
|
|
256
275
|
|
|
257
276
|
// - Toolbar action group plain
|
|
258
277
|
&.pf-m-action-group-plain {
|
|
259
278
|
column-gap: var(--#{$toolbar}__group--m-action-group-plain--ColumnGap);
|
|
279
|
+
|
|
280
|
+
.#{$toolbar}.pf-m-vertical & {
|
|
281
|
+
row-gap: var(--#{$toolbar}__group--m-action-group-plain--ColumnGap);
|
|
282
|
+
}
|
|
260
283
|
}
|
|
261
284
|
|
|
262
285
|
// - Toolbar action group inline
|
|
@@ -348,7 +371,8 @@ $pf-v6--include-toolbar-breakpoints: true !default;
|
|
|
348
371
|
}
|
|
349
372
|
|
|
350
373
|
&.pf-m-align-end#{$breakpoint-name} {
|
|
351
|
-
margin-
|
|
374
|
+
margin-block-start: var(--#{$toolbar}--child--m-align-end--MarginBlockStart, 0);
|
|
375
|
+
margin-inline-start: var(--#{$toolbar}--child--m-align-end--MarginInlineStart, auto);
|
|
352
376
|
}
|
|
353
377
|
|
|
354
378
|
&.pf-m-flex-grow#{$breakpoint-name} {
|
package/components/_index.css
CHANGED
|
@@ -3528,16 +3528,16 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
3528
3528
|
--pf-v6-c-compass__main-header-content--RowGap: var(--pf-t--global--spacer--sm);
|
|
3529
3529
|
--pf-v6-c-compass__main-header-content--ColumnGap: var(--pf-t--global--spacer--md);
|
|
3530
3530
|
--pf-v6-c-compass__main-footer--MarginBlockStart: calc(var(--pf-v6-c-compass__main--RowGap) * -1 + var(--pf-v6-c-compass--Gap));
|
|
3531
|
-
--pf-v6-c-compass__panel--BackgroundColor: var(--pf-t--global--background--color--glass--default);
|
|
3532
|
-
--pf-v6-c-compass__panel--BackdropFilter: var(--pf-t--global--background--color--glass--filter);
|
|
3533
|
-
--pf-v6-c-compass__panel--BorderRadius: var(--pf-t--global--border--radius--large);
|
|
3534
3531
|
--pf-v6-c-compass__panel--m-pill--BorderRadius: var(--pf-t--global--border--radius--pill);
|
|
3535
3532
|
--pf-v6-c-compass__panel--PaddingBlockStart: var(--pf-t--global--spacer--inset--page-chrome);
|
|
3536
3533
|
--pf-v6-c-compass__panel--PaddingBlockEnd: var(--pf-t--global--spacer--inset--page-chrome);
|
|
3537
3534
|
--pf-v6-c-compass__panel--PaddingInlineStart: var(--pf-t--global--spacer--inset--page-chrome);
|
|
3538
3535
|
--pf-v6-c-compass__panel--PaddingInlineEnd: var(--pf-t--global--spacer--inset--page-chrome);
|
|
3539
|
-
--pf-v6-c-compass__panel--
|
|
3536
|
+
--pf-v6-c-compass__panel--BackgroundColor: var(--pf-t--global--background--color--glass--default);
|
|
3537
|
+
--pf-v6-c-compass__panel--BackdropFilter: var(--pf-t--global--background--color--glass--filter);
|
|
3540
3538
|
--pf-v6-c-compass__panel--BorderColor: var(--pf-t--global--border--color--alt);
|
|
3539
|
+
--pf-v6-c-compass__panel--BorderRadius: var(--pf-t--global--border--radius--large);
|
|
3540
|
+
--pf-v6-c-compass__panel--BorderWidth: var(--pf-t--global--border--width--regular);
|
|
3541
3541
|
--pf-v6-c-compass__panel--BoxShadow: var(--pf-t--global--box-shadow--md);
|
|
3542
3542
|
--pf-v6-c-compass__message-bar--Width: 450px;
|
|
3543
3543
|
--pf-v6-c-compass__message-bar--MinWidth: 300px;
|
|
@@ -3588,6 +3588,16 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
3588
3588
|
background-image: var(--pf-v6-c-compass--BackgroundImage);
|
|
3589
3589
|
background-size: cover;
|
|
3590
3590
|
}
|
|
3591
|
+
.pf-v6-c-compass.pf-m-dock {
|
|
3592
|
+
grid-template-areas: "dock main";
|
|
3593
|
+
grid-template-rows: auto;
|
|
3594
|
+
grid-template-columns: auto 1fr;
|
|
3595
|
+
align-items: stretch;
|
|
3596
|
+
padding: 0;
|
|
3597
|
+
}
|
|
3598
|
+
.pf-v6-c-compass.pf-m-dock .pf-v6-c-compass__main {
|
|
3599
|
+
padding: var(--pf-v6-c-compass--Padding);
|
|
3600
|
+
}
|
|
3591
3601
|
:root:where(.pf-v6-theme-dark) .pf-v6-c-compass {
|
|
3592
3602
|
--pf-v6-c-compass--BackgroundImage: var(--pf-v6-c-compass--BackgroundImage--dark);
|
|
3593
3603
|
}
|
|
@@ -10242,6 +10252,15 @@ ul.pf-v6-c-list {
|
|
|
10242
10252
|
--pf-v6-c-masthead--m-display-inline__main--toggle--content--GridColumn: 2;
|
|
10243
10253
|
--pf-v6-c-masthead--m-display-inline__main--Display: flex;
|
|
10244
10254
|
--pf-v6-c-masthead--m-display-inline__main--ColumnGap: var(--pf-t--global--spacer--md);
|
|
10255
|
+
--pf-v6-c-masthead--m-docked--GridTemplateRows: min-content 1fr;
|
|
10256
|
+
--pf-v6-c-masthead--m-docked--RowGap: var(--pf-t--global--spacer--gutter--default);
|
|
10257
|
+
--pf-v6-c-masthead--m-docked--PaddingBlockStart: var(--pf-t--global--spacer--lg);
|
|
10258
|
+
--pf-v6-c-masthead--m-docked--PaddingBlockEnd: var(--pf-t--global--spacer--lg);
|
|
10259
|
+
--pf-v6-c-masthead--m-docked--PaddingInlineStart: var(--pf-t--global--spacer--sm);
|
|
10260
|
+
--pf-v6-c-masthead--m-docked--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
|
10261
|
+
--pf-v6-c-masthead--m-docked--BackgroundColor: var(--pf-t--global--background--color--glass--default);
|
|
10262
|
+
--pf-v6-c-masthead--m-docked--BackdropFilter: var(--pf-t--global--background--color--glass--filter);
|
|
10263
|
+
--pf-v6-c-masthead--m-docked--c-toolbar--Height: 100%;
|
|
10245
10264
|
--pf-v6-c-masthead__expandable-content--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
|
|
10246
10265
|
--pf-v6-c-masthead__expandable-content--BorderBlockStart: var(--pf-v6-c-masthead--BorderWidth) solid var(--pf-v6-c-masthead--BorderColor);
|
|
10247
10266
|
--pf-v6-c-masthead--c-toolbar--Width: 100%;
|
|
@@ -10262,6 +10281,7 @@ ul.pf-v6-c-list {
|
|
|
10262
10281
|
--pf-v6-c-masthead__main--Display: var(--pf-v6-c-masthead--m-display-stack__main--Display);
|
|
10263
10282
|
--pf-v6-c-masthead__main--ColumnGap: var(--pf-v6-c-masthead--m-display-stack__main--ColumnGap);
|
|
10264
10283
|
display: grid;
|
|
10284
|
+
grid-template-rows: var(--pf-v6-c-masthead--GridTemplateRows);
|
|
10265
10285
|
grid-template-columns: var(--pf-v6-c-masthead--GridTemplateColumns);
|
|
10266
10286
|
row-gap: var(--pf-v6-c-masthead--RowGap);
|
|
10267
10287
|
column-gap: var(--pf-v6-c-masthead--ColumnGap);
|
|
@@ -10294,6 +10314,48 @@ ul.pf-v6-c-list {
|
|
|
10294
10314
|
--pf-v6-c-masthead__main--ColumnGap: var(--pf-v6-c-masthead--m-display-inline__main--ColumnGap);
|
|
10295
10315
|
}
|
|
10296
10316
|
}
|
|
10317
|
+
.pf-v6-c-masthead.pf-m-docked {
|
|
10318
|
+
--pf-v6-c-masthead--ColumnGap: var(--pf-v6-c-masthead--m-display-inline--ColumnGap);
|
|
10319
|
+
--pf-v6-c-masthead--GridTemplateColumns: var(--pf-v6-c-masthead--m-display-inline--GridTemplateColumns);
|
|
10320
|
+
--pf-v6-c-masthead__brand--GridColumn: var(--pf-v6-c-masthead--m-display-inline__brand--GridColumn);
|
|
10321
|
+
--pf-v6-c-masthead__brand--Order: var(--pf-v6-c-masthead--m-display-inline__brand--Order);
|
|
10322
|
+
--pf-v6-c-masthead__brand--PaddingBlockEnd: var(--pf-v6-c-masthead--m-display-inline__brand--PaddingBlockEnd);
|
|
10323
|
+
--pf-v6-c-masthead__brand--BorderBlockEnd: var(--pf-v6-c-masthead--m-display-inline__brand--BorderBlockEnd);
|
|
10324
|
+
--pf-v6-c-masthead__main--GridColumn: var(--pf-v6-c-masthead--m-display-inline__main--GridColumn);
|
|
10325
|
+
--pf-v6-c-masthead__content--GridColumn: var(--pf-v6-c-masthead--m-display-inline__content--GridColumn);
|
|
10326
|
+
--pf-v6-c-masthead__content--Order: var(--pf-v6-c-masthead--m-display-inline__content--Order);
|
|
10327
|
+
--pf-v6-c-masthead__main--toggle--content--GridColumn: var(--pf-v6-c-masthead--m-display-inline__main--toggle--content--GridColumn);
|
|
10328
|
+
--pf-v6-c-masthead__main--Display: var(--pf-v6-c-masthead--m-display-inline__main--Display);
|
|
10329
|
+
--pf-v6-c-masthead__main--ColumnGap: var(--pf-v6-c-masthead--m-display-inline__main--ColumnGap);
|
|
10330
|
+
--pf-v6-c-masthead--BackgroundColor: var(--pf-v6-c-masthead--m-docked--BackgroundColor);
|
|
10331
|
+
--pf-v6-c-masthead--GridTemplateRows: var(--pf-v6-c-masthead--m-docked--GridTemplateRows);
|
|
10332
|
+
--pf-v6-c-masthead--PaddingBlockStart: var(--pf-v6-c-masthead--m-docked--PaddingBlockStart);
|
|
10333
|
+
--pf-v6-c-masthead--PaddingBlockEnd: var(--pf-v6-c-masthead--m-docked--PaddingBlockEnd);
|
|
10334
|
+
--pf-v6-c-masthead--PaddingInlineStart: var(--pf-v6-c-masthead--m-docked--PaddingInlineStart);
|
|
10335
|
+
--pf-v6-c-masthead--PaddingInlineEnd: var(--pf-v6-c-masthead--m-docked--PaddingInlineEnd);
|
|
10336
|
+
--pf-v6-c-masthead--GridTemplateColumns: auto;
|
|
10337
|
+
--pf-v6-c-masthead--RowGap: var(--pf-v6-c-masthead--m-docked--RowGap);
|
|
10338
|
+
--pf-v6-c-masthead--m-display-inline--breakpoint--xl--GridTemplateColumns: auto;
|
|
10339
|
+
--pf-v6-c-masthead__main--GridColumn: auto;
|
|
10340
|
+
--pf-v6-c-masthead__content--GridColumn: auto;
|
|
10341
|
+
--pf-v6-c-masthead__logo--Width: auto;
|
|
10342
|
+
--pf-v6-c-masthead__main--MarginInlineEnd: 0;
|
|
10343
|
+
display: flex;
|
|
10344
|
+
flex-direction: column;
|
|
10345
|
+
align-items: center;
|
|
10346
|
+
width: fit-content;
|
|
10347
|
+
height: 100%;
|
|
10348
|
+
backdrop-filter: var(--pf-v6-c-masthead--m-docked--BackdropFilter);
|
|
10349
|
+
}
|
|
10350
|
+
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__content {
|
|
10351
|
+
flex-direction: column;
|
|
10352
|
+
flex-grow: 1;
|
|
10353
|
+
align-self: revert;
|
|
10354
|
+
}
|
|
10355
|
+
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-toolbar {
|
|
10356
|
+
--pf-v6-c-masthead--c-toolbar--Width: fit-content;
|
|
10357
|
+
height: var(--pf-v6-c-masthead--m-docked--c-toolbar--Height);
|
|
10358
|
+
}
|
|
10297
10359
|
.pf-v6-c-masthead .pf-v6-c-toolbar__content-section {
|
|
10298
10360
|
flex-wrap: nowrap;
|
|
10299
10361
|
min-width: 0;
|
|
@@ -12342,6 +12404,15 @@ ul.pf-v6-c-list {
|
|
|
12342
12404
|
--pf-v6-c-nav__section-title--PaddingInlineStart: var(--pf-v6-c-nav__link--PaddingInlineStart);
|
|
12343
12405
|
--pf-v6-c-nav__section-title--PaddingInlineEnd: var(--pf-v6-c-nav__link--PaddingInlineEnd);
|
|
12344
12406
|
--pf-v6-c-nav__item--RowGap: var(--pf-v6-c-nav__list--RowGap);
|
|
12407
|
+
--pf-v6-c-nav__item--accent--size: var(--pf-t--global--border--width--extra-strong);
|
|
12408
|
+
--pf-v6-c-nav__item--accent--color: var(--pf-t--global--border--color--clicked);
|
|
12409
|
+
--pf-v6-c-nav__item--accent--offset: calc(var(--pf-t--global--spacer--sm) * -1);
|
|
12410
|
+
--pf-v6-c-nav__item--accent--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
12411
|
+
--pf-v6-c-nav__item--accent--ScaleY: 0;
|
|
12412
|
+
--pf-v6-c-nav__item--current--accent--ScaleY: 1;
|
|
12413
|
+
--pf-v6-c-nav__item--accent--TransitionDuration: 0;
|
|
12414
|
+
--pf-v6-c-nav__item--current--accent--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
|
|
12415
|
+
--pf-v6-c-nav__item--accent--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
|
|
12345
12416
|
--pf-v6-c-nav__item__toggle-icon--Rotate: 0;
|
|
12346
12417
|
--pf-v6-c-nav__item--m-expanded__toggle-icon--Rotate: 90deg;
|
|
12347
12418
|
--pf-v6-c-nav__item__toggle-icon--TransitionDuration--transform: var(--pf-t--global--motion--duration--icon--default);
|
|
@@ -12366,6 +12437,7 @@ ul.pf-v6-c-list {
|
|
|
12366
12437
|
--pf-v6-c-nav__link--m-current--TransitionTimingFunction--color: var(--pf-t--global--motion--timing-function--default);
|
|
12367
12438
|
--pf-v6-c-nav__link-icon--Color: var(--pf-t--global--icon--color--subtle);
|
|
12368
12439
|
--pf-v6-c-nav__link--m-current__link-icon--Color: var(--pf-t--global--icon--color--regular);
|
|
12440
|
+
--pf-v6-c-nav__link-text--FontSize: initial;
|
|
12369
12441
|
--pf-v6-c-nav__subnav--RowGap: var(--pf-t--global--border--width--extra-strong);
|
|
12370
12442
|
--pf-v6-c-nav__subnav--PaddingBlockStart: var(--pf-v6-c-nav__item--RowGap);
|
|
12371
12443
|
--pf-v6-c-nav__subnav--PaddingBlockEnd: var(--pf-v6-c-nav__item--RowGap);
|
|
@@ -12406,6 +12478,11 @@ ul.pf-v6-c-list {
|
|
|
12406
12478
|
--pf-v6-c-nav--m-horizontal--m-subnav__link--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
|
12407
12479
|
--pf-v6-c-nav--m-horizontal--m-subnav__link--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
12408
12480
|
--pf-v6-c-nav--m-horizontal--m-subnav__link--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
12481
|
+
--pf-v6-c-nav--m-docked__list--RowGap: var(--pf-t--global--spacer--gap--action-to-action--plain);
|
|
12482
|
+
--pf-v6-c-nav--m-docked__link--PaddingInlineStart: var(--pf-t--global--spacer--sm);
|
|
12483
|
+
--pf-v6-c-nav--m-docked__link--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
|
12484
|
+
--pf-v6-c-nav--m-docked__link--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
|
|
12485
|
+
--pf-v6-c-nav--m-docked__link--m-current--BackgroundColor: var(--pf-t--global--background--color--action--plain--clicked);
|
|
12409
12486
|
}
|
|
12410
12487
|
@media screen and (prefers-reduced-motion: no-preference) {
|
|
12411
12488
|
.pf-v6-c-nav {
|
|
@@ -12447,6 +12524,25 @@ ul.pf-v6-c-list {
|
|
|
12447
12524
|
.pf-v6-c-nav.pf-m-fill {
|
|
12448
12525
|
flex-grow: 1;
|
|
12449
12526
|
}
|
|
12527
|
+
.pf-v6-c-nav.pf-m-docked {
|
|
12528
|
+
--pf-v6-c-nav--PaddingBlockStart: 0;
|
|
12529
|
+
--pf-v6-c-nav--PaddingBlockEnd: 0;
|
|
12530
|
+
--pf-v6-c-nav__list--RowGap: var(--pf-v6-c-nav--m-docked__list--RowGap);
|
|
12531
|
+
--pf-v6-c-nav__link--PaddingInlineStart: var(--pf-v6-c-nav--m-docked__link--PaddingInlineStart);
|
|
12532
|
+
--pf-v6-c-nav__link--PaddingInlineEnd: var(--pf-v6-c-nav--m-docked__link--PaddingInlineEnd);
|
|
12533
|
+
--pf-v6-c-nav__link--hover--BackgroundColor: var(--pf-v6-c-nav--m-docked__link--hover--BackgroundColor);
|
|
12534
|
+
--pf-v6-c-nav__link--m-current--BackgroundColor: var(--pf-v6-c-nav--m-docked__link--m-current--BackgroundColor);
|
|
12535
|
+
width: fit-content;
|
|
12536
|
+
}
|
|
12537
|
+
.pf-v6-c-nav.pf-m-docked .pf-v6-c-nav__link-icon {
|
|
12538
|
+
position: relative;
|
|
12539
|
+
align-self: center;
|
|
12540
|
+
min-width: 1lh;
|
|
12541
|
+
text-align: center;
|
|
12542
|
+
}
|
|
12543
|
+
.pf-v6-c-nav.pf-m-docked .pf-v6-c-nav__link-text {
|
|
12544
|
+
display: none;
|
|
12545
|
+
}
|
|
12450
12546
|
.pf-v6-c-nav .pf-v6-c-menu {
|
|
12451
12547
|
--pf-v6-c-menu--MinWidth: 100%;
|
|
12452
12548
|
}
|
|
@@ -12510,14 +12606,34 @@ ul.pf-v6-c-list {
|
|
|
12510
12606
|
}
|
|
12511
12607
|
|
|
12512
12608
|
.pf-v6-c-nav__item {
|
|
12609
|
+
position: relative;
|
|
12513
12610
|
scroll-snap-align: var(--pf-v6-c-nav__item--ScrollSnapAlign);
|
|
12514
12611
|
}
|
|
12612
|
+
.pf-v6-c-nav__item::before {
|
|
12613
|
+
position: absolute;
|
|
12614
|
+
inset-block-start: 0;
|
|
12615
|
+
inset-block-end: 0;
|
|
12616
|
+
inset-inline-start: var(--pf-v6-c-nav__item--accent--offset);
|
|
12617
|
+
width: var(--pf-v6-c-nav__item--accent--size);
|
|
12618
|
+
pointer-events: none;
|
|
12619
|
+
content: var(--pf-v6-c-nav__item--accent--content, "");
|
|
12620
|
+
background-color: var(--pf-v6-c-nav__item--accent--color);
|
|
12621
|
+
border-radius: var(--pf-v6-c-nav__item--accent--BorderRadius);
|
|
12622
|
+
transition-timing-function: var(--pf-v6-c-nav__item--accent--TransitionTimingFunction);
|
|
12623
|
+
transition-duration: var(--pf-v6-c-nav__item--accent--TransitionDuration);
|
|
12624
|
+
transition-property: scale;
|
|
12625
|
+
scale: 1 var(--pf-v6-c-nav__item--accent--ScaleY);
|
|
12626
|
+
}
|
|
12515
12627
|
.pf-v6-c-nav__item > .pf-v6-c-nav__link[button] {
|
|
12516
12628
|
margin-block-end: var(--pf-v6-c-nav__button--RowGap--row-offset);
|
|
12517
12629
|
}
|
|
12518
12630
|
.pf-v6-c-nav__item.pf-m-expanded:last-child > .pf-v6-c-nav__subnav {
|
|
12519
12631
|
margin-block-end: calc(var(--pf-v6-c-nav__subnav--PaddingBlockEnd) * -1);
|
|
12520
12632
|
}
|
|
12633
|
+
.pf-v6-c-nav__item:has(> .pf-v6-c-nav__link.pf-m-current) {
|
|
12634
|
+
--pf-v6-c-nav__item--accent--ScaleY: var(--pf-v6-c-nav__item--current--accent--ScaleY);
|
|
12635
|
+
--pf-v6-c-nav__item--accent--TransitionDuration: var(--pf-v6-c-nav__item--current--accent--TransitionDuration);
|
|
12636
|
+
}
|
|
12521
12637
|
|
|
12522
12638
|
.pf-v6-c-nav__section {
|
|
12523
12639
|
row-gap: var(--pf-v6-c-nav__section--RowGap, var(--pf-v6-c-nav__list--RowGap));
|
|
@@ -12579,6 +12695,10 @@ ul.pf-v6-c-list {
|
|
|
12579
12695
|
color: var(--pf-v6-c-nav__link-icon--Color);
|
|
12580
12696
|
}
|
|
12581
12697
|
|
|
12698
|
+
.pf-v6-c-nav__link-text {
|
|
12699
|
+
font-size: var(--pf-v6-c-nav__link-text--FontSize, inherit);
|
|
12700
|
+
}
|
|
12701
|
+
|
|
12582
12702
|
.pf-v6-c-nav__toggle {
|
|
12583
12703
|
flex: none;
|
|
12584
12704
|
align-self: start;
|
|
@@ -12634,6 +12754,7 @@ ul.pf-v6-c-list {
|
|
|
12634
12754
|
}
|
|
12635
12755
|
|
|
12636
12756
|
.pf-v6-c-nav:where(.pf-m-horizontal) {
|
|
12757
|
+
--pf-v6-c-nav__item--accent--content: none;
|
|
12637
12758
|
padding: 0;
|
|
12638
12759
|
overflow: hidden;
|
|
12639
12760
|
}
|
|
@@ -12999,6 +13120,7 @@ ul.pf-v6-c-list {
|
|
|
12999
13120
|
--pf-v6-c-page--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
|
|
13000
13121
|
--pf-v6-c-page--inset: var(--pf-t--global--spacer--inset--page-chrome);
|
|
13001
13122
|
--pf-v6-c-page--c-masthead--ZIndex: var(--pf-t--global--z-index--md);
|
|
13123
|
+
--pf-v6-c-page__dock--ZIndex: var(--pf-t--global--z-index--md);
|
|
13002
13124
|
--pf-v6-c-page__sidebar--ZIndex: var(--pf-t--global--z-index--sm);
|
|
13003
13125
|
--pf-v6-c-page__sidebar--Width--base: 18.125rem;
|
|
13004
13126
|
--pf-v6-c-page__sidebar--Width: var(--pf-v6-c-page__sidebar--Width--base);
|
|
@@ -13106,6 +13228,9 @@ ul.pf-v6-c-list {
|
|
|
13106
13228
|
--pf-v6-c-page__main-wizard--BorderBlockStartWidth: var(--pf-t--global--border--width--action--default);
|
|
13107
13229
|
--pf-v6-c-page__drawer--c-drawer--BorderBlockStartWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
13108
13230
|
--pf-v6-c-page__drawer--c-drawer--BorderBlockStartColor: var(--pf-t--global--border--color--high-contrast);
|
|
13231
|
+
--pf-v6-c-page--m-dock__main-container--MaxHeight: calc(100% - var(--pf-t--global--spacer--lg) * 2);
|
|
13232
|
+
--pf-v6-c-page--m-dock__main-container--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
|
13233
|
+
--pf-v6-c-page--m-dock--ColumnGap: var(--pf-t--global--spacer--inset--page-chrome);
|
|
13109
13234
|
}
|
|
13110
13235
|
@media screen and (prefers-reduced-motion: no-preference) {
|
|
13111
13236
|
.pf-v6-c-page {
|
|
@@ -13148,6 +13273,16 @@ ul.pf-v6-c-list {
|
|
|
13148
13273
|
grid-template-columns: var(--pf-v6-c-page__sidebar--Width) 1fr;
|
|
13149
13274
|
}
|
|
13150
13275
|
}
|
|
13276
|
+
.pf-v6-c-page.pf-m-dock {
|
|
13277
|
+
--pf-v6-c-page--masthead--main-container--GridArea: main;
|
|
13278
|
+
--pf-v6-c-page__main-container--MaxHeight: var(--pf-v6-c-page--m-dock__main-container--MaxHeight);
|
|
13279
|
+
--pf-v6-c-page__main-container--MarginBlockStart: var(--pf-v6-c-page--m-dock__main-container--MarginBlockStart);
|
|
13280
|
+
--pf-v6-c-page__main-container--MarginInlineStart: 0;
|
|
13281
|
+
grid-template-areas: "dock main";
|
|
13282
|
+
grid-template-rows: auto;
|
|
13283
|
+
grid-template-columns: auto 1fr;
|
|
13284
|
+
column-gap: var(--pf-v6-c-page--m-dock--ColumnGap);
|
|
13285
|
+
}
|
|
13151
13286
|
.pf-v6-c-page > .pf-v6-c-masthead .pf-v6-c-masthead__toggle .pf-v6-c-button.pf-m-hamburger:is(:hover, :focus-visible) {
|
|
13152
13287
|
--pf-v6-c-button--hamburger-icon--top--path: var(--pf-v6-c-button--hamburger-icon--top--collapse--path);
|
|
13153
13288
|
--pf-v6-c-button--hamburger-icon--arrow--path: var(--pf-v6-c-button--hamburger-icon--arrow--collapse--path);
|
|
@@ -13204,6 +13339,11 @@ ul.pf-v6-c-list {
|
|
|
13204
13339
|
}
|
|
13205
13340
|
}
|
|
13206
13341
|
|
|
13342
|
+
.pf-v6-c-page__dock {
|
|
13343
|
+
z-index: var(--pf-v6-c-page__dock--ZIndex);
|
|
13344
|
+
grid-area: dock;
|
|
13345
|
+
}
|
|
13346
|
+
|
|
13207
13347
|
.pf-v6-c-page__sidebar {
|
|
13208
13348
|
z-index: var(--pf-v6-c-page__sidebar--ZIndex);
|
|
13209
13349
|
display: flex;
|
|
@@ -13507,6 +13647,7 @@ ul.pf-v6-c-list {
|
|
|
13507
13647
|
flex-direction: column;
|
|
13508
13648
|
align-self: var(--pf-v6-c-page__main-container--AlignSelf);
|
|
13509
13649
|
max-height: var(--pf-v6-c-page__main-container--MaxHeight);
|
|
13650
|
+
margin-block-start: var(--pf-v6-c-page__main-container--MarginBlockStart, 0);
|
|
13510
13651
|
margin-inline-start: var(--pf-v6-c-page__main-container--MarginInlineStart);
|
|
13511
13652
|
margin-inline-end: var(--pf-v6-c-page__main-container--MarginInlineEnd);
|
|
13512
13653
|
background: var(--pf-v6-c-page__main-container--BackgroundColor);
|
|
@@ -21540,6 +21681,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
21540
21681
|
--pf-v6-c-toolbar--m-sticky--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
21541
21682
|
--pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
21542
21683
|
--pf-v6-c-toolbar--m-sticky--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
21684
|
+
--pf-v6-c-toolbar--m-vertical--Width: fit-content;
|
|
21543
21685
|
--pf-v6-c-toolbar__expand-all-icon--Rotate: 0;
|
|
21544
21686
|
--pf-v6-c-toolbar__expand-all-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
21545
21687
|
--pf-v6-c-toolbar__expand-all-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
@@ -21743,6 +21885,16 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
21743
21885
|
.pf-v6-c-toolbar.pf-m-no-background {
|
|
21744
21886
|
--pf-v6-c-toolbar--BackgroundColor: var(--pf-v6-c-toolbar--m-no-background--BackgroundColor);
|
|
21745
21887
|
}
|
|
21888
|
+
.pf-v6-c-toolbar.pf-m-vertical {
|
|
21889
|
+
--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart: auto;
|
|
21890
|
+
--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart: 0;
|
|
21891
|
+
--pf-v6-c-toolbar--PaddingBlockEnd: 0;
|
|
21892
|
+
--pf-v6-c-toolbar--Width: var(--pf-v6-c-toolbar--m-vertical--Width);
|
|
21893
|
+
}
|
|
21894
|
+
.pf-v6-c-toolbar.pf-m-vertical :is(.pf-v6-c-toolbar__group, .pf-v6-c-toolbar__item, .pf-v6-c-toolbar__content-section) {
|
|
21895
|
+
flex-direction: column;
|
|
21896
|
+
align-items: center;
|
|
21897
|
+
}
|
|
21746
21898
|
|
|
21747
21899
|
.pf-v6-c-toolbar__item {
|
|
21748
21900
|
--pf-v6-c-toolbar__item--Width--base: var(--pf-v6-c-toolbar__item--Width);
|
|
@@ -21822,6 +21974,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
21822
21974
|
row-gap: var(--pf-v6-c-toolbar__group--RowGap);
|
|
21823
21975
|
column-gap: var(--pf-v6-c-toolbar__group--ColumnGap);
|
|
21824
21976
|
}
|
|
21977
|
+
.pf-v6-c-toolbar.pf-m-vertical .pf-v6-c-toolbar__group {
|
|
21978
|
+
row-gap: var(--pf-v6-c-toolbar__group--ColumnGap);
|
|
21979
|
+
}
|
|
21825
21980
|
.pf-v6-c-toolbar__group.pf-m-filter-group {
|
|
21826
21981
|
column-gap: var(--pf-v6-c-toolbar__group--m-filter-group--ColumnGap);
|
|
21827
21982
|
}
|
|
@@ -21833,9 +21988,15 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
21833
21988
|
.pf-v6-c-toolbar__group.pf-m-action-group {
|
|
21834
21989
|
column-gap: var(--pf-v6-c-toolbar__group--m-action-group--ColumnGap);
|
|
21835
21990
|
}
|
|
21991
|
+
.pf-v6-c-toolbar.pf-m-vertical .pf-v6-c-toolbar__group.pf-m-action-group {
|
|
21992
|
+
row-gap: var(--pf-v6-c-toolbar__group--m-action-group--ColumnGap);
|
|
21993
|
+
}
|
|
21836
21994
|
.pf-v6-c-toolbar__group.pf-m-action-group-plain {
|
|
21837
21995
|
column-gap: var(--pf-v6-c-toolbar__group--m-action-group-plain--ColumnGap);
|
|
21838
21996
|
}
|
|
21997
|
+
.pf-v6-c-toolbar.pf-m-vertical .pf-v6-c-toolbar__group.pf-m-action-group-plain {
|
|
21998
|
+
row-gap: var(--pf-v6-c-toolbar__group--m-action-group-plain--ColumnGap);
|
|
21999
|
+
}
|
|
21839
22000
|
.pf-v6-c-toolbar__group.pf-m-action-group-inline {
|
|
21840
22001
|
flex-wrap: wrap;
|
|
21841
22002
|
column-gap: var(--pf-v6-c-toolbar__group--m-action-group-inline--ColumnGap);
|
|
@@ -21912,7 +22073,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
21912
22073
|
}
|
|
21913
22074
|
.pf-v6-c-toolbar__group.pf-m-align-end,
|
|
21914
22075
|
.pf-v6-c-toolbar__item.pf-m-align-end {
|
|
21915
|
-
margin-
|
|
22076
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
22077
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
21916
22078
|
}
|
|
21917
22079
|
.pf-v6-c-toolbar__group.pf-m-flex-grow,
|
|
21918
22080
|
.pf-v6-c-toolbar__item.pf-m-flex-grow {
|
|
@@ -22167,7 +22329,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22167
22329
|
}
|
|
22168
22330
|
.pf-v6-c-toolbar__group.pf-m-align-end-on-sm,
|
|
22169
22331
|
.pf-v6-c-toolbar__item.pf-m-align-end-on-sm {
|
|
22170
|
-
margin-
|
|
22332
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
22333
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
22171
22334
|
}
|
|
22172
22335
|
.pf-v6-c-toolbar__group.pf-m-flex-grow-on-sm,
|
|
22173
22336
|
.pf-v6-c-toolbar__item.pf-m-flex-grow-on-sm {
|
|
@@ -22419,7 +22582,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22419
22582
|
}
|
|
22420
22583
|
.pf-v6-c-toolbar__group.pf-m-align-end-on-md,
|
|
22421
22584
|
.pf-v6-c-toolbar__item.pf-m-align-end-on-md {
|
|
22422
|
-
margin-
|
|
22585
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
22586
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
22423
22587
|
}
|
|
22424
22588
|
.pf-v6-c-toolbar__group.pf-m-flex-grow-on-md,
|
|
22425
22589
|
.pf-v6-c-toolbar__item.pf-m-flex-grow-on-md {
|
|
@@ -22671,7 +22835,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22671
22835
|
}
|
|
22672
22836
|
.pf-v6-c-toolbar__group.pf-m-align-end-on-lg,
|
|
22673
22837
|
.pf-v6-c-toolbar__item.pf-m-align-end-on-lg {
|
|
22674
|
-
margin-
|
|
22838
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
22839
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
22675
22840
|
}
|
|
22676
22841
|
.pf-v6-c-toolbar__group.pf-m-flex-grow-on-lg,
|
|
22677
22842
|
.pf-v6-c-toolbar__item.pf-m-flex-grow-on-lg {
|
|
@@ -22923,7 +23088,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22923
23088
|
}
|
|
22924
23089
|
.pf-v6-c-toolbar__group.pf-m-align-end-on-xl,
|
|
22925
23090
|
.pf-v6-c-toolbar__item.pf-m-align-end-on-xl {
|
|
22926
|
-
margin-
|
|
23091
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
23092
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
22927
23093
|
}
|
|
22928
23094
|
.pf-v6-c-toolbar__group.pf-m-flex-grow-on-xl,
|
|
22929
23095
|
.pf-v6-c-toolbar__item.pf-m-flex-grow-on-xl {
|
|
@@ -23175,7 +23341,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
23175
23341
|
}
|
|
23176
23342
|
.pf-v6-c-toolbar__group.pf-m-align-end-on-2xl,
|
|
23177
23343
|
.pf-v6-c-toolbar__item.pf-m-align-end-on-2xl {
|
|
23178
|
-
margin-
|
|
23344
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
23345
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
23179
23346
|
}
|
|
23180
23347
|
.pf-v6-c-toolbar__group.pf-m-flex-grow-on-2xl,
|
|
23181
23348
|
.pf-v6-c-toolbar__item.pf-m-flex-grow-on-2xl {
|
|
@@ -1,8 +1,14 @@
|
|
|
1
|
-
|
|
1
|
+
.ws-core-a-compass .pf-v6-c-compass {
|
|
2
|
+
height: 600px;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
#ws-core-a-compass-default [class*="pf-v6-c-compass"],
|
|
6
|
+
#ws-core-a-compass-docked [class*="pf-v6-c-compass"] {
|
|
2
7
|
position: relative;
|
|
3
8
|
}
|
|
4
9
|
|
|
5
|
-
#ws-core-a-compass-
|
|
10
|
+
#ws-core-a-compass-default [class*="pf-v6-c-compass"]::after,
|
|
11
|
+
#ws-core-a-compass-docked [class*="pf-v6-c-compass"]::after {
|
|
6
12
|
position: absolute;
|
|
7
13
|
inset: 0;
|
|
8
14
|
pointer-events: none;
|
|
@@ -8,7 +8,7 @@ cssPrefix: pf-v6-c-compass
|
|
|
8
8
|
|
|
9
9
|
## Examples
|
|
10
10
|
|
|
11
|
-
###
|
|
11
|
+
### Default
|
|
12
12
|
|
|
13
13
|
```html isBeta
|
|
14
14
|
<div class="pf-v6-c-compass pf-m-animate-smoothly">
|
|
@@ -52,6 +52,25 @@ cssPrefix: pf-v6-c-compass
|
|
|
52
52
|
|
|
53
53
|
```
|
|
54
54
|
|
|
55
|
+
### Docked
|
|
56
|
+
|
|
57
|
+
```html isBeta
|
|
58
|
+
<div class="pf-v6-c-compass pf-m-animate-smoothly pf-m-dock">
|
|
59
|
+
<div class="pf-v6-c-compass__dock">dock</div>
|
|
60
|
+
<div class="pf-v6-c-compass__main">
|
|
61
|
+
<div class="pf-v6-c-compass__main-header">
|
|
62
|
+
<div class="pf-v6-c-compass__panel">
|
|
63
|
+
<div class="pf-v6-c-compass__main-header-content">main header</div>
|
|
64
|
+
</div>
|
|
65
|
+
</div>
|
|
66
|
+
<div class="pf-v6-c-compass__content">
|
|
67
|
+
<div class="pf-v6-c-compass__panel pf-m-scrollable">content</div>
|
|
68
|
+
</div>
|
|
69
|
+
</div>
|
|
70
|
+
</div>
|
|
71
|
+
|
|
72
|
+
```
|
|
73
|
+
|
|
55
74
|
## Documentation
|
|
56
75
|
|
|
57
76
|
### Usage
|
|
@@ -62,6 +81,7 @@ cssPrefix: pf-v6-c-compass
|
|
|
62
81
|
| `.pf-v6-c-compass__header` | `<div>` | Initiates the compass header. **Required** |
|
|
63
82
|
| `.pf-v6-c-compass__logo` | `<div>` | Initiates the compass logo header. |
|
|
64
83
|
| `.pf-v6-c-compass__nav` | `<div>` | Initiates the compass nav. |
|
|
84
|
+
| `.pf-v6-c-compass__dock` | `<div>` | Initiates the compass dock. |
|
|
65
85
|
| `.pf-v6-c-compass__profile` | `<div>` | Initiates the compass profile. |
|
|
66
86
|
| `.pf-v6-c-compass__sidebar` | `<div>` | Initiates a compass sidebar. **Required** |
|
|
67
87
|
| `.pf-v6-c-compass__main` | `<div>` | Initiates the compass main wrapper. **Required** |
|
|
@@ -80,6 +100,7 @@ cssPrefix: pf-v6-c-compass
|
|
|
80
100
|
| `.pf-v6-c-compass__hero` | `<div>` | Initiates a compass hero. |
|
|
81
101
|
| `.pf-v6-c-compass__footer` | `<div>` | Initiates the compass footer. |
|
|
82
102
|
| `.pf-v6-c-compass__message-bar` | `<div>` | Initiates the compass message bar. |
|
|
103
|
+
| `.pf-m-dock` | `.pf-v6-c-compass` | Modifies for dock layout. |
|
|
83
104
|
| `.pf-m-no-glass` | `.pf-v6-c-compass`, `.pf-v6-c-compass__panel` | Modifies all elements or individual panels to remove the glass styles. |
|
|
84
105
|
| `.pf-m-start` | `.pf-v6-c-compass__sidebar` | Modifies a compass sidebar for start styles. **Required** |
|
|
85
106
|
| `.pf-m-end` | `.pf-v6-c-compass__sidebar` | Modifies a compass sidebar for end styles. **Required** |
|