@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
@@ -56,11 +56,57 @@
56
56
  --pf-t--global--duration--200: 1ms !important;
57
57
  --pf-t--global--duration--100: 1ms !important;
58
58
  --pf-t--global--duration--50: 1ms !important;
59
+ --pf-v6-global--thinking-active--Animation--Duration: 0 !important;
59
60
  }
60
61
 
62
+ .pf-v6-m-ai-indicator {
63
+ position: relative;
64
+ }
65
+ .pf-v6-m-ai-indicator::before {
66
+ position: absolute;
67
+ inset: 0;
68
+ pointer-events: none;
69
+ content: "";
70
+ background: linear-gradient(to right, #f56e6e 0%, #876fd4 65%, #5e40be 100%) border-box;
71
+ border: var(--pf-t--global--border--width--extra-strong) solid transparent;
72
+ border-radius: inherit;
73
+ mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
74
+ mask-composite: exclude;
75
+ }
76
+
77
+ @property --pf-v6-global--thinking--BoxShadow--Spread {
78
+ syntax: "<length>";
79
+ initial-value: 0;
80
+ inherits: false;
81
+ }
82
+ .pf-v6-m-thinking {
83
+ box-shadow: 0 0 var(--pf-v6-global--thinking--BoxShadow--Spread) var(--pf-v6-global--thinking--BoxShadow--Color--End-End), 0 0 var(--pf-v6-global--thinking--BoxShadow--Spread) var(--pf-v6-global--thinking--BoxShadow--Color--Start-End), 0 0 var(--pf-v6-global--thinking--BoxShadow--Spread) var(--pf-v6-global--thinking--BoxShadow--Color--End-Start), 0 0 var(--pf-v6-global--thinking--BoxShadow--Spread) var(--pf-v6-global--thinking--BoxShadow--Color--Start-Start);
84
+ animation: pf-v6-global-thinking var(--pf-v6-global--thinking-active--Animation--Duration) infinite ease-in-out;
85
+ }
86
+ .pf-v6-m-thinking.pf-m-inset {
87
+ box-shadow: inset 0 0 var(--pf-v6-global--thinking--BoxShadow--Spread) var(--pf-v6-global--thinking--BoxShadow--Color--End-End), inset 0 0 var(--pf-v6-global--thinking--BoxShadow--Spread) var(--pf-v6-global--thinking--BoxShadow--Color--Start-End), inset 0 0 var(--pf-v6-global--thinking--BoxShadow--Spread) var(--pf-v6-global--thinking--BoxShadow--Color--End-Start), inset 0 0 var(--pf-v6-global--thinking--BoxShadow--Spread) var(--pf-v6-global--thinking--BoxShadow--Color--Start-Start);
88
+ }
89
+
90
+ @keyframes pf-v6-global-thinking {
91
+ 50% {
92
+ --pf-v6-global--thinking--BoxShadow--Spread: var(--pf-v6-global--thinking-active--BoxShadow--Spread);
93
+ }
94
+ }
61
95
  :root {
62
96
  --pf-v6-global--danger-jiggle--AnimationDuration--Transform: var(--pf-t--global--motion--duration--fade--default);
63
97
  --pf-v6-global--danger-jiggle--AnimationTimingFunction--Transform: var(--pf-t--global--motion--timing-function--default);
98
+ --pf-v6-global--thinking--BoxShadow--Spread: 0px;
99
+ --pf-v6-global--thinking--BoxShadow--Color--Start-Start: oklch(45.9% 0.187 3.815deg);
100
+ --pf-v6-global--thinking--BoxShadow--Color--Start-End: oklch(50% 0.134 242.749deg);
101
+ --pf-v6-global--thinking--BoxShadow--Color--End-Start: oklch(45.9% 0.187 3.815deg);
102
+ --pf-v6-global--thinking--BoxShadow--Color--End-End: oklch(43.2% 0.232 292.759deg);
103
+ --pf-v6-global--thinking-active--BoxShadow--Spread: 15px;
104
+ --pf-v6-global--thinking-active--Animation--Duration: 0;
105
+ }
106
+ @media screen and (prefers-reduced-motion: no-preference) {
107
+ :root {
108
+ --pf-v6-global--thinking-active--Animation--Duration: 2s;
109
+ }
64
110
  }
65
111
 
66
112
  @property --pf-v6-global--danger-jiggle--TranslateX {
@@ -9112,7 +9158,9 @@
9112
9158
  --pf-v6-c-action-list--RowGap: var(--pf-t--global--spacer--gap--group--vertical);
9113
9159
  --pf-v6-c-action-list--ColumnGap: var(--pf-t--global--spacer--gap--group-to-group--horizontal--default);
9114
9160
  --pf-v6-c-action-list__group--ColumnGap: var(--pf-t--global--spacer--gap--action-to-action--default);
9161
+ --pf-v6-c-action-list--m-vertical--RowGap: var(--pf-t--global--spacer--gap--group-to-group--vertical--default);
9115
9162
  --pf-v6-c-action-list--m-icons--ColumnGap: var(--pf-t--global--spacer--gap--action-to-action--plain);
9163
+ --pf-v6-c-action-list--m-vertical--m-icons--RowGap: var(--pf-t--global--spacer--gap--action-to-action--plain);
9116
9164
  }
9117
9165
 
9118
9166
  .pf-v6-c-action-list,
@@ -9127,8 +9175,15 @@
9127
9175
  }
