@patternfly/patternfly 6.5.0-prerelease.31 → 6.5.0-prerelease.32
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 +40 -0
- package/components/Masthead/masthead.scss +47 -0
- package/components/Nav/nav.css +55 -0
- package/components/Nav/nav.scss +70 -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 +161 -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 +161 -10
- package/patternfly.css +161 -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,36 @@ 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--BackgroundColor: var(--pf-v6-c-masthead--m-docked--BackgroundColor);
|
|
10319
|
+
--pf-v6-c-masthead--GridTemplateRows: var(--pf-v6-c-masthead--m-docked--GridTemplateRows);
|
|
10320
|
+
--pf-v6-c-masthead--PaddingBlockStart: var(--pf-v6-c-masthead--m-docked--PaddingBlockStart);
|
|
10321
|
+
--pf-v6-c-masthead--PaddingBlockEnd: var(--pf-v6-c-masthead--m-docked--PaddingBlockEnd);
|
|
10322
|
+
--pf-v6-c-masthead--PaddingInlineStart: var(--pf-v6-c-masthead--m-docked--PaddingInlineStart);
|
|
10323
|
+
--pf-v6-c-masthead--PaddingInlineEnd: var(--pf-v6-c-masthead--m-docked--PaddingInlineEnd);
|
|
10324
|
+
--pf-v6-c-masthead--GridTemplateColumns: auto;
|
|
10325
|
+
--pf-v6-c-masthead--RowGap: var(--pf-v6-c-masthead--m-docked--RowGap);
|
|
10326
|
+
--pf-v6-c-masthead--m-display-inline--breakpoint--xl--GridTemplateColumns: auto;
|
|
10327
|
+
--pf-v6-c-masthead__main--GridColumn: auto;
|
|
10328
|
+
--pf-v6-c-masthead__content--GridColumn: auto;
|
|
10329
|
+
--pf-v6-c-masthead__logo--Width: auto;
|
|
10330
|
+
--pf-v6-c-masthead__main--MarginInlineEnd: 0;
|
|
10331
|
+
display: flex;
|
|
10332
|
+
flex-direction: column;
|
|
10333
|
+
align-items: center;
|
|
10334
|
+
width: fit-content;
|
|
10335
|
+
height: 100%;
|
|
10336
|
+
backdrop-filter: var(--pf-v6-c-masthead--m-docked--BackdropFilter);
|
|
10337
|
+
}
|
|
10338
|
+
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__content {
|
|
10339
|
+
flex-direction: column;
|
|
10340
|
+
flex-grow: 1;
|
|
10341
|
+
align-self: revert;
|
|
10342
|
+
}
|
|
10343
|
+
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-toolbar {
|
|
10344
|
+
--pf-v6-c-masthead--c-toolbar--Width: fit-content;
|
|
10345
|
+
height: var(--pf-v6-c-masthead--m-docked--c-toolbar--Height);
|
|
10346
|
+
}
|
|
10297
10347
|
.pf-v6-c-masthead .pf-v6-c-toolbar__content-section {
|
|
10298
10348
|
flex-wrap: nowrap;
|
|
10299
10349
|
min-width: 0;
|
|
@@ -12342,6 +12392,15 @@ ul.pf-v6-c-list {
|
|
|
12342
12392
|
--pf-v6-c-nav__section-title--PaddingInlineStart: var(--pf-v6-c-nav__link--PaddingInlineStart);
|
|
12343
12393
|
--pf-v6-c-nav__section-title--PaddingInlineEnd: var(--pf-v6-c-nav__link--PaddingInlineEnd);
|
|
12344
12394
|
--pf-v6-c-nav__item--RowGap: var(--pf-v6-c-nav__list--RowGap);
|
|
12395
|
+
--pf-v6-c-nav__item--accent--size: var(--pf-t--global--border--width--extra-strong);
|
|
12396
|
+
--pf-v6-c-nav__item--accent--color: var(--pf-t--global--border--color--clicked);
|
|
12397
|
+
--pf-v6-c-nav__item--accent--offset: calc(var(--pf-t--global--spacer--sm) * -1);
|
|
12398
|
+
--pf-v6-c-nav__item--accent--BorderRadius: var(--pf-t--global--border--radius--small);
|
|
12399
|
+
--pf-v6-c-nav__item--accent--ScaleY: 0;
|
|
12400
|
+
--pf-v6-c-nav__item--current--accent--ScaleY: 1;
|
|
12401
|
+
--pf-v6-c-nav__item--accent--TransitionDuration: 0;
|
|
12402
|
+
--pf-v6-c-nav__item--current--accent--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
|
|
12403
|
+
--pf-v6-c-nav__item--accent--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
|
|
12345
12404
|
--pf-v6-c-nav__item__toggle-icon--Rotate: 0;
|
|
12346
12405
|
--pf-v6-c-nav__item--m-expanded__toggle-icon--Rotate: 90deg;
|
|
12347
12406
|
--pf-v6-c-nav__item__toggle-icon--TransitionDuration--transform: var(--pf-t--global--motion--duration--icon--default);
|
|
@@ -12366,6 +12425,7 @@ ul.pf-v6-c-list {
|
|
|
12366
12425
|
--pf-v6-c-nav__link--m-current--TransitionTimingFunction--color: var(--pf-t--global--motion--timing-function--default);
|
|
12367
12426
|
--pf-v6-c-nav__link-icon--Color: var(--pf-t--global--icon--color--subtle);
|
|
12368
12427
|
--pf-v6-c-nav__link--m-current__link-icon--Color: var(--pf-t--global--icon--color--regular);
|
|
12428
|
+
--pf-v6-c-nav__link-text--FontSize: initial;
|
|
12369
12429
|
--pf-v6-c-nav__subnav--RowGap: var(--pf-t--global--border--width--extra-strong);
|
|
12370
12430
|
--pf-v6-c-nav__subnav--PaddingBlockStart: var(--pf-v6-c-nav__item--RowGap);
|
|
12371
12431
|
--pf-v6-c-nav__subnav--PaddingBlockEnd: var(--pf-v6-c-nav__item--RowGap);
|
|
@@ -12406,6 +12466,11 @@ ul.pf-v6-c-list {
|
|
|
12406
12466
|
--pf-v6-c-nav--m-horizontal--m-subnav__link--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
|
12407
12467
|
--pf-v6-c-nav--m-horizontal--m-subnav__link--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
12408
12468
|
--pf-v6-c-nav--m-horizontal--m-subnav__link--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
12469
|
+
--pf-v6-c-nav--m-docked__list--RowGap: var(--pf-t--global--spacer--gap--action-to-action--plain);
|
|
12470
|
+
--pf-v6-c-nav--m-docked__link--PaddingInlineStart: var(--pf-t--global--spacer--sm);
|
|
12471
|
+
--pf-v6-c-nav--m-docked__link--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
|
12472
|
+
--pf-v6-c-nav--m-docked__link--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
|
|
12473
|
+
--pf-v6-c-nav--m-docked__link--m-current--BackgroundColor: var(--pf-t--global--background--color--action--plain--clicked);
|
|
12409
12474
|
}
|
|
12410
12475
|
@media screen and (prefers-reduced-motion: no-preference) {
|
|
12411
12476
|
.pf-v6-c-nav {
|
|
@@ -12447,6 +12512,21 @@ ul.pf-v6-c-list {
|
|
|
12447
12512
|
.pf-v6-c-nav.pf-m-fill {
|
|
12448
12513
|
flex-grow: 1;
|
|
12449
12514
|
}
|
|
12515
|
+
.pf-v6-c-nav.pf-m-docked {
|
|
12516
|
+
--pf-v6-c-nav--PaddingBlockStart: 0;
|
|
12517
|
+
--pf-v6-c-nav--PaddingBlockEnd: 0;
|
|
12518
|
+
--pf-v6-c-nav__list--RowGap: var(--pf-v6-c-nav--m-docked__list--RowGap);
|
|
12519
|
+
--pf-v6-c-nav__link--PaddingInlineStart: var(--pf-v6-c-nav--m-docked__link--PaddingInlineStart);
|
|
12520
|
+
--pf-v6-c-nav__link--PaddingInlineEnd: var(--pf-v6-c-nav--m-docked__link--PaddingInlineEnd);
|
|
12521
|
+
--pf-v6-c-nav__link--hover--BackgroundColor: var(--pf-v6-c-nav--m-docked__link--hover--BackgroundColor);
|
|
12522
|
+
--pf-v6-c-nav__link--m-current--BackgroundColor: var(--pf-v6-c-nav--m-docked__link--m-current--BackgroundColor);
|
|
12523
|
+
width: fit-content;
|
|
12524
|
+
}
|
|
12525
|
+
.pf-v6-c-nav.pf-m-docked .pf-v6-c-nav__link-icon {
|
|
12526
|
+
position: relative;
|
|
12527
|
+
align-self: center;
|
|
12528
|
+
min-width: 1lh;
|
|
12529
|
+
}
|
|
12450
12530
|
.pf-v6-c-nav .pf-v6-c-menu {
|
|
12451
12531
|
--pf-v6-c-menu--MinWidth: 100%;
|
|
12452
12532
|
}
|
|
@@ -12510,14 +12590,34 @@ ul.pf-v6-c-list {
|
|
|
12510
12590
|
}
|
|
12511
12591
|
|
|
12512
12592
|
.pf-v6-c-nav__item {
|
|
12593
|
+
position: relative;
|
|
12513
12594
|
scroll-snap-align: var(--pf-v6-c-nav__item--ScrollSnapAlign);
|
|
12514
12595
|
}
|
|
12596
|
+
.pf-v6-c-nav__item::before {
|
|
12597
|
+
position: absolute;
|
|
12598
|
+
inset-block-start: 0;
|
|
12599
|
+
inset-block-end: 0;
|
|
12600
|
+
inset-inline-start: var(--pf-v6-c-nav__item--accent--offset);
|
|
12601
|
+
width: var(--pf-v6-c-nav__item--accent--size);
|
|
12602
|
+
pointer-events: none;
|
|
12603
|
+
content: var(--pf-v6-c-nav__item--accent--content, "");
|
|
12604
|
+
background-color: var(--pf-v6-c-nav__item--accent--color);
|
|
12605
|
+
border-radius: var(--pf-v6-c-nav__item--accent--BorderRadius);
|
|
12606
|
+
transition-timing-function: var(--pf-v6-c-nav__item--accent--TransitionTimingFunction);
|
|
12607
|
+
transition-duration: var(--pf-v6-c-nav__item--accent--TransitionDuration);
|
|
12608
|
+
transition-property: scale;
|
|
12609
|
+
scale: 1 var(--pf-v6-c-nav__item--accent--ScaleY);
|
|
12610
|
+
}
|
|
12515
12611
|
.pf-v6-c-nav__item > .pf-v6-c-nav__link[button] {
|
|
12516
12612
|
margin-block-end: var(--pf-v6-c-nav__button--RowGap--row-offset);
|
|
12517
12613
|
}
|
|
12518
12614
|
.pf-v6-c-nav__item.pf-m-expanded:last-child > .pf-v6-c-nav__subnav {
|
|
12519
12615
|
margin-block-end: calc(var(--pf-v6-c-nav__subnav--PaddingBlockEnd) * -1);
|
|
12520
12616
|
}
|
|
12617
|
+
.pf-v6-c-nav__item:has(> .pf-v6-c-nav__link.pf-m-current) {
|
|
12618
|
+
--pf-v6-c-nav__item--accent--ScaleY: var(--pf-v6-c-nav__item--current--accent--ScaleY);
|
|
12619
|
+
--pf-v6-c-nav__item--accent--TransitionDuration: var(--pf-v6-c-nav__item--current--accent--TransitionDuration);
|
|
12620
|
+
}
|
|
12521
12621
|
|
|
12522
12622
|
.pf-v6-c-nav__section {
|
|
12523
12623
|
row-gap: var(--pf-v6-c-nav__section--RowGap, var(--pf-v6-c-nav__list--RowGap));
|
|
@@ -12579,6 +12679,10 @@ ul.pf-v6-c-list {
|
|
|
12579
12679
|
color: var(--pf-v6-c-nav__link-icon--Color);
|
|
12580
12680
|
}
|
|
12581
12681
|
|
|
12682
|
+
.pf-v6-c-nav__link-text {
|
|
12683
|
+
font-size: var(--pf-v6-c-nav__link-text--FontSize, inherit);
|
|
12684
|
+
}
|
|
12685
|
+
|
|
12582
12686
|
.pf-v6-c-nav__toggle {
|
|
12583
12687
|
flex: none;
|
|
12584
12688
|
align-self: start;
|
|
@@ -12634,6 +12738,7 @@ ul.pf-v6-c-list {
|
|
|
12634
12738
|
}
|
|
12635
12739
|
|
|
12636
12740
|
.pf-v6-c-nav:where(.pf-m-horizontal) {
|
|
12741
|
+
--pf-v6-c-nav__item--accent--content: none;
|
|
12637
12742
|
padding: 0;
|
|
12638
12743
|
overflow: hidden;
|
|
12639
12744
|
}
|
|
@@ -12999,6 +13104,7 @@ ul.pf-v6-c-list {
|
|
|
12999
13104
|
--pf-v6-c-page--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
|
|
13000
13105
|
--pf-v6-c-page--inset: var(--pf-t--global--spacer--inset--page-chrome);
|
|
13001
13106
|
--pf-v6-c-page--c-masthead--ZIndex: var(--pf-t--global--z-index--md);
|
|
13107
|
+
--pf-v6-c-page__dock--ZIndex: var(--pf-t--global--z-index--md);
|
|
13002
13108
|
--pf-v6-c-page__sidebar--ZIndex: var(--pf-t--global--z-index--sm);
|
|
13003
13109
|
--pf-v6-c-page__sidebar--Width--base: 18.125rem;
|
|
13004
13110
|
--pf-v6-c-page__sidebar--Width: var(--pf-v6-c-page__sidebar--Width--base);
|
|
@@ -13106,6 +13212,9 @@ ul.pf-v6-c-list {
|
|
|
13106
13212
|
--pf-v6-c-page__main-wizard--BorderBlockStartWidth: var(--pf-t--global--border--width--action--default);
|
|
13107
13213
|
--pf-v6-c-page__drawer--c-drawer--BorderBlockStartWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
13108
13214
|
--pf-v6-c-page__drawer--c-drawer--BorderBlockStartColor: var(--pf-t--global--border--color--high-contrast);
|
|
13215
|
+
--pf-v6-c-page--m-dock__main-container--MaxHeight: calc(100% - var(--pf-t--global--spacer--lg) * 2);
|
|
13216
|
+
--pf-v6-c-page--m-dock__main-container--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
|
13217
|
+
--pf-v6-c-page--m-dock--ColumnGap: var(--pf-t--global--spacer--inset--page-chrome);
|
|
13109
13218
|
}
|
|
13110
13219
|
@media screen and (prefers-reduced-motion: no-preference) {
|
|
13111
13220
|
.pf-v6-c-page {
|
|
@@ -13148,6 +13257,16 @@ ul.pf-v6-c-list {
|
|
|
13148
13257
|
grid-template-columns: var(--pf-v6-c-page__sidebar--Width) 1fr;
|
|
13149
13258
|
}
|
|
13150
13259
|
}
|
|
13260
|
+
.pf-v6-c-page.pf-m-dock {
|
|
13261
|
+
--pf-v6-c-page--masthead--main-container--GridArea: main;
|
|
13262
|
+
--pf-v6-c-page__main-container--MaxHeight: var(--pf-v6-c-page--m-dock__main-container--MaxHeight);
|
|
13263
|
+
--pf-v6-c-page__main-container--MarginBlockStart: var(--pf-v6-c-page--m-dock__main-container--MarginBlockStart);
|
|
13264
|
+
--pf-v6-c-page__main-container--MarginInlineStart: 0;
|
|
13265
|
+
grid-template-areas: "dock main";
|
|
13266
|
+
grid-template-rows: auto;
|
|
13267
|
+
grid-template-columns: auto 1fr;
|
|
13268
|
+
column-gap: var(--pf-v6-c-page--m-dock--ColumnGap);
|
|
13269
|
+
}
|
|
13151
13270
|
.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
13271
|
--pf-v6-c-button--hamburger-icon--top--path: var(--pf-v6-c-button--hamburger-icon--top--collapse--path);
|
|
13153
13272
|
--pf-v6-c-button--hamburger-icon--arrow--path: var(--pf-v6-c-button--hamburger-icon--arrow--collapse--path);
|
|
@@ -13204,6 +13323,11 @@ ul.pf-v6-c-list {
|
|
|
13204
13323
|
}
|
|
13205
13324
|
}
|
|
13206
13325
|
|
|
13326
|
+
.pf-v6-c-page__dock {
|
|
13327
|
+
z-index: var(--pf-v6-c-page__dock--ZIndex);
|
|
13328
|
+
grid-area: dock;
|
|
13329
|
+
}
|
|
13330
|
+
|
|
13207
13331
|
.pf-v6-c-page__sidebar {
|
|
13208
13332
|
z-index: var(--pf-v6-c-page__sidebar--ZIndex);
|
|
13209
13333
|
display: flex;
|
|
@@ -13507,6 +13631,7 @@ ul.pf-v6-c-list {
|
|
|
13507
13631
|
flex-direction: column;
|
|
13508
13632
|
align-self: var(--pf-v6-c-page__main-container--AlignSelf);
|
|
13509
13633
|
max-height: var(--pf-v6-c-page__main-container--MaxHeight);
|
|
13634
|
+
margin-block-start: var(--pf-v6-c-page__main-container--MarginBlockStart, 0);
|
|
13510
13635
|
margin-inline-start: var(--pf-v6-c-page__main-container--MarginInlineStart);
|
|
13511
13636
|
margin-inline-end: var(--pf-v6-c-page__main-container--MarginInlineEnd);
|
|
13512
13637
|
background: var(--pf-v6-c-page__main-container--BackgroundColor);
|
|
@@ -21540,6 +21665,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
21540
21665
|
--pf-v6-c-toolbar--m-sticky--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
21541
21666
|
--pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
21542
21667
|
--pf-v6-c-toolbar--m-sticky--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
21668
|
+
--pf-v6-c-toolbar--m-vertical--Width: fit-content;
|
|
21543
21669
|
--pf-v6-c-toolbar__expand-all-icon--Rotate: 0;
|
|
21544
21670
|
--pf-v6-c-toolbar__expand-all-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
21545
21671
|
--pf-v6-c-toolbar__expand-all-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
@@ -21743,6 +21869,16 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
21743
21869
|
.pf-v6-c-toolbar.pf-m-no-background {
|
|
21744
21870
|
--pf-v6-c-toolbar--BackgroundColor: var(--pf-v6-c-toolbar--m-no-background--BackgroundColor);
|
|
21745
21871
|
}
|
|
21872
|
+
.pf-v6-c-toolbar.pf-m-vertical {
|
|
21873
|
+
--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart: auto;
|
|
21874
|
+
--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart: 0;
|
|
21875
|
+
--pf-v6-c-toolbar--PaddingBlockEnd: 0;
|
|
21876
|
+
--pf-v6-c-toolbar--Width: var(--pf-v6-c-toolbar--m-vertical--Width);
|
|
21877
|
+
}
|
|
21878
|
+
.pf-v6-c-toolbar.pf-m-vertical :is(.pf-v6-c-toolbar__group, .pf-v6-c-toolbar__item, .pf-v6-c-toolbar__content-section) {
|
|
21879
|
+
flex-direction: column;
|
|
21880
|
+
align-items: center;
|
|
21881
|
+
}
|
|
21746
21882
|
|
|
21747
21883
|
.pf-v6-c-toolbar__item {
|
|
21748
21884
|
--pf-v6-c-toolbar__item--Width--base: var(--pf-v6-c-toolbar__item--Width);
|
|
@@ -21822,6 +21958,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
21822
21958
|
row-gap: var(--pf-v6-c-toolbar__group--RowGap);
|
|
21823
21959
|
column-gap: var(--pf-v6-c-toolbar__group--ColumnGap);
|
|
21824
21960
|
}
|
|
21961
|
+
.pf-v6-c-toolbar.pf-m-vertical .pf-v6-c-toolbar__group {
|
|
21962
|
+
row-gap: var(--pf-v6-c-toolbar__group--ColumnGap);
|
|
21963
|
+
}
|
|
21825
21964
|
.pf-v6-c-toolbar__group.pf-m-filter-group {
|
|
21826
21965
|
column-gap: var(--pf-v6-c-toolbar__group--m-filter-group--ColumnGap);
|
|
21827
21966
|
}
|
|
@@ -21833,9 +21972,15 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
21833
21972
|
.pf-v6-c-toolbar__group.pf-m-action-group {
|
|
21834
21973
|
column-gap: var(--pf-v6-c-toolbar__group--m-action-group--ColumnGap);
|
|
21835
21974
|
}
|
|
21975
|
+
.pf-v6-c-toolbar.pf-m-vertical .pf-v6-c-toolbar__group.pf-m-action-group {
|
|
21976
|
+
row-gap: var(--pf-v6-c-toolbar__group--m-action-group--ColumnGap);
|
|
21977
|
+
}
|
|
21836
21978
|
.pf-v6-c-toolbar__group.pf-m-action-group-plain {
|
|
21837
21979
|
column-gap: var(--pf-v6-c-toolbar__group--m-action-group-plain--ColumnGap);
|
|
21838
21980
|
}
|
|
21981
|
+
.pf-v6-c-toolbar.pf-m-vertical .pf-v6-c-toolbar__group.pf-m-action-group-plain {
|
|
21982
|
+
row-gap: var(--pf-v6-c-toolbar__group--m-action-group-plain--ColumnGap);
|
|
21983
|
+
}
|
|
21839
21984
|
.pf-v6-c-toolbar__group.pf-m-action-group-inline {
|
|
21840
21985
|
flex-wrap: wrap;
|
|
21841
21986
|
column-gap: var(--pf-v6-c-toolbar__group--m-action-group-inline--ColumnGap);
|
|
@@ -21912,7 +22057,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
21912
22057
|
}
|
|
21913
22058
|
.pf-v6-c-toolbar__group.pf-m-align-end,
|
|
21914
22059
|
.pf-v6-c-toolbar__item.pf-m-align-end {
|
|
21915
|
-
margin-
|
|
22060
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
22061
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
21916
22062
|
}
|
|
21917
22063
|
.pf-v6-c-toolbar__group.pf-m-flex-grow,
|
|
21918
22064
|
.pf-v6-c-toolbar__item.pf-m-flex-grow {
|
|
@@ -22167,7 +22313,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22167
22313
|
}
|
|
22168
22314
|
.pf-v6-c-toolbar__group.pf-m-align-end-on-sm,
|
|
22169
22315
|
.pf-v6-c-toolbar__item.pf-m-align-end-on-sm {
|
|
22170
|
-
margin-
|
|
22316
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
22317
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
22171
22318
|
}
|
|
22172
22319
|
.pf-v6-c-toolbar__group.pf-m-flex-grow-on-sm,
|
|
22173
22320
|
.pf-v6-c-toolbar__item.pf-m-flex-grow-on-sm {
|
|
@@ -22419,7 +22566,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22419
22566
|
}
|
|
22420
22567
|
.pf-v6-c-toolbar__group.pf-m-align-end-on-md,
|
|
22421
22568
|
.pf-v6-c-toolbar__item.pf-m-align-end-on-md {
|
|
22422
|
-
margin-
|
|
22569
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
22570
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
22423
22571
|
}
|
|
22424
22572
|
.pf-v6-c-toolbar__group.pf-m-flex-grow-on-md,
|
|
22425
22573
|
.pf-v6-c-toolbar__item.pf-m-flex-grow-on-md {
|
|
@@ -22671,7 +22819,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22671
22819
|
}
|
|
22672
22820
|
.pf-v6-c-toolbar__group.pf-m-align-end-on-lg,
|
|
22673
22821
|
.pf-v6-c-toolbar__item.pf-m-align-end-on-lg {
|
|
22674
|
-
margin-
|
|
22822
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
22823
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
22675
22824
|
}
|
|
22676
22825
|
.pf-v6-c-toolbar__group.pf-m-flex-grow-on-lg,
|
|
22677
22826
|
.pf-v6-c-toolbar__item.pf-m-flex-grow-on-lg {
|
|
@@ -22923,7 +23072,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22923
23072
|
}
|
|
22924
23073
|
.pf-v6-c-toolbar__group.pf-m-align-end-on-xl,
|
|
22925
23074
|
.pf-v6-c-toolbar__item.pf-m-align-end-on-xl {
|
|
22926
|
-
margin-
|
|
23075
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
23076
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
22927
23077
|
}
|
|
22928
23078
|
.pf-v6-c-toolbar__group.pf-m-flex-grow-on-xl,
|
|
22929
23079
|
.pf-v6-c-toolbar__item.pf-m-flex-grow-on-xl {
|
|
@@ -23175,7 +23325,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
23175
23325
|
}
|
|
23176
23326
|
.pf-v6-c-toolbar__group.pf-m-align-end-on-2xl,
|
|
23177
23327
|
.pf-v6-c-toolbar__item.pf-m-align-end-on-2xl {
|
|
23178
|
-
margin-
|
|
23328
|
+
margin-block-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginBlockStart, 0);
|
|
23329
|
+
margin-inline-start: var(--pf-v6-c-toolbar--child--m-align-end--MarginInlineStart, auto);
|
|
23179
23330
|
}
|
|
23180
23331
|
.pf-v6-c-toolbar__group.pf-m-flex-grow-on-2xl,
|
|
23181
23332
|
.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** |
|