@patternfly/patternfly 6.4.0 → 6.5.0-prerelease.10

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.
Files changed (58) hide show
  1. package/assets/images/RHAiExperienceIcon.svg +27 -0
  2. package/assets/images/RHAutomationsLogo.svg +96 -0
  3. package/assets/images/RHServerStackIcon.svg +16 -0
  4. package/assets/images/compass--hero-bg.png +0 -0
  5. package/assets/images/compass--rh-wallpaper-dark.png +0 -0
  6. package/assets/images/compass--rh-wallpaper-light.png +0 -0
  7. package/assets/images/compass--wallpaper-dark.png +0 -0
  8. package/assets/images/compass--wallpaper-light.png +0 -0
  9. package/base/patternfly-common.css +46 -0
  10. package/base/patternfly-common.scss +56 -0
  11. package/components/ActionList/action-list.css +9 -0
  12. package/components/ActionList/action-list.scss +12 -0
  13. package/components/Button/button.css +18 -0
  14. package/components/Button/button.scss +22 -0
  15. package/components/Card/card.css +6 -0
  16. package/components/Card/card.scss +8 -0
  17. package/components/Compass/compass.css +211 -0
  18. package/components/Compass/compass.scss +276 -0
  19. package/components/DataList/data-list.css +5 -1
  20. package/components/DataList/data-list.scss +6 -1
  21. package/components/Menu/menu.css +1 -1
  22. package/components/Menu/menu.scss +1 -1
  23. package/components/MenuToggle/menu-toggle.css +4 -0
  24. package/components/MenuToggle/menu-toggle.scss +5 -0
  25. package/components/Panel/panel.css +1 -1
  26. package/components/Panel/panel.scss +1 -1
  27. package/components/Spinner/spinner.css +3 -0
  28. package/components/Spinner/spinner.scss +5 -0
  29. package/components/Table/table.css +3 -0
  30. package/components/Table/table.scss +5 -0
  31. package/components/Tabs/tabs.css +17 -1
  32. package/components/Tabs/tabs.scss +22 -1
  33. package/components/_index.css +278 -4
  34. package/components/_index.scss +1 -0
  35. package/docs/components/ActionList/examples/ActionList.md +85 -0
  36. package/docs/components/Button/examples/Button.md +116 -0
  37. package/docs/components/Card/examples/Card.md +6 -4
  38. package/docs/components/Compass/examples/Compass.md +4608 -0
  39. package/docs/components/DataList/examples/DataList.md +181 -185
  40. package/docs/components/Drawer/examples/Drawer.md +1 -1
  41. package/docs/components/MenuToggle/examples/MenuToggle.md +40 -0
  42. package/docs/components/Progress/examples/Progress.md +3 -3
  43. package/docs/components/Table/examples/Table.md +88 -0
  44. package/docs/components/Tabs/examples/Tabs.md +188 -0
  45. package/docs/components/Wizard/examples/Wizard.md +15 -15
  46. package/docs/demos/Dashboard/examples/Dashboard.md +1 -4
  47. package/docs/demos/DescriptionList/examples/DescriptionList.md +31 -33
  48. package/docs/demos/Drawer/examples/Drawer.md +31 -33
  49. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +127 -163
  50. package/docs/demos/Wizard/examples/Wizard.md +31 -34
  51. package/package.json +5 -5
  52. package/patternfly-base-no-globals.css +46 -0
  53. package/patternfly-base.css +46 -0
  54. package/patternfly-no-globals.css +324 -4
  55. package/patternfly.css +324 -4
  56. package/patternfly.min.css +1 -1
  57. package/patternfly.min.css.map +1 -1
  58. package/sass-utilities/namespaces-components.scss +3 -0
@@ -166,6 +166,9 @@
166
166
  --pf-v6-c-tabs__add--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
167
167
  --pf-v6-c-tabs__add--PaddingInlineStart: var(--pf-t--global--spacer--sm);
168
168
  --pf-v6-c-tabs__add--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
169
+ --pf-v6-c-tabs--m-nav__link--BorderRadius: var(--pf-t--global--border--radius--pill);
170
+ --pf-v6-c-tabs--m-nav__link--disabled--Color: var(--pf-t--global--text--color--disabled);
171
+ --pf-v6-c-tabs--m-nav--m-subtab__scroll-button--button--FontSize: var(--pf-t--global--icon--size--font--body--sm);
169
172
  --pf-v6-c-tabs__link-toggle-icon--Color: var(--pf-t--global--icon--color--regular);
170
173
  --pf-v6-c-tabs__link-toggle-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
171
174
  --pf-v6-c-tabs__link-toggle-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
@@ -443,6 +446,19 @@
443
446
  .pf-v6-c-tabs.pf-m-overflow .pf-v6-c-tabs__list {
444
447
  overflow: visible;
445
448
  }
449
+ .pf-v6-c-tabs.pf-m-nav {
450
+ --pf-v6-c-tabs__link--disabled--BackgroundColor: transparent;
451
+ --pf-v6-c-tabs__link--disabled--Color: var(--pf-v6-c-tabs--m-nav__link--disabled--Color);
452
+ --pf-v6-c-tabs__link--hover--BorderColor: transparent;
453
+ --pf-v6-c-tabs__link--BorderRadius: var(--pf-v6-c-tabs--m-nav__link--BorderRadius);
454
+ }
455
+ .pf-v6-c-tabs.pf-m-nav::before,
456
+ .pf-v6-c-tabs.pf-m-nav .pf-v6-c-tabs__link::before {
457
+ border: 0;
458
+ }
459
+ .pf-v6-c-tabs.pf-m-nav.pf-m-subtab .pf-v6-c-tabs__scroll-button .pf-v6-c-button {
460
+ --pf-v6-c-button--FontSize: var(--pf-v6-c-tabs--m-nav--m-subtab__scroll-button--button--FontSize);
461
+ }
446
462
 