9128
9176
  .pf-v6-c-action-list.pf-m-icons {
9129
9177
  --pf-v6-c-action-list__group--ColumnGap: var(--pf-v6-c-action-list--m-icons--ColumnGap);
9178
+ --pf-v6-c-action-list--m-vertical--RowGap: var(--pf-v6-c-action-list--m-vertical--m-icons--RowGap);
9130
9179
  column-gap: var(--pf-v6-c-action-list--m-icons--ColumnGap);
9131
9180
  }
9181
+ .pf-v6-c-action-list.pf-m-vertical, .pf-v6-c-action-list.pf-m-vertical .pf-v6-c-action-list__group {
9182
+ flex-direction: column;
9183
+ }
9184
+ .pf-v6-c-action-list.pf-m-vertical {
9185
+ row-gap: var(--pf-v6-c-action-list--m-vertical--RowGap);
9186
+ }
9132
9187
 
9133
9188
  .pf-v6-c-action-list__group {
9134
9189
  row-gap: var(--pf-v6-c-action-list__group--RowGap, var(--pf-v6-c-action-list--RowGap));
@@ -10545,6 +10600,14 @@ button.pf-v6-c-breadcrumb__link {
10545
10600
  --pf-v6-c-button--hamburger-icon--arrow--collapse--path: path("M3,7 L1,5 L3,3");
10546
10601
  --pf-v6-c-button--hamburger-icon--bottom--collapse--path: path("M9,9 L5,9");
10547
10602
  --pf-v6-c-button--m-hamburger__icon--m-expand--ScaleX: -1;
10603
+ --pf-v6-c-button--m-circle--ScaleX: 1.29;
10604
+ --pf-v6-c-button--m-circle--ScaleY: 1.29;
10605
+ --pf-v6-c-button--m-circle--BorderRadius: var(--pf-t--global--border--radius--pill);
10606
+ --pf-v6-c-button--m-circle--Padding--base: var(--pf-t--global--spacer--control--vertical--default);
10607
+ --pf-v6-c-button--m-circle--PaddingBlockStart: var(--pf-v6-c-button--m-circle--Padding--base);
10608
+ --pf-v6-c-button--m-circle--PaddingInlineEnd: 0;
10609
+ --pf-v6-c-button--m-circle--PaddingBlockEnd: var(--pf-v6-c-button--m-circle--Padding--base);
10610
+ --pf-v6-c-button--m-circle--PaddingInlineStart: 0;
10548
10611
  }
10549
10612
 
10550
10613
  .pf-v6-c-button {
@@ -10912,6 +10975,16 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
10912
10975
  --pf-v6-c-button--hover__icon--TransitionDelay: 0s;
10913
10976
  --pf-v6-c-button--hover__icon--ScaleX: 1;
10914
10977
  }
10978
+ .pf-v6-c-button.pf-m-circle {
10979
+ --pf-v6-c-button--BorderRadius: var(--pf-v6-c-button--m-circle--BorderRadius);
10980
+ --pf-v6-c-button--PaddingBlockStart: var(--pf-v6-c-button--m-circle--PaddingBlockStart);
10981
+ --pf-v6-c-button--PaddingInlineEnd: var(--pf-v6-c-button--m-circle--PaddingInlineEnd);
10982
+ --pf-v6-c-button--PaddingBlockEnd: var(--pf-v6-c-button--m-circle--PaddingBlockEnd);
10983
+ --pf-v6-c-button--PaddingInlineStart: var(--pf-v6-c-button--m-circle--PaddingInlineStart);
10984
+ }
10985
+ .pf-v6-c-button.pf-m-circle .pf-v6-c-button__icon {
10986
+ scale: var(--pf-v6-c-button--m-circle--ScaleX) var(--pf-v6-c-button--m-circle--ScaleY);
10987
+ }
10915
10988
  .pf-v6-c-button:hover, .pf-v6-c-button:focus {
10916
10989
  --pf-v6-c-button--Color: var(--pf-v6-c-button--hover--Color);
10917
10990
  --pf-v6-c-button--BackgroundColor: var(--pf-v6-c-button--hover--BackgroundColor);
@@ -11449,6 +11522,12 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
11449
11522
  .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 {
11450
11523
  --pf-v6-c-card--BackgroundColor: var(--pf-v6-c-card--m-selectable--m-disabled--BackgroundColor);
11451
11524
  }
11525
+ .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) {
11526
+ --pf-v6-c-card__actions--PaddingInlineStart: 0;
11527
+ --pf-v6-c-card__actions--MarginBlockStart: 0;
11528
+ --pf-v6-c-card__actions--MarginBlockEnd: 0;
11529
+ }
11530
+
11452
11531
  .pf-v6-c-card.pf-m-compact {
11453
11532
  --pf-v6-c-card__title-text--FontSize: var(--pf-v6-c-card--m-compact__title-text--FontSize);
11454
11533
  --pf-v6-c-card__body--FontSize: var(--pf-v6-c-card--m-compact__body--FontSize);
@@ -12123,6 +12202,217 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
12123
12202
  margin-inline-start: var(--pf-v6-c-code-editor__tab-icon--text--MarginInlineStart);
12124
12203
  }
12125
12204
 
12205
+ .pf-v6-c-compass {
12206
+ --pf-v6-c-compass--BackgroundImage: var(--pf-v6-c-compass--BackgroundImage--light);
12207
+ --pf-v6-c-compass--BackgroundImage--light: none;
12208
+ --pf-v6-c-compass--BackgroundImage--dark: none;
12209
+ --pf-v6-c-compass--Padding: var(--pf-t--global--spacer--inset--page-chrome);
12210
+ --pf-v6-c-compass--RowGap: var(--pf-t--global--spacer--xl);
12211
+ --pf-v6-c-compass--ColumnGap: var(--pf-t--global--spacer--xl);
12212
+ --pf-v6-c-compass__nav--RowGap: var(--pf-t--global--spacer--gap--group--vertical);
12213
+ --pf-v6-c-compass__sidebar--Padding: var(--pf-t--global--spacer--sm);
12214
+ --pf-v6-c-compass__main--RowGap: var(--pf-t--global--spacer--md);
12215
+ --pf-v6-c-compass__panel--BackgroundColor--rgb--light: 255,255,255;
12216
+ --pf-v6-c-compass__panel--BackgroundColor--opacity--light: .8;
12217
+ --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));
12218
+ --pf-v6-c-compass__panel--BackgroundColor--rgb--dark: 0,0,0;
12219
+ --pf-v6-c-compass__panel--BackgroundColor--opacity--dark: .8;
12220
+ --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));
12221
+ --pf-v6-c-compass__panel--BackdropFilter: var(--pf-v6-c-compass__panel--BackdropFilter--light);
12222
+ --pf-v6-c-compass__panel--BackdropFilter--light: blur(75px);
12223
+ --pf-v6-c-compass__panel--BackdropFilter--dark: blur(75px);
12224
+ --pf-v6-c-compass__panel--BorderRadius: var(--pf-t--global--border--radius--large);
12225
+ --pf-v6-c-compass__panel--m-pill--BorderRadius: var(--pf-t--global--border--radius--pill);
12226
+ --pf-v6-c-compass__panel--Padding: var(--pf-t--global--spacer--inset--page-chrome);
12227
+ --pf-v6-c-compass__panel--BorderWidth: var(--pf-t--global--border--width--regular);
12228
+ --pf-v6-c-compass__panel--BorderColor: var(--pf-t--global--border--color--alt);
12229
+ --pf-v6-c-compass__panel--BoxShadow: var(--pf-t--global--box-shadow--md);
12230
+ --pf-v6-c-compass__message-bar--Width: 450px;
12231
+ --pf-v6-c-compass__message-bar--MinWidth: 300px;
12232
+ --pf-v6-c-compass__message-bar--MaxWidth: 600px;
12233
+ --pf-v6-c-compass__hero--gradient--angle: 289deg;
12234
+ --pf-v6-c-compass__hero--gradient--stop-1--light: transparent;
12235
+ --pf-v6-c-compass__hero--gradient--stop-2--light: transparent;
12236
+ --pf-v6-c-compass__hero--gradient--stop-3--light: transparent;
12237
+ --pf-v6-c-compass__hero--gradient--stop-1--dark: transparent;
12238
+ --pf-v6-c-compass__hero--gradient--stop-2--dark: transparent;
12239
+ --pf-v6-c-compass__hero--gradient--stop-3--dark: transparent;
12240
+ --pf-v6-c-compass__hero--BackgroundImage--light: none;
12241
+ --pf-v6-c-compass__hero--BackgroundImage--dark: none;
12242
+ --pf-v6-c-compass__hero-body--Width: 800px;
12243
+ --pf-v6-c-compass__hero-body--MaxWidth: 80%;
12244
+ }
12245
+
12246
+ .pf-v6-c-compass {
12247
+ display: grid;
12248
+ grid-template-areas: "header header header" "sidebar-start main sidebar-end" "footer footer footer";
12249
+ grid-template-rows: auto 1fr auto;
12250
+ grid-template-columns: auto 1fr auto;
12251
+ gap: var(--pf-v6-c-compass--RowGap) var(--pf-v6-c-compass--ColumnGap);
12252
+ align-items: center;
12253
+ justify-content: center;
12254
+ height: 100dvh;
12255
+ padding: var(--pf-v6-c-compass--Padding);
12256
+ margin-inline: auto;
12257
+ background-image: var(--pf-v6-c-compass--BackgroundImage);
12258
+ background-size: cover;
12259
+ }
12260
+ :root:where(.pf-v6-theme-dark) .pf-v6-c-compass {
12261
+ --pf-v6-c-compass--BackgroundImage: var(--pf-v6-c-compass--BackgroundImage--dark);
12262
+ }
12263
+
12264
+ .pf-v6-c-compass__header {
12265
+ display: grid;
12266
+ grid-area: header;
12267
+ grid-template-columns: 1fr auto 1fr;
12268
+ align-items: start;
12269
+ }
12270
+
12271
+ .pf-v6-c-compass__profile {
12272
+ justify-self: end;
12273
+ }
12274
+ .pf-v6-c-compass__profile .pf-v6-c-menu-toggle.pf-m-plain {
12275
+ margin-block-start: calc(var(--pf-v6-c-menu-toggle--PaddingBlockStart) * -1);
12276
+ }
12277
+
12278
+ .pf-v6-c-compass__nav {
12279
+ display: flex;
12280
+ flex-direction: column;
12281
+ gap: var(--pf-v6-c-compass__nav--RowGap);
12282
+ align-items: center;
12283
+ justify-self: stretch;
12284
+ }
12285
+
12286
+ .pf-v6-c-compass__sidebar {
12287
+ --pf-v6-c-compass__panel--Padding: var(--pf-v6-c-compass__sidebar--Padding);
12288
+ }
12289
+ .pf-v6-c-compass__sidebar.pf-m-start {
12290
+ grid-area: sidebar-start;
12291
+ }
12292
+
12293
+ .pf-v6-c-compass__main {
12294
+ display: flex;
12295
+ flex-direction: column;
12296
+ grid-area: main;
12297
+ gap: var(--pf-v6-c-compass__main--RowGap);
12298
+ align-self: stretch;
12299
+ min-height: 0;
12300
+ }
12301
+
12302
+ .pf-v6-c-compass__content {
12303
+ display: flex;
12304
+ flex: 1 0 0;
12305
+ flex-direction: column;
12306
+ min-height: 0;
12307
+ overflow: auto;
12308
+ }
12309
+ .pf-v6-c-compass__content > *:last-child {
12310
+ flex-grow: 1;
12311
+ max-height: 100%;
12312
+ }
12313
+
12314
+ .pf-v6-c-compass__sidebar.pf-m-end {
12315
+ grid-area: sidebar-end;
12316
+ padding: var(--pf-t--global--spacer--sm);
12317
+ }
12318
+
12319
+ .pf-v6-c-compass__footer {
12320
+ display: flex;
12321
+ grid-area: footer;
12322
+ justify-content: center;
12323
+ }
12324
+
12325
+ .pf-v6-c-compass__message-bar {
12326
+ width: var(--pf-v6-c-compass__message-bar--Width);
12327
+ min-width: var(--pf-v6-c-compass__message-bar--MinWidth);
12328
+ max-width: var(--pf-v6-c-compass__message-bar--MaxWidth);
12329
+ }
12330
+
12331
+ .pf-v6-c-compass__panel {
12332
+ padding: var(--pf-v6-c-compass__panel--Padding);
12333
+ background-color: var(--pf-v6-c-compass__panel--BackgroundColor, var(--pf-v6-c-compass__panel--BackgroundColor--light));
12334
+ backdrop-filter: var(--pf-v6-c-compass__panel--BackdropFilter, var(--pf-v6-c-compass__panel--BackdropFilter--light));
12335
+ border: var(--pf-v6-c-compass__panel--BorderWidth) solid var(--pf-v6-c-compass__panel--BorderColor);
12336
+ border-radius: var(--pf-v6-c-compass__panel--BorderRadius);
12337
+ box-shadow: var(--pf-v6-c-compass__panel--BoxShadow);
12338
+ }
12339
+ :root:where(.pf-v6-theme-dark) .pf-v6-c-compass__panel {
12340
+ --pf-v6-c-compass__panel--BackdropFilter: var(--pf-v6-c-compass__panel--BackdropFilter--dark);
12341
+ --pf-v6-c-compass__panel--BackgroundColor: var(--pf-v6-c-compass__panel--BackgroundColor--dark);
12342
+ }
12343
+ .pf-v6-c-compass__panel.pf-m-no-border {
12344
+ border-width: 0;
12345
+ }
12346
+ .pf-v6-c-compass__panel.pf-m-no-padding {
12347
+ padding: 0;
12348
+ }
12349
+ .pf-v6-c-compass__panel.pf-m-full-height {
12350
+ height: 100%;
12351
+ }
12352
+ .pf-v6-c-compass__panel.pf-m-pill {
12353
+ border-radius: var(--pf-v6-c-compass__panel--m-pill--BorderRadius);
12354
+ }
12355
+ .pf-v6-c-compass__panel.pf-m-scrollable {
12356
+ overflow: auto;
12357
+ }
12358
+ .pf-v6-c-compass__panel.pf-m-padding {
12359
+ padding: 0;
12360
+ }
12361
+
12362
+ .pf-v6-c-compass__hero {
12363
+ display: flex;
12364
+ padding-block-start: 32px;
12365
+ padding-block-end: 32px;
12366
+ padding-inline-start: 72px;
12367
+ padding-inline-end: 0;
12368
+ 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%);
12369
+ background-repeat: no-repeat;
12370
+ background-position: right center;
12371
+ background-size: contain;
12372
+ border-radius: 24px 72px;
12373
+ }
12374
+ :root:where(.pf-v6-theme-dark) .pf-v6-c-compass__hero {
12375
+ --pf-v6-c-compass__hero--BackgroundImage: var(--pf-v6-c-compass__hero--BackgroundImage--dark);
12376
+ --pf-v6-c-compass__hero--gradient--stop-1: var(--pf-v6-c-compass__hero--gradient--stop-1--dark);
12377
+ --pf-v6-c-compass__hero--gradient--stop-2: var(--pf-v6-c-compass__hero--gradient--stop-2--dark);
12378
+ --pf-v6-c-compass__hero--gradient--stop-3: var(--pf-v6-c-compass__hero--gradient--stop-3--dark);
12379
+ }
12380
+
12381
+ .pf-v6-c-compass__hero-body {
12382
+ width: min(var(--pf-v6-c-compass__hero-body--Width), var(--pf-v6-c-compass__hero-body--MaxWidth));
12383
+ }
12384
+
12385
+ :where(:root.pf-v6-theme-no-glass) .pf-v6-c-compass {
12386
+ --pf-v6-c-compass--glass--opacity: 100%;
12387
+ --pf-v6-c-compass--glass--border: var(--pf-t--global--border--color--default);
12388
+ --pf-v6-c-compass--glass--blend-mode: none;
12389
+ --pf-v6-c-compass--glass--blend-mode--dark: none;
12390
+ }
12391
+
12392
+ /* stylelint-disable */
12393
+ @media (max-width: 1200px) {
12394
+ .pf-v6-c-compass {
12395
+ display: none;
12396
+ }
12397
+ body {
12398
+ display: grid;
12399
+ min-height: 100%;
12400
+ place-content: center;
12401
+ }
12402
+ body::after {
12403
+ padding: 1em;
12404
+ border-radius: var(--pf-t--global--border--radius--large);
12405
+ background: var(--pf-t--global--background--color--primary--default);
12406
+ content: "This page is optimized for wide screens.\a\aPlease view on a larger display and/or make your browser window wider.";
12407
+ width: 80%;
12408
+ max-width: 360px;
12409
+ border: 1px solid var(--pf-t--global--border--color--default);
12410
+ box-shadow: var(--pf-t--global--box-shadow--md);
12411
+ white-space: pre-wrap;
12412
+ text-align: center;
12413
+ }
12414
+ }
12415
+ /* stylelint-enable */
12126
12416
  :root {
12127
12417
  --pf-v6-c-content--MarginBlockEnd: var(--pf-t--global--spacer--md);
12128
12418
  --pf-v6-c-content--LineHeight: var(--pf-t--global--font--line-height--body);
@@ -12817,7 +13107,8 @@ ul) {
12817
13107
  --pf-v6-c-data-list--sm--BorderBlockStartWidth: var(--pf-t--global--border--width--divider--default);
12818
13108
  --pf-v6-c-data-list--sm--BorderBlockStartColor: var(--pf-t--global--border--color--default);
12819
13109
  --pf-v6-c-data-list--MarginInlineStart: var(--pf-t--global--spacer--md);
12820
- --pf-v6-c-data-list__item--BackgroundColor: var( --pf-t--global--background--color--primary--default);
13110
+ --pf-v6-c-data-list__item--BackgroundColor: var(--pf-t--global--background--color--primary--default);
13111
+ --pf-v6-c-data-list--pf-m-plain__item--BackgroundColor: transparent;
12821
13112
  --pf-v6-c-data-list__item--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
12822
13113
  --pf-v6-c-data-list__item--m-selected--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
12823
13114
  --pf-v6-c-data-list__item--m-clickable--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
@@ -12972,6 +13263,9 @@ ul) {
12972
13263
  .pf-v6-c-data-list.pf-m-drag-over {
12973
13264
  overflow-anchor: none;
12974
13265
  }
13266
+ .pf-v6-c-data-list.pf-m-plain {
13267
+ --pf-v6-c-data-list__item--BackgroundColor: var(--pf-v6-c-data-list--pf-m-plain__item--BackgroundColor);
13268
+ }
12975
13269
 
12976
13270
  .pf-v6-c-data-list.pf-m-truncate,
12977
13271
  .pf-v6-c-data-list__item-row.pf-m-truncate,
@@ -18953,7 +19247,7 @@ ul.pf-v6-c-list {
18953
19247
  --pf-v6-c-menu__footer--BoxShadow: none;
18954
19248
  --pf-v6-c-menu__footer--BorderColor: transparent;
18955
19249
  --pf-v6-c-menu__footer--BorderWidth: 0;
18956
- --pf-v6-c-menu--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--md--top);
19250
+ --pf-v6-c-menu--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--sm--top);
18957
19251
  --pf-v6-c-menu--m-scrollable__footer--BorderColor: var(--pf-t--global--border--color--high-contrast);