447
463
  .pf-v6-c-tabs__toggle {
448
464
  display: var(--pf-v6-c-tabs__toggle--Display);
@@ -492,7 +508,7 @@
492
508
  }
493
509
  .pf-v6-c-tabs__item.pf-m-current {
494
510
  --pf-v6-c-tabs__link--Color: var(--pf-v6-c-tabs__item--m-current__link--Color);
495
- --pf-v6-c-tabs__link--after--BorderColor: var(--pf-v6-c-tabs__item--m-current__link--after--BorderColor);
511
+ --pf-v6-c-tabs__link--after--BorderColor: var(--pf-v6-c-tabs--link-accent--color);
496
512
  --pf-v6-c-tabs__link--after--BorderWidth: var(--pf-v6-c-tabs__item--m-current__link--after--BorderWidth);
497
513
  --pf-v6-c-tabs__item--BackgroundColor: var(--pf-v6-c-tabs__item--m-current--BackgroundColor);
498
514
  }
@@ -205,6 +205,11 @@ $pf-v6-c-tabs--spacer-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2xl
205
205
  --#{$tabs}__add--PaddingInlineStart: var(--pf-t--global--spacer--sm);
206
206
  --#{$tabs}__add--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
207
207
 
208
+ // Nav variant
209
+ --#{$tabs}--m-nav__link--BorderRadius: var(--pf-t--global--border--radius--pill);
210
+ --#{$tabs}--m-nav__link--disabled--Color: var(--pf-t--global--text--color--disabled);
211
+ --#{$tabs}--m-nav--m-subtab__scroll-button--button--FontSize: var(--pf-t--global--icon--size--font--body--sm);
212
+
208
213
  // Overflow menu toggle icon
209
214
  --#{$tabs}__link-toggle-icon--Color: var(--pf-t--global--icon--color--regular);
210
215
  --#{$tabs}__link-toggle-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
@@ -511,6 +516,22 @@ $pf-v6-c-tabs--spacer-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2xl
511
516
  overflow: visible;
512
517
  }
513
518
  }
519
+
520
+ &.pf-m-nav {
521
+ --#{$tabs}__link--disabled--BackgroundColor: transparent;
522
+ --#{$tabs}__link--disabled--Color: var(--#{$tabs}--m-nav__link--disabled--Color);
523
+ --#{$tabs}__link--hover--BorderColor: transparent;
524
+ --#{$tabs}__link--BorderRadius: var(--#{$tabs}--m-nav__link--BorderRadius);
525
+
526
+ &::before,
527
+ .#{$tabs}__link::before {
528
+ border: 0;
529
+ }
530
+
531
+ &.pf-m-subtab .#{$tabs}__scroll-button .#{$button} {
532
+ --#{$button}--FontSize: var(--#{$tabs}--m-nav--m-subtab__scroll-button--button--FontSize);
533
+ }
534
+ }
514
535
  }
515
536
 
516
537
  // Expandable toggle
@@ -563,7 +584,7 @@ $pf-v6-c-tabs--spacer-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2xl
563
584
  // Current
564
585
  &.pf-m-current {
565
586
  --#{$tabs}__link--Color: var(--#{$tabs}__item--m-current__link--Color);
566
- --#{$tabs}__link--after--BorderColor: var(--#{$tabs}__item--m-current__link--after--BorderColor);
587
+ --#{$tabs}__link--after--BorderColor: var(--#{$tabs}--link-accent--color);
567
588
  --#{$tabs}__link--after--BorderWidth: var(--#{$tabs}__item--m-current__link--after--BorderWidth);
568
589
  --#{$tabs}__item--BackgroundColor: var(--#{$tabs}__item--m-current--BackgroundColor);
569
590
  }
@@ -445,7 +445,9 @@
445
445
  --pf-v6-c-action-list--RowGap: var(--pf-t--global--spacer--gap--group--vertical);
446
446
  --pf-v6-c-action-list--ColumnGap: var(--pf-t--global--spacer--gap--group-to-group--horizontal--default);
447
447
  --pf-v6-c-action-list__group--ColumnGap: var(--pf-t--global--spacer--gap--action-to-action--default);
448
+ --pf-v6-c-action-list--m-vertical--RowGap: var(--pf-t--global--spacer--gap--group-to-group--vertical--default);
448
449
  --pf-v6-c-action-list--m-icons--ColumnGap: var(--pf-t--global--spacer--gap--action-to-action--plain);
450
+ --pf-v6-c-action-list--m-vertical--m-icons--RowGap: var(--pf-t--global--spacer--gap--action-to-action--plain);
449
451
  }
450
452
 
451
453
  .pf-v6-c-action-list,
@@ -460,8 +462,15 @@
460
462
  }
461
463
  .pf-v6-c-action-list.pf-m-icons {
462
464
  --pf-v6-c-action-list__group--ColumnGap: var(--pf-v6-c-action-list--m-icons--ColumnGap);
465
+ --pf-v6-c-action-list--m-vertical--RowGap: var(--pf-v6-c-action-list--m-vertical--m-icons--RowGap);
463
466
  column-gap: var(--pf-v6-c-action-list--m-icons--ColumnGap);
464
467
  }