18958
19252
  --pf-v6-c-menu--m-scrollable__footer--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
18959
19253
  --pf-v6-c-menu__list-item--Color: var(--pf-t--global--text--color--regular);
@@ -19679,6 +19973,7 @@ ul.pf-v6-c-list {
19679
19973
  --pf-v6-c-menu-toggle--m-plain--disabled--BackgroundColor: transparent;
19680
19974
  --pf-v6-c-menu-toggle--m-plain--m-small--PaddingInlineStart: var(--pf-t--global--spacer--action--horizontal--plain--compact);
19681
19975
  --pf-v6-c-menu-toggle--m-plain--m-small--PaddingInlineEnd: var(--pf-t--global--spacer--action--horizontal--plain--compact);
19976
+ --pf-v6-c-menu-toggle--m-plain--m-circle--BorderRadius: var(--pf-t--global--border--radius--pill);
19682
19977
  --pf-v6-c-menu-toggle--m-typeahead__button--AlignSelf: stretch;
19683
19978
  --pf-v6-c-menu-toggle--m-small--PaddingBlockStart: var(--pf-t--global--spacer--control--vertical--compact);
19684
19979
  --pf-v6-c-menu-toggle--m-small--PaddingBlockEnd: var(--pf-t--global--spacer--control--vertical--compact);
@@ -19807,6 +20102,9 @@ ul.pf-v6-c-list {
19807
20102
  --pf-v6-c-menu-toggle--m-small--PaddingInlineStart: var(--pf-v6-c-menu-toggle--m-plain--m-small--PaddingInlineStart);
19808
20103
  --pf-v6-c-menu-toggle--m-small--PaddingInlineEnd: var(--pf-v6-c-menu-toggle--m-plain--m-small--PaddingInlineEnd);
19809
20104
  }
20105
+ .pf-v6-c-menu-toggle.pf-m-plain.pf-m-circle {
20106
+ --pf-v6-c-menu-toggle--BorderRadius: var(--pf-v6-c-menu-toggle--m-plain--m-circle--BorderRadius);
20107
+ }
19810
20108
  .pf-v6-c-menu-toggle.pf-m-plain::before {
19811
20109
  --pf-v6-c-menu-toggle--BorderWidth: var(--pf-v6-c-menu-toggle--m-plain--BorderWidth);
19812
20110
  --pf-v6-c-menu-toggle--BorderColor: var(--pf-v6-c-menu-toggle--m-plain--BorderColor);
@@ -22331,7 +22629,7 @@ ul.pf-v6-c-list {
22331
22629
  --pf-v6-c-panel__footer--BorderWidth: 0;
22332
22630
  --pf-v6-c-panel--m-scrollable__main--MaxHeight: 18.75rem;
22333
22631
  --pf-v6-c-panel--m-scrollable__main--Overflow: auto;
22334
- --pf-v6-c-panel--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--md--top);
22632
+ --pf-v6-c-panel--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--sm--top);
22335
22633
  --pf-v6-c-panel--m-scrollable__footer--PaddingBlockStart: var(--pf-t--global--spacer--md);
22336
22634
  --pf-v6-c-panel--m-scrollable__footer--PaddingBlockEnd: var(--pf-t--global--spacer--md);
22337
22635
  --pf-v6-c-panel--m-scrollable__footer--BorderColor: var(--pf-t--global--border--color--high-contrast);
@@ -24418,6 +24716,9 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
24418
24716
  .pf-v6-c-spinner.pf-m-xl {
24419
24717
  --pf-v6-c-spinner--diameter: var(--pf-v6-c-spinner--m-xl--diameter);
24420
24718
  }
24719
+ .pf-v6-m-no-motion .pf-v6-c-spinner {
24720
+ --pf-v6-c-spinner--AnimationDuration: 0s;
24721
+ }
24421
24722
 
24422
24723
  .pf-v6-c-spinner__path {
24423
24724
  width: 100%;
@@ -26483,6 +26784,9 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
26483
26784
  .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]) {
26484
26785
  --pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table__thead--m-nested-column-header__tr--PaddingBlockEnd);
26485
26786
  }
26787
+ .pf-v6-c-table.pf-m-plain {
26788
+ --pf-v6-c-table--BackgroundColor: transparent;
26789
+ }
26486
26790
  .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),
26487
26791
  .pf-v6-c-table > .pf-m-striped > tr:nth-child(odd),
26488
26792
  .pf-v6-c-table > .pf-m-striped-even > tr:nth-child(even),
@@ -28320,6 +28624,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
28320
28624
  --pf-v6-c-tabs__add--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
28321
28625
  --pf-v6-c-tabs__add--PaddingInlineStart: var(--pf-t--global--spacer--sm);
28322
28626
  --pf-v6-c-tabs__add--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
28627
+ --pf-v6-c-tabs--m-nav__link--BorderRadius: var(--pf-t--global--border--radius--pill);
28628
+ --pf-v6-c-tabs--m-nav__link--disabled--Color: var(--pf-t--global--text--color--disabled);
28629
+ --pf-v6-c-tabs--m-nav--m-subtab__scroll-button--button--FontSize: var(--pf-t--global--icon--size--font--body--sm);
28323
28630
  --pf-v6-c-tabs__link-toggle-icon--Color: var(--pf-t--global--icon--color--regular);
28324
28631
  --pf-v6-c-tabs__link-toggle-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