468
+ .pf-v6-c-action-list.pf-m-vertical, .pf-v6-c-action-list.pf-m-vertical .pf-v6-c-action-list__group {
469
+ flex-direction: column;
470
+ }
471
+ .pf-v6-c-action-list.pf-m-vertical {
472
+ row-gap: var(--pf-v6-c-action-list--m-vertical--RowGap);
473
+ }
465
474
 
466
475
  .pf-v6-c-action-list__group {
467
476
  row-gap: var(--pf-v6-c-action-list__group--RowGap, var(--pf-v6-c-action-list--RowGap));
@@ -1878,6 +1887,14 @@ button.pf-v6-c-breadcrumb__link {
1878
1887
  --pf-v6-c-button--hamburger-icon--arrow--collapse--path: path("M3,7 L1,5 L3,3");
1879
1888
  --pf-v6-c-button--hamburger-icon--bottom--collapse--path: path("M9,9 L5,9");
1880
1889
  --pf-v6-c-button--m-hamburger__icon--m-expand--ScaleX: -1;
1890
+ --pf-v6-c-button--m-circle--ScaleX: 1.29;
1891
+ --pf-v6-c-button--m-circle--ScaleY: 1.29;
1892
+ --pf-v6-c-button--m-circle--BorderRadius: var(--pf-t--global--border--radius--pill);
1893
+ --pf-v6-c-button--m-circle--Padding--base: var(--pf-t--global--spacer--control--vertical--default);
1894
+ --pf-v6-c-button--m-circle--PaddingBlockStart: var(--pf-v6-c-button--m-circle--Padding--base);
1895
+ --pf-v6-c-button--m-circle--PaddingInlineEnd: 0;
1896
+ --pf-v6-c-button--m-circle--PaddingBlockEnd: var(--pf-v6-c-button--m-circle--Padding--base);
1897
+ --pf-v6-c-button--m-circle--PaddingInlineStart: 0;
1881
1898
  }
1882
1899
 
1883
1900
  .pf-v6-c-button {
@@ -2245,6 +2262,16 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
2245
2262
  --pf-v6-c-button--hover__icon--TransitionDelay: 0s;
2246
2263
  --pf-v6-c-button--hover__icon--ScaleX: 1;
2247
2264
  }
2265
+ .pf-v6-c-button.pf-m-circle {
2266
+ --pf-v6-c-button--BorderRadius: var(--pf-v6-c-button--m-circle--BorderRadius);
2267
+ --pf-v6-c-button--PaddingBlockStart: var(--pf-v6-c-button--m-circle--PaddingBlockStart);
2268
+ --pf-v6-c-button--PaddingInlineEnd: var(--pf-v6-c-button--m-circle--PaddingInlineEnd);
2269
+ --pf-v6-c-button--PaddingBlockEnd: var(--pf-v6-c-button--m-circle--PaddingBlockEnd);
2270
+ --pf-v6-c-button--PaddingInlineStart: var(--pf-v6-c-button--m-circle--PaddingInlineStart);
2271
+ }
2272
+ .pf-v6-c-button.pf-m-circle .pf-v6-c-button__icon {
2273
+ scale: var(--pf-v6-c-button--m-circle--ScaleX) var(--pf-v6-c-button--m-circle--ScaleY);
2274
+ }
2248
2275
  .pf-v6-c-button:hover, .pf-v6-c-button:focus {
2249
2276
  --pf-v6-c-button--Color: var(--pf-v6-c-button--hover--Color);
2250
2277
  --pf-v6-c-button--BackgroundColor: var(--pf-v6-c-button--hover--BackgroundColor);
@@ -2782,6 +2809,12 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
2782
2809
  .pf-v6-c-card.pf-m-selectable.pf-m-clickable .pf-v6-c-card__selectable-actions :is(.pf-v6-c-check__input, .pf-v6-c-radio__input):where(:disabled) ~ :is(.pf-v6-c-check__label, .pf-v6-c-radio__label), .pf-v6-c-card.pf-m-selectable.pf-m-clickable.pf-m-disabled {
2783
2810
  --pf-v6-c-card--BackgroundColor: var(--pf-v6-c-card--m-selectable--m-disabled--BackgroundColor);
2784
2811
  }
2812
+ .pf-v6-c-card__actions:has(> .pf-v6-c-card__selectable-actions input.pf-v6-screen-reader), .pf-v6-c-card.pf-m-clickable:not(.pf-m-selectable) {
2813
+ --pf-v6-c-card__actions--PaddingInlineStart: 0;
2814
+ --pf-v6-c-card__actions--MarginBlockStart: 0;
2815
+ --pf-v6-c-card__actions--MarginBlockEnd: 0;
2816
+ }
2817
+
2785
2818
  .pf-v6-c-card.pf-m-compact {
2786
2819
  --pf-v6-c-card__title-text--FontSize: var(--pf-v6-c-card--m-compact__title-text--FontSize);
2787
2820
  --pf-v6-c-card__body--FontSize: var(--pf-v6-c-card--m-compact__body--FontSize);
@@ -3456,6 +3489,217 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
3456
3489
  margin-inline-start: var(--pf-v6-c-code-editor__tab-icon--text--MarginInlineStart);
3457
3490
  }
3458
3491
 
3492
+ .pf-v6-c-compass {
3493
+ --pf-v6-c-compass--BackgroundImage: var(--pf-v6-c-compass--BackgroundImage--light);
3494
+ --pf-v6-c-compass--BackgroundImage--light: none;
3495
+ --pf-v6-c-compass--BackgroundImage--dark: none;
3496
+ --pf-v6-c-compass--Padding: var(--pf-t--global--spacer--inset--page-chrome);
3497
+ --pf-v6-c-compass--RowGap: var(--pf-t--global--spacer--xl);
3498
+ --pf-v6-c-compass--ColumnGap: var(--pf-t--global--spacer--xl);
3499
+ --pf-v6-c-compass__nav--RowGap: var(--pf-t--global--spacer--gap--group--vertical);
3500
+ --pf-v6-c-compass__sidebar--Padding: var(--pf-t--global--spacer--sm);
3501
+ --pf-v6-c-compass__main--RowGap: var(--pf-t--global--spacer--md);
3502
+ --pf-v6-c-compass__panel--BackgroundColor--rgb--light: 255,255,255;
3503
+ --pf-v6-c-compass__panel--BackgroundColor--opacity--light: .8;
3504
+ --pf-v6-c-compass__panel--BackgroundColor--light: rgba(var(--pf-v6-c-compass__panel--BackgroundColor--rgb--light), var(--pf-v6-c-compass__panel--BackgroundColor--opacity--light));
3505
+ --pf-v6-c-compass__panel--BackgroundColor--rgb--dark: 0,0,0;
3506
+ --pf-v6-c-compass__panel--BackgroundColor--opacity--dark: .8;
3507
+ --pf-v6-c-compass__panel--BackgroundColor--dark: rgba(var(--pf-v6-c-compass__panel--BackgroundColor--rgb--dark), var(--pf-v6-c-compass__panel--BackgroundColor--opacity--dark));
3508
+ --pf-v6-c-compass__panel--BackdropFilter: var(--pf-v6-c-compass__panel--BackdropFilter--light);
3509
+ --pf-v6-c-compass__panel--BackdropFilter--light: blur(75px);
3510
+ --pf-v6-c-compass__panel--BackdropFilter--dark: blur(75px);
3511
+ --pf-v6-c-compass__panel--BorderRadius: var(--pf-t--global--border--radius--large);
3512
+ --pf-v6-c-compass__panel--m-pill--BorderRadius: var(--pf-t--global--border--radius--pill);
3513
+ --pf-v6-c-compass__panel--Padding: var(--pf-t--global--spacer--inset--page-chrome);
3514
+ --pf-v6-c-compass__panel--BorderWidth: var(--pf-t--global--border--width--regular);
3515
+ --pf-v6-c-compass__panel--BorderColor: var(--pf-t--global--border--color--alt);
3516
+ --pf-v6-c-compass__panel--BoxShadow: var(--pf-t--global--box-shadow--md);
3517
+ --pf-v6-c-compass__message-bar--Width: 450px;
3518
+ --pf-v6-c-compass__message-bar--MinWidth: 300px;
3519
+ --pf-v6-c-compass__message-bar--MaxWidth: 600px;
3520
+ --pf-v6-c-compass__hero--gradient--angle: 289deg;
3521
+ --pf-v6-c-compass__hero--gradient--stop-1--light: transparent;
3522
+ --pf-v6-c-compass__hero--gradient--stop-2--light: transparent;
3523
+ --pf-v6-c-compass__hero--gradient--stop-3--light: transparent;
3524
+ --pf-v6-c-compass__hero--gradient--stop-1--dark: transparent;
3525
+ --pf-v6-c-compass__hero--gradient--stop-2--dark: transparent;
3526
+ --pf-v6-c-compass__hero--gradient--stop-3--dark: transparent;
3527
+ --pf-v6-c-compass__hero--BackgroundImage--light: none;
3528
+ --pf-v6-c-compass__hero--BackgroundImage--dark: none;
3529
+ --pf-v6-c-compass__hero-body--Width: 800px;
3530
+ --pf-v6-c-compass__hero-body--MaxWidth: 80%;
3531
+ }
3532
+
3533
+ .pf-v6-c-compass {
3534
+ display: grid;
3535
+ grid-template-areas: "header header header" "sidebar-start main sidebar-end" "footer footer footer";
3536
+ grid-template-rows: auto 1fr auto;
3537
+ grid-template-columns: auto 1fr auto;
3538
+ gap: var(--pf-v6-c-compass--RowGap) var(--pf-v6-c-compass--ColumnGap);
3539
+ align-items: center;
3540
+ justify-content: center;
3541
+ height: 100dvh;
3542
+ padding: var(--pf-v6-c-compass--Padding);
3543
+ margin-inline: auto;
3544
+ background-image: var(--pf-v6-c-compass--BackgroundImage);
3545
+ background-size: cover;
3546
+ }
3547
+ :root:where(.pf-v6-theme-dark) .pf-v6-c-compass {
3548
+ --pf-v6-c-compass--BackgroundImage: var(--pf-v6-c-compass--BackgroundImage--dark);
3549
+ }
3550
+
3551
+ .pf-v6-c-compass__header {
3552
+ display: grid;
3553
+ grid-area: header;
3554
+ grid-template-columns: 1fr auto 1fr;
3555
+ align-items: start;
3556
+ }
3557
+
3558
+ .pf-v6-c-compass__profile {
3559
+ justify-self: end;
3560
+ }
3561
+ .pf-v6-c-compass__profile .pf-v6-c-menu-toggle.pf-m-plain {
3562
+ margin-block-start: calc(var(--pf-v6-c-menu-toggle--PaddingBlockStart) * -1);
3563
+ }
3564
+
3565
+ .pf-v6-c-compass__nav {
3566
+ display: flex;
3567
+ flex-direction: column;
3568
+ gap: var(--pf-v6-c-compass__nav--RowGap);
3569
+ align-items: center;
3570
+ justify-self: stretch;
3571
+ }
3572
+
3573
+ .pf-v6-c-compass__sidebar {
3574
+ --pf-v6-c-compass__panel--Padding: var(--pf-v6-c-compass__sidebar--Padding);
3575
+ }
3576
+ .pf-v6-c-compass__sidebar.pf-m-start {
3577
+ grid-area: sidebar-start;
3578
+ }
3579
+
3580
+ .pf-v6-c-compass__main {
3581
+ display: flex;
3582
+ flex-direction: column;
3583
+ grid-area: main;
3584
+ gap: var(--pf-v6-c-compass__main--RowGap);
3585
+ align-self: stretch;
3586
+ min-height: 0;
3587
+ }
3588
+
3589
+ .pf-v6-c-compass__content {
3590
+ display: flex;
3591
+ flex: 1 0 0;
3592
+ flex-direction: column;
3593
+ min-height: 0;
3594
+ overflow: auto;
3595
+ }
3596
+ .pf-v6-c-compass__content > *:last-child {
3597
+ flex-grow: 1;
3598
+ max-height: 100%;
3599
+ }
3600
+
3601
+ .pf-v6-c-compass__sidebar.pf-m-end {
3602
+ grid-area: sidebar-end;
3603
+ padding: var(--pf-t--global--spacer--sm);
3604
+ }
3605
+
3606
+ .pf-v6-c-compass__footer {
3607
+ display: flex;
3608
+ grid-area: footer;
3609
+ justify-content: center;
3610
+ }
3611
+
3612
+ .pf-v6-c-compass__message-bar {
3613
+ width: var(--pf-v6-c-compass__message-bar--Width);
3614
+ min-width: var(--pf-v6-c-compass__message-bar--MinWidth);
3615
+ max-width: var(--pf-v6-c-compass__message-bar--MaxWidth);
3616
+ }
3617
+
3618
+ .pf-v6-c-compass__panel {
3619
+ padding: var(--pf-v6-c-compass__panel--Padding);
3620
+ background-color: var(--pf-v6-c-compass__panel--BackgroundColor, var(--pf-v6-c-compass__panel--BackgroundColor--light));
3621
+ backdrop-filter: var(--pf-v6-c-compass__panel--BackdropFilter, var(--pf-v6-c-compass__panel--BackdropFilter--light));
3622
+ border: var(--pf-v6-c-compass__panel--BorderWidth) solid var(--pf-v6-c-compass__panel--BorderColor);
3623
+ border-radius: var(--pf-v6-c-compass__panel--BorderRadius);
3624
+ box-shadow: var(--pf-v6-c-compass__panel--BoxShadow);
3625
+ }
3626
+ :root:where(.pf-v6-theme-dark) .pf-v6-c-compass__panel {
3627
+ --pf-v6-c-compass__panel--BackdropFilter: var(--pf-v6-c-compass__panel--BackdropFilter--dark);
3628
+ --pf-v6-c-compass__panel--BackgroundColor: var(--pf-v6-c-compass__panel--BackgroundColor--dark);
3629
+ }
3630
+ .pf-v6-c-compass__panel.pf-m-no-border {
3631
+ border-width: 0;
3632
+ }
3633
+ .pf-v6-c-compass__panel.pf-m-no-padding {
3634
+ padding: 0;
3635
+ }
3636
+ .pf-v6-c-compass__panel.pf-m-full-height {
3637
+ height: 100%;
3638
+ }
3639
+ .pf-v6-c-compass__panel.pf-m-pill {
3640
+ border-radius: var(--pf-v6-c-compass__panel--m-pill--BorderRadius);
3641
+ }
3642
+ .pf-v6-c-compass__panel.pf-m-scrollable {
3643
+ overflow: auto;
3644
+ }
3645
+ .pf-v6-c-compass__panel.pf-m-padding {
3646
+ padding: 0;
3647
+ }
3648
+
3649
+ .pf-v6-c-compass__hero {
3650
+ display: flex;
3651
+ padding-block-start: 32px;
3652
+ padding-block-end: 32px;
3653
+ padding-inline-start: 72px;
3654
+ padding-inline-end: 0;
3655
+ background-image: var(--pf-v6-c-compass__hero--BackgroundImage, var(--pf-v6-c-compass__hero--BackgroundImage--light)), linear-gradient(var(--pf-v6-c-compass__hero--gradient--angle), var(--pf-v6-c-compass__hero--gradient--stop-1, var(--pf-v6-c-compass__hero--gradient--stop-1--light)) 0%, var(--pf-v6-c-compass__hero--gradient--stop-2, var(--pf-v6-c-compass__hero--gradient--stop-2--light)) 50%, var(--pf-v6-c-compass__hero--gradient--stop-3, var(--pf-v6-c-compass__hero--gradient--stop-3--light)) 100%);
3656
+ background-repeat: no-repeat;
3657
+ background-position: right center;
3658
+ background-size: contain;
3659
+ border-radius: 24px 72px;
3660
+ }
3661
+ :root:where(.pf-v6-theme-dark) .pf-v6-c-compass__hero {
3662
+ --pf-v6-c-compass__hero--BackgroundImage: var(--pf-v6-c-compass__hero--BackgroundImage--dark);
3663
+ --pf-v6-c-compass__hero--gradient--stop-1: var(--pf-v6-c-compass__hero--gradient--stop-1--dark);
3664
+ --pf-v6-c-compass__hero--gradient--stop-2: var(--pf-v6-c-compass__hero--gradient--stop-2--dark);
3665
+ --pf-v6-c-compass__hero--gradient--stop-3: var(--pf-v6-c-compass__hero--gradient--stop-3--dark);
3666
+ }
3667
+
3668
+ .pf-v6-c-compass__hero-body {
3669
+ width: min(var(--pf-v6-c-compass__hero-body--Width), var(--pf-v6-c-compass__hero-body--MaxWidth));
3670
+ }
3671
+
3672
+ :where(:root.pf-v6-theme-no-glass) .pf-v6-c-compass {
3673
+ --pf-v6-c-compass--glass--opacity: 100%;
3674
+ --pf-v6-c-compass--glass--border: var(--pf-t--global--border--color--default);
3675
+ --pf-v6-c-compass--glass--blend-mode: none;
3676
+ --pf-v6-c-compass--glass--blend-mode--dark: none;
3677
+ }
3678
+
3679
+ /* stylelint-disable */
3680
+ @media (max-width: 1200px) {
3681
+ .pf-v6-c-compass {
3682
+ display: none;
3683
+ }
3684
+ body {
3685
+ display: grid;
3686
+ min-height: 100%;
3687
+ place-content: center;
3688
+ }
3689
+ body::after {
3690
+ padding: 1em;
3691
+ border-radius: var(--pf-t--global--border--radius--large);
3692
+ background: var(--pf-t--global--background--color--primary--default);
3693
+ content: "This page is optimized for wide screens.\a\aPlease view on a larger display and/or make your browser window wider.";
3694
+ width: 80%;
3695
+ max-width: 360px;
3696
+ border: 1px solid var(--pf-t--global--border--color--default);
3697
+ box-shadow: var(--pf-t--global--box-shadow--md);
3698
+ white-space: pre-wrap;
3699
+ text-align: center;
3700
+ }
3701
+ }
3702
+ /* stylelint-enable */
3459
3703
  :root {
3460
3704
  --pf-v6-c-content--MarginBlockEnd: var(--pf-t--global--spacer--md);
3461
3705
  --pf-v6-c-content--LineHeight: var(--pf-t--global--font--line-height--body);
@@ -4150,7 +4394,8 @@ ul) {
4150
4394
  --pf-v6-c-data-list--sm--BorderBlockStartWidth: var(--pf-t--global--border--width--divider--default);
4151
4395
  --pf-v6-c-data-list--sm--BorderBlockStartColor: var(--pf-t--global--border--color--default);
4152
4396
  --pf-v6-c-data-list--MarginInlineStart: var(--pf-t--global--spacer--md);
4153
- --pf-v6-c-data-list__item--BackgroundColor: var( --pf-t--global--background--color--primary--default);
4397
+ --pf-v6-c-data-list__item--BackgroundColor: var(--pf-t--global--background--color--primary--default);
4398
+ --pf-v6-c-data-list--pf-m-plain__item--BackgroundColor: transparent;
4154
4399
  --pf-v6-c-data-list__item--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
4155
4400
  --pf-v6-c-data-list__item--m-selected--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
4156
4401
  --pf-v6-c-data-list__item--m-clickable--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
@@ -4305,6 +4550,9 @@ ul) {
4305
4550
  .pf-v6-c-data-list.pf-m-drag-over {
4306
4551
  overflow-anchor: none;
4307
4552
  }
4553
+ .pf-v6-c-data-list.pf-m-plain {
4554
+ --pf-v6-c-data-list__item--BackgroundColor: var(--pf-v6-c-data-list--pf-m-plain__item--BackgroundColor);
4555
+ }
4308
4556
 
4309
4557
  .pf-v6-c-data-list.pf-m-truncate,
4310
4558
  .pf-v6-c-data-list__item-row.pf-m-truncate,
@@ -10286,7 +10534,7 @@ ul.pf-v6-c-list {
10286
10534
  --pf-v6-c-menu__footer--BoxShadow: none;
10287
10535
  --pf-v6-c-menu__footer--BorderColor: transparent;
10288
10536
  --pf-v6-c-menu__footer--BorderWidth: 0;
10289
- --pf-v6-c-menu--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--md--top);
10537
+ --pf-v6-c-menu--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--sm--top);
10290
10538
  --pf-v6-c-menu--m-scrollable__footer--BorderColor: var(--pf-t--global--border--color--high-contrast);
10291
10539
  --pf-v6-c-menu--m-scrollable__footer--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
10292
10540
  --pf-v6-c-menu__list-item--Color: var(--pf-t--global--text--color--regular);
@@ -11012,6 +11260,7 @@ ul.pf-v6-c-list {
11012
11260
  --pf-v6-c-menu-toggle--m-plain--disabled--BackgroundColor: transparent;
11013
11261
  --pf-v6-c-menu-toggle--m-plain--m-small--PaddingInlineStart: var(--pf-t--global--spacer--action--horizontal--plain--compact);
11014
11262
  --pf-v6-c-menu-toggle--m-plain--m-small--PaddingInlineEnd: var(--pf-t--global--spacer--action--horizontal--plain--compact);
11263
+ --pf-v6-c-menu-toggle--m-plain--m-circle--BorderRadius: var(--pf-t--global--border--radius--pill);
11015
11264
  --pf-v6-c-menu-toggle--m-typeahead__button--AlignSelf: stretch;
11016
11265
  --pf-v6-c-menu-toggle--m-small--PaddingBlockStart: var(--pf-t--global--spacer--control--vertical--compact);
11017
11266
  --pf-v6-c-menu-toggle--m-small--PaddingBlockEnd: var(--pf-t--global--spacer--control--vertical--compact);
@@ -11140,6 +11389,9 @@ ul.pf-v6-c-list {
11140
11389
  --pf-v6-c-menu-toggle--m-small--PaddingInlineStart: var(--pf-v6-c-menu-toggle--m-plain--m-small--PaddingInlineStart);
11141
11390
  --pf-v6-c-menu-toggle--m-small--PaddingInlineEnd: var(--pf-v6-c-menu-toggle--m-plain--m-small--PaddingInlineEnd);
11142
11391
  }
11392
+ .pf-v6-c-menu-toggle.pf-m-plain.pf-m-circle {
11393
+ --pf-v6-c-menu-toggle--BorderRadius: var(--pf-v6-c-menu-toggle--m-plain--m-circle--BorderRadius);
11394
+ }
11143
11395
  .pf-v6-c-menu-toggle.pf-m-plain::before {
11144
11396
  --pf-v6-c-menu-toggle--BorderWidth: var(--pf-v6-c-menu-toggle--m-plain--BorderWidth);
11145
11397
  --pf-v6-c-menu-toggle--BorderColor: var(--pf-v6-c-menu-toggle--m-plain--BorderColor);
@@ -13664,7 +13916,7 @@ ul.pf-v6-c-list {
13664
13916
  --pf-v6-c-panel__footer--BorderWidth: 0;
13665
13917
  --pf-v6-c-panel--m-scrollable__main--MaxHeight: 18.75rem;
13666
13918
  --pf-v6-c-panel--m-scrollable__main--Overflow: auto;
13667
- --pf-v6-c-panel--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--md--top);
13919
+ --pf-v6-c-panel--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--sm--top);
13668
13920
  --pf-v6-c-panel--m-scrollable__footer--PaddingBlockStart: var(--pf-t--global--spacer--md);
13669
13921
  --pf-v6-c-panel--m-scrollable__footer--PaddingBlockEnd: var(--pf-t--global--spacer--md);
13670
13922
  --pf-v6-c-panel--m-scrollable__footer--BorderColor: var(--pf-t--global--border--color--high-contrast);
@@ -15751,6 +16003,9 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
15751
16003
  .pf-v6-c-spinner.pf-m-xl {
15752
16004
  --pf-v6-c-spinner--diameter: var(--pf-v6-c-spinner--m-xl--diameter);
15753
16005
  }
16006
+ .pf-v6-m-no-motion .pf-v6-c-spinner {
16007
+ --pf-v6-c-spinner--AnimationDuration: 0s;
16008
+ }
15754
16009
 
15755
16010
  .pf-v6-c-spinner__path {
15756
16011
  width: 100%;
@@ -17816,6 +18071,9 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
17816
18071
  .pf-v6-c-table:not(.pf-m-sticky-header) > .pf-m-nested-column-header tr:where(.pf-v6-c-table__tr):not(:last-child) td:where(.pf-v6-c-table__td):not([rowspan]) {
17817
18072
  --pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table__thead--m-nested-column-header__tr--PaddingBlockEnd);
17818
18073
  }
18074
+ .pf-v6-c-table.pf-m-plain {
18075
+ --pf-v6-c-table--BackgroundColor: transparent;
18076
+ }
17819
18077
  .pf-v6-c-table.pf-m-striped:not(.pf-m-expandable) > tbody:where(.pf-v6-c-table__tbody) > tr:where(.pf-v6-c-table__tr):nth-child(odd), .pf-v6-c-table.pf-m-striped.pf-m-expandable > tbody:where(.pf-v6-c-table__tbody):nth-of-type(odd) > tr:where(.pf-v6-c-table__tr),
17820
18078
  .pf-v6-c-table > .pf-m-striped > tr:nth-child(odd),
17821
18079
  .pf-v6-c-table > .pf-m-striped-even > tr:nth-child(even),
@@ -19653,6 +19911,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
19653
19911
  --pf-v6-c-tabs__add--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
19654
19912
  --pf-v6-c-tabs__add--PaddingInlineStart: var(--pf-t--global--spacer--sm);
19655
19913
  --pf-v6-c-tabs__add--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
19914
+ --pf-v6-c-tabs--m-nav__link--BorderRadius: var(--pf-t--global--border--radius--pill);
19915
+ --pf-v6-c-tabs--m-nav__link--disabled--Color: var(--pf-t--global--text--color--disabled);
19916
+ --pf-v6-c-tabs--m-nav--m-subtab__scroll-button--button--FontSize: var(--pf-t--global--icon--size--font--body--sm);
19656
19917
  --pf-v6-c-tabs__link-toggle-icon--Color: var(--pf-t--global--icon--color--regular);
19657
19918
  --pf-v6-c-tabs__link-toggle-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
19658
19919
  --pf-v6-c-tabs__link-toggle-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
@@ -19930,6 +20191,19 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
19930
20191
  .pf-v6-c-tabs.pf-m-overflow .pf-v6-c-tabs__list {
19931
20192
  overflow: visible;
19932
20193
  }
20194
+ .pf-v6-c-tabs.pf-m-nav {
20195
+ --pf-v6-c-tabs__link--disabled--BackgroundColor: transparent;
20196
+ --pf-v6-c-tabs__link--disabled--Color: var(--pf-v6-c-tabs--m-nav__link--disabled--Color);
20197
+ --pf-v6-c-tabs__link--hover--BorderColor: transparent;
20198
+ --pf-v6-c-tabs__link--BorderRadius: var(--pf-v6-c-tabs--m-nav__link--BorderRadius);
20199
+ }
20200
+ .pf-v6-c-tabs.pf-m-nav::before,
20201
+ .pf-v6-c-tabs.pf-m-nav .pf-v6-c-tabs__link::before {
20202
+ border: 0;
20203
+ }
20204
+ .pf-v6-c-tabs.pf-m-nav.pf-m-subtab .pf-v6-c-tabs__scroll-button .pf-v6-c-button {
20205
+ --pf-v6-c-button--FontSize: var(--pf-v6-c-tabs--m-nav--m-subtab__scroll-button--button--FontSize);
20206
+ }
19933
20207
 
19934
20208
  .pf-v6-c-tabs__toggle {
19935
20209
  display: var(--pf-v6-c-tabs__toggle--Display);
@@ -19979,7 +20253,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
19979
20253
  }
19980
20254
  .pf-v6-c-tabs__item.pf-m-current {
19981
20255
  --pf-v6-c-tabs__link--Color: var(--pf-v6-c-tabs__item--m-current__link--Color);
19982
- --pf-v6-c-tabs__link--after--BorderColor: var(--pf-v6-c-tabs__item--m-current__link--after--BorderColor);
20256
+ --pf-v6-c-tabs__link--after--BorderColor: var(--pf-v6-c-tabs--link-accent--color);
19983
20257
  --pf-v6-c-tabs__link--after--BorderWidth: var(--pf-v6-c-tabs__item--m-current__link--after--BorderWidth);
19984
20258
  --pf-v6-c-tabs__item--BackgroundColor: var(--pf-v6-c-tabs__item--m-current--BackgroundColor);
19985
20259
  }
@@ -18,6 +18,7 @@
18
18
  @use "./ClipboardCopy/clipboard-copy";
19
19
  @use "./CodeBlock/code-block";
20
20
  @use "./CodeEditor/code-editor";
21
+ @use "./Compass/compass";
21
22
  @use "./Content/content";
22
23
  @use "./DataList/data-list";
23
24
  @use "./DescriptionList/description-list";
@@ -196,6 +196,90 @@ In modals, forms, data lists
196
196
 
197
197
  ```
198
198
 
199
+ ### Vertical action list
200
+
201
+ ```html isBeta
202
+ Multiple groups
203
+ <div class="pf-v6-c-action-list pf-m-vertical">
204
+ <div class="pf-v6-c-action-list__group">
205
+ <div class="pf-v6-c-action-list__item">
206
+ <button class="pf-v6-c-button pf-m-primary" type="button">
207
+ <span class="pf-v6-c-button__text">Next</span>
208
+ </button>
209
+ </div>
210
+ <div class="pf-v6-c-action-list__item">
211
+ <button class="pf-v6-c-button pf-m-secondary" type="button">
212
+ <span class="pf-v6-c-button__text">Back</span>
213
+ </button>
214
+ </div>
215
+ </div>
216
+ <div class="pf-v6-c-action-list__group">
217
+ <div class="pf-v6-c-action-list__item">
218
+ <button class="pf-v6-c-button pf-m-primary" type="button">
219
+ <span class="pf-v6-c-button__text">Submit</span>
220
+ </button>
221
+ </div>
222
+ <div class="pf-v6-c-action-list__item">
223
+ <button class="pf-v6-c-button pf-m-link" type="button">
224
+ <span class="pf-v6-c-button__text">Cancel</span>
225
+ </button>
226
+ </div>
227
+ </div>
228
+ </div><br/ >
229
+ Icons, in two groups
230
+ <div class="pf-v6-c-action-list pf-m-vertical">
231
+ <div class="pf-v6-c-action-list__group pf-m-icons">
232
+ <div class="pf-v6-c-action-list__item">
233
+ <button
234
+ class="pf-v6-c-button pf-m-plain"
235
+ type="button"
236
+ aria-label="Close"
237
+ >
238
+ <span class="pf-v6-c-button__icon pf-m-start">
239
+ <i class="fas fa-times" aria-hidden="true"></i>
240
+ </span>
241
+ </button>
242
+ </div>
243
+ <div class="pf-v6-c-action-list__item">
244
+ <button
245
+ class="pf-v6-c-button pf-m-plain"
246
+ type="button"
247
+ aria-label="Toggle"
248
+ >
249
+ <span class="pf-v6-c-button__icon">
250
+ <i class="fas fa-check" aria-hidden="true"></i>
251
+ </span>
252
+ </button>
253
+ </div>
254
+ </div>
255
+ <div class="pf-v6-c-action-list__group pf-m-icons">
256
+ <div class="pf-v6-c-action-list__item">
257
+ <button
258
+ class="pf-v6-c-button pf-m-plain"
259
+ type="button"
260
+ aria-label="Close"
261
+ >
262
+ <span class="pf-v6-c-button__icon">
263
+ <i class="fas fa-times" aria-hidden="true"></i>
264
+ </span>
265
+ </button>
266
+ </div>
267
+ <div class="pf-v6-c-action-list__item">
268
+ <button
269
+ class="pf-v6-c-button pf-m-plain"
270
+ type="button"
271
+ aria-label="Toggle"
272
+ >
273
+ <span class="pf-v6-c-button__icon">
274
+ <i class="fas fa-check" aria-hidden="true"></i>
275
+ </span>
276
+ </button>
277
+ </div>
278
+ </div>
279
+ </div>
280
+
281
+ ```
282
+
199
283
  ### Overview
200
284
 
201
285
  ### Usage
@@ -206,3 +290,4 @@ In modals, forms, data lists
206
290
  | `.pf-v6-c-action-list__item` | `<div>` | Initiates the action list item container. |
207
291
  | `.pf-v6-c-action-list__group` | `<div>` | Initiates the action list group container. |
208
292
  | `.pf-m-icons` | `.pf-v6-c-action-list`, `.pf-v6-c-action-list__group` | Modifies the action list and/or group to support icon buttons. If applied to `.pf-v6-c-action-list`, all nested groups will inherit this modification. |
293
+ | `.pf-m-vertical` | `.pf-v6-c-action-list` | Modifies the action list to display vertically. |