28325
28632
  --pf-v6-c-tabs__link-toggle-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
@@ -28597,6 +28904,19 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
28597
28904
  .pf-v6-c-tabs.pf-m-overflow .pf-v6-c-tabs__list {
28598
28905
  overflow: visible;
28599
28906
  }
28907
+ .pf-v6-c-tabs.pf-m-nav {
28908
+ --pf-v6-c-tabs__link--disabled--BackgroundColor: transparent;
28909
+ --pf-v6-c-tabs__link--disabled--Color: var(--pf-v6-c-tabs--m-nav__link--disabled--Color);
28910
+ --pf-v6-c-tabs__link--hover--BorderColor: transparent;
28911
+ --pf-v6-c-tabs__link--BorderRadius: var(--pf-v6-c-tabs--m-nav__link--BorderRadius);
28912
+ }
28913
+ .pf-v6-c-tabs.pf-m-nav::before,
28914
+ .pf-v6-c-tabs.pf-m-nav .pf-v6-c-tabs__link::before {
28915
+ border: 0;
28916
+ }
28917
+ .pf-v6-c-tabs.pf-m-nav.pf-m-subtab .pf-v6-c-tabs__scroll-button .pf-v6-c-button {
28918
+ --pf-v6-c-button--FontSize: var(--pf-v6-c-tabs--m-nav--m-subtab__scroll-button--button--FontSize);
28919
+ }
28600
28920
 
28601
28921
  .pf-v6-c-tabs__toggle {
28602
28922
  display: var(--pf-v6-c-tabs__toggle--Display);
@@ -28646,7 +28966,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
28646
28966
  }
28647
28967
  .pf-v6-c-tabs__item.pf-m-current {
28648
28968
  --pf-v6-c-tabs__link--Color: var(--pf-v6-c-tabs__item--m-current__link--Color);
28649
- --pf-v6-c-tabs__link--after--BorderColor: var(--pf-v6-c-tabs__item--m-current__link--after--BorderColor);
28969
+ --pf-v6-c-tabs__link--after--BorderColor: var(--pf-v6-c-tabs--link-accent--color);
28650
28970
  --pf-v6-c-tabs__link--after--BorderWidth: var(--pf-v6-c-tabs__item--m-current__link--after--BorderWidth);
28651
28971
  --pf-v6-c-tabs__item--BackgroundColor: var(--pf-v6-c-tabs__item--m-current--BackgroundColor);
28652
28972
  }