@patternfly/patternfly 6.5.0-prerelease.73 → 6.5.0-prerelease.75

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.
@@ -1044,6 +1044,66 @@ cssPrefix: pf-v6-c-drawer
1044
1044
 
1045
1045
  ```
1046
1046
 
1047
+ ### Resizable Pill
1048
+
1049
+ ```html isBeta
1050
+ <div class="pf-v6-c-drawer pf-m-expanded pf-m-pill">
1051
+ <div class="pf-v6-c-drawer__main">
1052
+ <div class="pf-v6-c-drawer__content">
1053
+ <div
1054
+ class="pf-v6-c-drawer__body"
1055
+ >Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus pretium est a porttitor vehicula. Quisque vel commodo urna. Morbi mattis rutrum ante, id vehicula ex accumsan ut. Morbi viverra, eros vel porttitor facilisis, eros purus aliquet erat, nec lobortis felis elit pulvinar sem. Vivamus vulputate, risus eget commodo eleifend, eros nibh porta quam, vitae lacinia leo libero at magna. Maecenas aliquam sagittis orci, et posuere nisi ultrices sit amet. Aliquam ex odio, malesuada sed posuere quis, pellentesque at mauris. Phasellus venenatis massa ex, eget pulvinar libero auctor pretium. Aliquam erat volutpat. Duis euismod justo in quam ullamcorper, in commodo massa vulputate.</div>
1056
+ </div>
1057
+ <div class="pf-v6-c-drawer__panel pf-m-resizable">
1058
+ <div
1059
+ class="pf-v6-c-drawer__splitter pf-m-vertical"
1060
+ role="separator"
1061
+ tabindex="0"
1062
+ aria-valuenow="50"
1063
+ aria-orientation="vertical"
1064
+ >
1065
+ <div class="pf-v6-c-drawer__splitter-handle"></div>
1066
+ </div>
1067
+ <div class="pf-v6-c-drawer__panel-main">
1068
+ <div class="pf-v6-c-drawer__head">
1069
+ <span>Drawer panel header content</span>
1070
+ <div class="pf-v6-c-drawer__actions">
1071
+ <div class="pf-v6-c-drawer__close">
1072
+ <button
1073
+ class="pf-v6-c-button pf-m-plain"
1074
+ type="button"
1075
+ aria-label="Close drawer panel"
1076
+ >
1077
+ <span class="pf-v6-c-button__icon">
1078
+ <svg
1079
+ class="pf-v6-svg"
1080
+ viewBox="0 0 20 20"
1081
+ fill="currentColor"
1082
+ aria-hidden="true"
1083
+ role="img"
1084
+ width="1em"
1085
+ height="1em"
1086
+ >
1087
+ <path
1088
+ d="M17.8 16.2 11.59 10l6.21-6.21c.42-.46.39-1.17-.07-1.59-.43-.4-1.09-.4-1.52 0l-6.2 6.2-6.22-6.19c-.44-.44-1.15-.44-1.59 0-.44.44-.44 1.15 0 1.59l6.2 6.21-6.2 6.2c-.42.46-.39 1.17.07 1.59.43.4 1.09.4 1.52 0L10 11.59l6.2 6.2c.44.44 1.15.44 1.59 0 .44-.45.44-1.16 0-1.6Z"
1089
+ />
1090
+ </svg>
1091
+ </span>
1092
+ </button>
1093
+ </div>
1094
+ </div>
1095
+ </div>
1096
+ <div
1097
+ class="pf-v6-c-drawer__description"
1098
+ >This is a helpful description of the drawer panel.</div>
1099
+ <div class="pf-v6-c-drawer__body">Drawer panel body content</div>
1100
+ </div>
1101
+ </div>
1102
+ </div>
1103
+ </div>
1104
+
1105
+ ```
1106
+
1047
1107
  ### Pill inline
1048
1108
 
1049
1109
  ```html isBeta
@@ -493,6 +493,71 @@ cssPrefix: pf-v6-c-toggle-group
493
493
 
494
494
  ```
495
495
 
496
+ ### Full width toggle
497
+
498
+ To make toggle group items fill the available space, use `.pf-m-fill`. In the following example, the toggle group items fill the width of the parent as the window size changes.
499
+
500
+ ```html
501
+ <div class="pf-v6-c-toggle-group pf-m-fill">
502
+ <div class="pf-v6-c-toggle-group__item">
503
+ <button class="pf-v6-c-toggle-group__button" type="button">
504
+ <span class="pf-v6-c-toggle-group__text">Option 1</span>
505
+ </button>
506
+ </div>
507
+ <div class="pf-v6-c-toggle-group__item">
508
+ <button class="pf-v6-c-toggle-group__button" type="button">
509
+ <span class="pf-v6-c-toggle-group__text">Option 2</span>
510
+ </button>
511
+ </div>
512
+ <div class="pf-v6-c-toggle-group__item">
513
+ <button class="pf-v6-c-toggle-group__button" type="button">
514
+ <span class="pf-v6-c-toggle-group__text">Option 3</span>
515
+ </button>
516
+ </div>
517
+ </div>
518
+
519
+ <br />
520
+
521
+ <div class="pf-v6-c-toggle-group pf-m-fill">
522
+ <div class="pf-v6-c-toggle-group__item">
523
+ <button class="pf-v6-c-toggle-group__button pf-m-selected" type="button">
524
+ <span class="pf-v6-c-toggle-group__text">Option 1</span>
525
+ </button>
526
+ </div>
527
+ <div class="pf-v6-c-toggle-group__item">
528
+ <button class="pf-v6-c-toggle-group__button pf-m-selected" type="button">
529
+ <span class="pf-v6-c-toggle-group__text">Option 2</span>
530
+ </button>
531
+ </div>
532
+ <div class="pf-v6-c-toggle-group__item">
533
+ <button class="pf-v6-c-toggle-group__button" type="button">
534
+ <span class="pf-v6-c-toggle-group__text">Option 3</span>
535
+ </button>
536
+ </div>
537
+ </div>
538
+
539
+ <br />
540
+
541
+ <div class="pf-v6-c-toggle-group pf-m-fill">
542
+ <div class="pf-v6-c-toggle-group__item">
543
+ <button class="pf-v6-c-toggle-group__button" type="button">
544
+ <span class="pf-v6-c-toggle-group__text">Option 1</span>
545
+ </button>
546
+ </div>
547
+ <div class="pf-v6-c-toggle-group__item">
548
+ <button class="pf-v6-c-toggle-group__button" type="button">
549
+ <span class="pf-v6-c-toggle-group__text">Option 2</span>
550
+ </button>
551
+ </div>
552
+ <div class="pf-v6-c-toggle-group__item">
553
+ <button class="pf-v6-c-toggle-group__button" type="button" disabled>
554
+ <span class="pf-v6-c-toggle-group__text">Option 3</span>
555
+ </button>
556
+ </div>
557
+ </div>
558
+
559
+ ```
560
+
496
561
  ## Documentation
497
562
 
498
563
  ### Accessibility
@@ -512,4 +577,5 @@ cssPrefix: pf-v6-c-toggle-group
512
577
  | `.pf-v6-c-toggle-group__text` | `<span>` | Initiates the toggle button text element. |
513
578
  | `.pf-v6-c-toggle-group__icon` | `<span>` | Initiates the toggle button icon element. |
514
579
  | `.pf-m-compact` | `.pf-v6-c-toggle-group` | Modifies the toggle group for compact styles. |
580
+ | `.pf-m-fill` | `.pf-v6-c-toggle-group` | Modifies the group items to fill the available space. |
515
581
  | `.pf-m-selected` | `.pf-v6-c-toggle-group__button` | Modifies the toggle button group button for the selected state. |
@@ -13,13 +13,7 @@ This demo populates the main Compass section with a card view, which is one of t
13
13
  * A `.pf-v6-c-compass__content`, which contains a glass panel component to create a rounded-rectangle container that serves as the main content background.
14
14
 
15
15
  ```html isFullscreen isBeta
16
- <div
17
- class="pf-v6-c-compass pf-m-animate-smoothly"
18
- style="
19
- --pf-v6-c-compass--BackgroundImage--light: url(/assets/images/compass--wallpaper-light.jpg);
20
- --pf-v6-c-compass--BackgroundImage--dark: url(/assets/images/compass--wallpaper-dark.jpg);
21
- "
22
- >
16
+ <div class="pf-v6-c-compass pf-m-animate-smoothly">
23
17
  <div class="pf-v6-c-compass__header pf-m-expanded">
24
18
  <div class="pf-v6-c-compass__logo">
25
19
  <svg
@@ -1657,13 +1651,7 @@ This demo populates the main Compass section with a dashboard, which is often us
1657
1651
  * A `.pf-v6-c-compass__content` without a glass panel component wrapping all of the contents. This removes the rounded-rectangle container that typically serves as the main content background. Instead, the content area is a dashboard (a grid of cards), and each card has a glass modifier.
1658
1652
 
1659
1653
  ```html isFullscreen isBeta
1660
- <div
1661
- class="pf-v6-c-compass pf-m-animate-smoothly"
1662
- style="
1663
- --pf-v6-c-compass--BackgroundImage--light: url(/assets/images/compass--wallpaper-light.jpg);
1664
- --pf-v6-c-compass--BackgroundImage--dark: url(/assets/images/compass--wallpaper-dark.jpg);
1665
- "
1666
- >
1654
+ <div class="pf-v6-c-compass pf-m-animate-smoothly">
1667
1655
  <div class="pf-v6-c-compass__header pf-m-expanded">
1668
1656
  <div class="pf-v6-c-compass__logo">
1669
1657
  <svg
@@ -3582,13 +3570,7 @@ This demo places multiple sections within the main Compass section, with each se
3582
3570
  Without a glass panel component wrapping all of the content, there is no rounded-rectangle container as the main content background. Instead, the `.pf-v6-c-compass__content` is a grid with 2 independently scrollable glass panel components.
3583
3571
 
3584
3572
  ```html isFullscreen isBeta
3585
- <div
3586
- class="pf-v6-c-compass pf-m-animate-smoothly"
3587
- style="
3588
- --pf-v6-c-compass--BackgroundImage--light: url(/assets/images/compass--wallpaper-light.jpg);
3589
- --pf-v6-c-compass--BackgroundImage--dark: url(/assets/images/compass--wallpaper-dark.jpg);
3590
- "
3591
- >
3573
+ <div class="pf-v6-c-compass pf-m-animate-smoothly">
3592
3574
  <div class="pf-v6-c-compass__header pf-m-expanded">
3593
3575
  <div class="pf-v6-c-compass__logo">
3594
3576
  <svg
@@ -6123,13 +6105,7 @@ This demo showcases how you can position a side-panel drawer on top of the other
6123
6105
  <div class="pf-v6-c-drawer__main">
6124
6106
  <div class="pf-v6-c-drawer__content">
6125
6107
  <div class="pf-v6-c-drawer__body">
6126
- <div
6127
- class="pf-v6-c-compass pf-m-animate-smoothly"
6128
- style="
6129
- --pf-v6-c-compass--BackgroundImage--light: url(/assets/images/compass--wallpaper-light.jpg);
6130
- --pf-v6-c-compass--BackgroundImage--dark: url(/assets/images/compass--wallpaper-dark.jpg);
6131
- "
6132
- >
6108
+ <div class="pf-v6-c-compass pf-m-animate-smoothly">
6133
6109
  <div class="pf-v6-c-compass__header pf-m-expanded">
6134
6110
  <div class="pf-v6-c-compass__logo">
6135
6111
  <svg
@@ -7839,13 +7815,7 @@ This demo showcases how you can position a side-panel drawer on top of the other
7839
7815
  ### Docked
7840
7816
 
7841
7817
  ```html isFullscreen isBeta
7842
- <div
7843
- class="pf-v6-c-compass pf-m-animate-smoothly pf-m-docked"
7844
- style="
7845
- --pf-v6-c-compass--BackgroundImage--light: url(/assets/images/compass--wallpaper-light.jpg);
7846
- --pf-v6-c-compass--BackgroundImage--dark: url(/assets/images/compass--wallpaper-dark.jpg);
7847
- "
7848
- >
7818
+ <div class="pf-v6-c-compass pf-m-animate-smoothly pf-m-docked">
7849
7819
  <div class="pf-v6-c-compass__dock">
7850
7820
  <div class="pf-v6-c-skip-to-content">
7851
7821
  <a class="pf-v6-c-button pf-m-primary" href="#main-content-">
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@patternfly/patternfly",
3
3
  "description": "Assets, source, tooling, and content for PatternFly 4",
4
- "version": "6.5.0-prerelease.73",
4
+ "version": "6.5.0-prerelease.75",
5
5
  "keywords": [],
6
6
  "license": "MIT",
7
7
  "scripts": {
8
8
  "a11y": "patternfly-a11y --config patternfly-a11y.config",
9
- "backstop:clean": "rimraf -- backstop_data/bitmaps_test backstop_data/html_report",
9
+ "backstop:clean": "rimraf -- backstop_data/bitmaps_test backstop_data/bitmaps_test_glass backstop_data/html_report",
10
10
  "backstop:test": "backstop test --config='backstop.js'",
11
11
  "backstop:test:dark": "backstop test --config='backstop.js' --dark",
12
12
  "backstop:test:glass": "backstop test --config='backstop.js' --glass",
@@ -72,9 +72,9 @@
72
72
  "@patternfly/documentation-framework": "6.38.3",
73
73
  "@patternfly/patternfly-a11y": "5.1.0",
74
74
  "@patternfly/react-code-editor": "6.4.1",
75
- "@patternfly/react-core": "6.4.1",
75
+ "@patternfly/react-core": "6.4.3",
76
76
  "@patternfly/react-icons": "6.5.0-prerelease.13",
77
- "@patternfly/react-table": "6.4.1",
77
+ "@patternfly/react-table": "6.4.3",
78
78
  "@rspack/cli": "^1.6.0",
79
79
  "@rspack/core": "^1.6.0",
80
80
  "@rspack/dev-server": "^1.1.4",
@@ -15365,7 +15365,7 @@ ul) {
15365
15365
  --pf-v6-c-drawer__panel--BorderInlineEndWidth: 0;
15366
15366
  --pf-v6-c-drawer__panel--BackgroundColor: var(--pf-t--global--background--color--floating--default);
15367
15367
  --pf-v6-c-drawer__panel--m-inline--BackgroundColor: var(--pf-t--global--background--color--primary--default);
15368
- --pf-v6-c-drawer__panel--m-secondary--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
15368
+ --pf-v6-c-drawer__panel--m-secondary--BackgroundColor: var(--pf-t--global--background--color--floating--secondary--default);
15369
15369
  --pf-v6-c-drawer__panel--RowGap: var(--pf-t--global--spacer--sm);
15370
15370
  --pf-v6-c-drawer__panel--PaddingBlockStart: var(--pf-t--global--spacer--sm);
15371
15371
  --pf-v6-c-drawer__panel--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
@@ -15398,9 +15398,10 @@ ul) {
15398
15398
  --pf-v6-c-drawer--m-pill__panel--BorderBlockEndWidth: var(--pf-t--global--border--width--regular);
15399
15399
  --pf-v6-c-drawer--m-pill__panel--BorderInlineStartWidth: var(--pf-t--global--border--width--regular);
15400
15400
  --pf-v6-c-drawer--m-pill__panel--BorderInlineEndWidth: var(--pf-t--global--border--width--regular);
15401
- --pf-v6-c-drawer--m-pill__panel--BorderColor: var(--pf-t--global--border--color--default);
15401
+ --pf-v6-c-drawer--m-pill__panel--BorderColor: var(--pf-t--global--border--color--subtle);
15402
15402
  --pf-v6-c-drawer--m-pill__panel--BorderRadius: var(--pf-t--global--border--radius--large);
15403
15403
  --pf-v6-c-drawer--m-pill--m-expanded__panel--inset: var(--pf-t--global--spacer--inset--page-chrome);
15404
+ --pf-v6-c-drawer--m-pill--m-expanded__panel--BoxShadow: var(--pf-t--global--box-shadow--md);
15404
15405
  --pf-v6-c-drawer__panel--m-glass--BackgroundColor: var(--pf-t--global--background--color--glass--primary--default);
15405
15406
  --pf-v6-c-drawer__panel--m-glass--BackdropFilter: var(--pf-t--global--background--filter--glass--blur--primary);
15406
15407
  --pf-v6-c-drawer__panel--m-glass--BorderColor: var(--pf-t--global--border--color--glass--default);
@@ -15647,6 +15648,7 @@ ul) {
15647
15648
  border-block-end-width: var(--pf-v6-c-drawer--m-pill__panel--BorderBlockEndWidth);
15648
15649
  border-inline-start-width: var(--pf-v6-c-drawer--m-pill__panel--BorderInlineStartWidth);
15649
15650
  border-inline-end-width: var(--pf-v6-c-drawer--m-pill__panel--BorderInlineEndWidth);
15651
+ box-shadow: var(--pf-v6-c-drawer--m-pill--m-expanded__panel--BoxShadow);
15650
15652
  }
15651
15653
  }
15652
15654
  @media screen and (min-width: 48rem) {
@@ -19854,7 +19856,6 @@ ul.pf-v6-c-list {
19854
19856
  padding-inline-end: var(--pf-t--global--spacer--2xl);
19855
19857
  }
19856
19858
  :where(.pf-v6-theme-glass) .pf-v6-c-masthead:not(.pf-m-docked) {
19857
- margin-block-end: var(--pf-t--global--spacer--inset--page-chrome);
19858
19859
  background-color: var(--pf-t--global--background--color--glass--primary--default);
19859
19860
  backdrop-filter: var(--pf-t--global--background--filter--glass--blur--primary);
19860
19861
  border-block-end: var(--pf-t--global--border--width--glass--default) solid var(--pf-t--global--border--color--glass--default);
@@ -22837,6 +22838,7 @@ ul.pf-v6-c-list {
22837
22838
  --pf-v6-c-page--m-dock--ColumnGap: var(--pf-t--global--spacer--inset--page-chrome);
22838
22839
  --pf-v6-c-page--BackgroundColor--glass: transparent;
22839
22840
  --pf-v6-c-page__sidebar--Width--base--glass: calc(18.125rem + var(--pf-t--global--spacer--inset--page-chrome) * 2);
22841
+ --pf-v6-c-page__sidebar--MarginBlockStart--glass: var(--pf-t--global--spacer--inset--page-chrome);
22840
22842
  --pf-v6-c-page__sidebar-body--PaddingInlineStart--glass: var(--pf-t--global--spacer--lg);
22841
22843
  --pf-v6-c-page__sidebar-body--PaddingInlineEnd--glass: var(--pf-t--global--spacer--lg);
22842
22844
  --pf-v6-c-page__sidebar-main--PaddingBlockEnd--glass: var(--pf-v6-c-page__sidebar--PaddingBlockEnd);
@@ -22856,10 +22858,12 @@ ul.pf-v6-c-list {
22856
22858
  --pf-v6-c-page__sidebar-main--xl--MarginBlockEnd--glass: var(--pf-t--global--spacer--inset--page-chrome);
22857
22859
  --pf-v6-c-page__sidebar-main--xl--MarginInlineStart--glass: var(--pf-t--global--spacer--inset--page-chrome);
22858
22860
  --pf-v6-c-page__sidebar-main--xl--MarginInlineEnd--glass: var(--pf-t--global--spacer--inset--page-chrome);
22861
+ --pf-v6-c-page__main-container--MarginBlockStart--glass: var(--pf-t--global--spacer--inset--page-chrome);
22859
22862
  }
22860
22863
  :where(.pf-v6-theme-glass) .pf-v6-c-page {
22861
22864
  --pf-v6-c-page--BackgroundColor: var(--pf-v6-c-page--BackgroundColor--glass);
22862
22865
  --pf-v6-c-page__sidebar--Width--base: var(--pf-v6-c-page__sidebar--Width--base--glass);
22866
+ --pf-v6-c-page__sidebar--MarginBlockStart: var(--pf-v6-c-page__sidebar--MarginBlockStart--glass);
22863
22867
  --pf-v6-c-page__sidebar-body--PaddingInlineStart: var(--pf-v6-c-page__sidebar-body--PaddingInlineStart--glass);
22864
22868
  --pf-v6-c-page__sidebar-body--PaddingInlineEnd: var(--pf-v6-c-page__sidebar-body--PaddingInlineEnd--glass);
22865
22869
  --pf-v6-c-page__sidebar-main--PaddingBlockEnd: var(--pf-v6-c-page__sidebar-main--PaddingBlockEnd--glass);
@@ -22875,6 +22879,7 @@ ul.pf-v6-c-list {
22875
22879
  --pf-v6-c-page__sidebar-main--BorderColor: var(--pf-v6-c-page__sidebar-main--BorderColor--glass);
22876
22880
  --pf-v6-c-page__sidebar-main--BorderRadius: var(--pf-v6-c-page__sidebar-main--BorderRadius--glass);
22877
22881
  --pf-v6-c-page__sidebar-main--BoxShadow: var(--pf-v6-c-page__sidebar-main--BoxShadow--glass);
22882
+ --pf-v6-c-page__main-container--MarginBlockStart: var(--pf-v6-c-page__main-container--MarginBlockStart--glass);
22878
22883
  }
22879
22884
  @media (min-width: 75rem) {
22880
22885
  .pf-v6-c-page {
@@ -31433,9 +31438,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
31433
31438
  --pf-v6-c-toggle-group__button--disabled--before--BorderColor: var(--pf-t--global--border--color--control--default);
31434
31439
  --pf-v6-c-toggle-group__button--disabled--disabled--before--BorderInlineStartColor: var(--pf-t--global--border--color--control--default);
31435
31440
  --pf-v6-c-toggle-group__button--disabled--ZIndex: var(--pf-t--global--z-index--xs);
31436
- --pf-v6-c-toggle-group--m-compact__button--PaddingBlockStart: 0;
31441
+ --pf-v6-c-toggle-group--m-compact__button--PaddingBlockStart: var(--pf-t--global--spacer--xs);
31437
31442
  --pf-v6-c-toggle-group--m-compact__button--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
31438
- --pf-v6-c-toggle-group--m-compact__button--PaddingBlockEnd: 0;
31443
+ --pf-v6-c-toggle-group--m-compact__button--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
31439
31444
  --pf-v6-c-toggle-group--m-compact__button--PaddingInlineStart: var(--pf-t--global--spacer--sm);
31440
31445
  --pf-v6-c-toggle-group--m-compact__button--FontSize: var(--pf-t--global--font--size--body--default);
31441
31446
  }
@@ -31450,6 +31455,14 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
31450
31455
  --pf-v6-c-toggle-group__button--PaddingInlineStart: var(--pf-v6-c-toggle-group--m-compact__button--PaddingInlineStart);
31451
31456
  --pf-v6-c-toggle-group__button--FontSize: var(--pf-v6-c-toggle-group--m-compact__button--FontSize);
31452
31457
  }
31458
+ .pf-v6-c-toggle-group.pf-m-fill .pf-v6-c-toggle-group__item {
31459
+ display: flex;
31460
+ flex-grow: 1;
31461
+ }
31462
+ .pf-v6-c-toggle-group.pf-m-fill .pf-v6-c-toggle-group__button {
31463
+ flex-basis: 100%;
31464
+ justify-content: center;
31465
+ }
31453
31466
 
31454
31467
  .pf-v6-c-toggle-group__item + .pf-v6-c-toggle-group__item {
31455
31468
  margin-inline-start: var(--pf-v6-c-toggle-group__item--item--MarginInlineStart);
@@ -38342,13 +38355,36 @@ label.pf-v6-c-tree-view__node-text {
38342
38355
  gap: var(--pf-v6-l-stack--m-gutter--Gap);
38343
38356
  }
38344
38357
 
38345
- :where(.pf-v6-theme-glass) .pf-v6-c-login, :where(.pf-v6-theme-glass) body {
38346
- background-image: url("./assets/images/glass-brand-light.jpg");
38358
+ :root:where(.pf-v6-theme-glass) body {
38359
+ background-image: url("./assets/images/PF-Bkg-Generic-Light.svg");
38347
38360
  background-repeat: no-repeat;
38348
38361
  background-attachment: fixed;
38349
38362
  background-position: center;
38350
38363
  background-size: cover;
38351
38364
  }
38352
- :where(.pf-v6-theme-glass):where(.pf-v6-theme-dark) .pf-v6-c-login, :where(.pf-v6-theme-glass):where(.pf-v6-theme-dark) body {
38353
- background-image: url("./assets/images/glass-brand-dark.jpg");
38365
+ :root:where(.pf-v6-theme-glass):where(.pf-v6-theme-dark) body {
38366
+ background-image: url("./assets/images/PF-Bkg-Generic-Dark.svg");
38367
+ }
38368
+ :root:where(.pf-v6-theme-glass):where(.pf-v6-theme-redhat) body {
38369
+ background-image: url("./assets/images/Felt-Bkg-Generic-Light.svg");
38370
+ }
38371
+ :root:where(.pf-v6-theme-glass):where(.pf-v6-theme-redhat.pf-v6-theme-dark) body {
38372
+ background-image: url("./assets/images/Felt-Bkg-Generic-Dark.svg");
38373
+ }
38374
+
38375
+ .pf-v6-c-compass {
38376
+ background-image: url("./assets/images/PF-Bkg-Generic-Light.svg");
38377
+ background-repeat: no-repeat;
38378
+ background-attachment: fixed;
38379
+ background-position: center;
38380
+ background-size: cover;
38381
+ }
38382
+ :root:where(.pf-v6-theme-dark) .pf-v6-c-compass {
38383
+ background-image: url("./assets/images/PF-Bkg-Generic-Dark.svg");
38384
+ }
38385
+ :root:where(.pf-v6-theme-redhat) .pf-v6-c-compass {
38386
+ background-image: url("./assets/images/Felt-Bkg-Generic-Light.svg");
38387
+ }
38388
+ :root:where(.pf-v6-theme-redhat.pf-v6-theme-dark) .pf-v6-c-compass {
38389
+ background-image: url("./assets/images/Felt-Bkg-Generic-Dark.svg");
38354
38390
  }
package/patternfly.css CHANGED
@@ -15512,7 +15512,7 @@ ul) {
15512
15512
  --pf-v6-c-drawer__panel--BorderInlineEndWidth: 0;
15513
15513
  --pf-v6-c-drawer__panel--BackgroundColor: var(--pf-t--global--background--color--floating--default);
15514
15514
  --pf-v6-c-drawer__panel--m-inline--BackgroundColor: var(--pf-t--global--background--color--primary--default);
15515
- --pf-v6-c-drawer__panel--m-secondary--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
15515
+ --pf-v6-c-drawer__panel--m-secondary--BackgroundColor: var(--pf-t--global--background--color--floating--secondary--default);
15516
15516
  --pf-v6-c-drawer__panel--RowGap: var(--pf-t--global--spacer--sm);
15517
15517
  --pf-v6-c-drawer__panel--PaddingBlockStart: var(--pf-t--global--spacer--sm);
15518
15518
  --pf-v6-c-drawer__panel--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
@@ -15545,9 +15545,10 @@ ul) {
15545
15545
  --pf-v6-c-drawer--m-pill__panel--BorderBlockEndWidth: var(--pf-t--global--border--width--regular);
15546
15546
  --pf-v6-c-drawer--m-pill__panel--BorderInlineStartWidth: var(--pf-t--global--border--width--regular);
15547
15547
  --pf-v6-c-drawer--m-pill__panel--BorderInlineEndWidth: var(--pf-t--global--border--width--regular);
15548
- --pf-v6-c-drawer--m-pill__panel--BorderColor: var(--pf-t--global--border--color--default);
15548
+ --pf-v6-c-drawer--m-pill__panel--BorderColor: var(--pf-t--global--border--color--subtle);
15549
15549
  --pf-v6-c-drawer--m-pill__panel--BorderRadius: var(--pf-t--global--border--radius--large);
15550
15550
  --pf-v6-c-drawer--m-pill--m-expanded__panel--inset: var(--pf-t--global--spacer--inset--page-chrome);
15551
+ --pf-v6-c-drawer--m-pill--m-expanded__panel--BoxShadow: var(--pf-t--global--box-shadow--md);
15551
15552
  --pf-v6-c-drawer__panel--m-glass--BackgroundColor: var(--pf-t--global--background--color--glass--primary--default);
15552
15553
  --pf-v6-c-drawer__panel--m-glass--BackdropFilter: var(--pf-t--global--background--filter--glass--blur--primary);
15553
15554
  --pf-v6-c-drawer__panel--m-glass--BorderColor: var(--pf-t--global--border--color--glass--default);
@@ -15794,6 +15795,7 @@ ul) {
15794
15795
  border-block-end-width: var(--pf-v6-c-drawer--m-pill__panel--BorderBlockEndWidth);
15795
15796
  border-inline-start-width: var(--pf-v6-c-drawer--m-pill__panel--BorderInlineStartWidth);
15796
15797
  border-inline-end-width: var(--pf-v6-c-drawer--m-pill__panel--BorderInlineEndWidth);
15798
+ box-shadow: var(--pf-v6-c-drawer--m-pill--m-expanded__panel--BoxShadow);
15797
15799
  }
15798
15800
  }
15799
15801
  @media screen and (min-width: 48rem) {
@@ -20001,7 +20003,6 @@ ul.pf-v6-c-list {
20001
20003
  padding-inline-end: var(--pf-t--global--spacer--2xl);
20002
20004
  }
20003
20005
  :where(.pf-v6-theme-glass) .pf-v6-c-masthead:not(.pf-m-docked) {
20004
- margin-block-end: var(--pf-t--global--spacer--inset--page-chrome);
20005
20006
  background-color: var(--pf-t--global--background--color--glass--primary--default);
20006
20007
  backdrop-filter: var(--pf-t--global--background--filter--glass--blur--primary);
20007
20008
  border-block-end: var(--pf-t--global--border--width--glass--default) solid var(--pf-t--global--border--color--glass--default);
@@ -22984,6 +22985,7 @@ ul.pf-v6-c-list {
22984
22985
  --pf-v6-c-page--m-dock--ColumnGap: var(--pf-t--global--spacer--inset--page-chrome);
22985
22986
  --pf-v6-c-page--BackgroundColor--glass: transparent;
22986
22987
  --pf-v6-c-page__sidebar--Width--base--glass: calc(18.125rem + var(--pf-t--global--spacer--inset--page-chrome) * 2);
22988
+ --pf-v6-c-page__sidebar--MarginBlockStart--glass: var(--pf-t--global--spacer--inset--page-chrome);
22987
22989
  --pf-v6-c-page__sidebar-body--PaddingInlineStart--glass: var(--pf-t--global--spacer--lg);
22988
22990
  --pf-v6-c-page__sidebar-body--PaddingInlineEnd--glass: var(--pf-t--global--spacer--lg);
22989
22991
  --pf-v6-c-page__sidebar-main--PaddingBlockEnd--glass: var(--pf-v6-c-page__sidebar--PaddingBlockEnd);
@@ -23003,10 +23005,12 @@ ul.pf-v6-c-list {
23003
23005
  --pf-v6-c-page__sidebar-main--xl--MarginBlockEnd--glass: var(--pf-t--global--spacer--inset--page-chrome);
23004
23006
  --pf-v6-c-page__sidebar-main--xl--MarginInlineStart--glass: var(--pf-t--global--spacer--inset--page-chrome);
23005
23007
  --pf-v6-c-page__sidebar-main--xl--MarginInlineEnd--glass: var(--pf-t--global--spacer--inset--page-chrome);
23008
+ --pf-v6-c-page__main-container--MarginBlockStart--glass: var(--pf-t--global--spacer--inset--page-chrome);
23006
23009
  }
23007
23010
  :where(.pf-v6-theme-glass) .pf-v6-c-page {
23008
23011
  --pf-v6-c-page--BackgroundColor: var(--pf-v6-c-page--BackgroundColor--glass);
23009
23012
  --pf-v6-c-page__sidebar--Width--base: var(--pf-v6-c-page__sidebar--Width--base--glass);
23013
+ --pf-v6-c-page__sidebar--MarginBlockStart: var(--pf-v6-c-page__sidebar--MarginBlockStart--glass);
23010
23014
  --pf-v6-c-page__sidebar-body--PaddingInlineStart: var(--pf-v6-c-page__sidebar-body--PaddingInlineStart--glass);
23011
23015
  --pf-v6-c-page__sidebar-body--PaddingInlineEnd: var(--pf-v6-c-page__sidebar-body--PaddingInlineEnd--glass);
23012
23016
  --pf-v6-c-page__sidebar-main--PaddingBlockEnd: var(--pf-v6-c-page__sidebar-main--PaddingBlockEnd--glass);
@@ -23022,6 +23026,7 @@ ul.pf-v6-c-list {
23022
23026
  --pf-v6-c-page__sidebar-main--BorderColor: var(--pf-v6-c-page__sidebar-main--BorderColor--glass);
23023
23027
  --pf-v6-c-page__sidebar-main--BorderRadius: var(--pf-v6-c-page__sidebar-main--BorderRadius--glass);
23024
23028
  --pf-v6-c-page__sidebar-main--BoxShadow: var(--pf-v6-c-page__sidebar-main--BoxShadow--glass);
23029
+ --pf-v6-c-page__main-container--MarginBlockStart: var(--pf-v6-c-page__main-container--MarginBlockStart--glass);
23025
23030
  }
23026
23031
  @media (min-width: 75rem) {
23027
23032
  .pf-v6-c-page {
@@ -31580,9 +31585,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
31580
31585
  --pf-v6-c-toggle-group__button--disabled--before--BorderColor: var(--pf-t--global--border--color--control--default);
31581
31586
  --pf-v6-c-toggle-group__button--disabled--disabled--before--BorderInlineStartColor: var(--pf-t--global--border--color--control--default);
31582
31587
  --pf-v6-c-toggle-group__button--disabled--ZIndex: var(--pf-t--global--z-index--xs);
31583
- --pf-v6-c-toggle-group--m-compact__button--PaddingBlockStart: 0;
31588
+ --pf-v6-c-toggle-group--m-compact__button--PaddingBlockStart: var(--pf-t--global--spacer--xs);
31584
31589
  --pf-v6-c-toggle-group--m-compact__button--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
31585
- --pf-v6-c-toggle-group--m-compact__button--PaddingBlockEnd: 0;
31590
+ --pf-v6-c-toggle-group--m-compact__button--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
31586
31591
  --pf-v6-c-toggle-group--m-compact__button--PaddingInlineStart: var(--pf-t--global--spacer--sm);
31587
31592
  --pf-v6-c-toggle-group--m-compact__button--FontSize: var(--pf-t--global--font--size--body--default);
31588
31593
  }
@@ -31597,6 +31602,14 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
31597
31602
  --pf-v6-c-toggle-group__button--PaddingInlineStart: var(--pf-v6-c-toggle-group--m-compact__button--PaddingInlineStart);
31598
31603
  --pf-v6-c-toggle-group__button--FontSize: var(--pf-v6-c-toggle-group--m-compact__button--FontSize);
31599
31604
  }
31605
+ .pf-v6-c-toggle-group.pf-m-fill .pf-v6-c-toggle-group__item {
31606
+ display: flex;
31607
+ flex-grow: 1;
31608
+ }
31609
+ .pf-v6-c-toggle-group.pf-m-fill .pf-v6-c-toggle-group__button {
31610
+ flex-basis: 100%;
31611
+ justify-content: center;
31612
+ }
31600
31613
 
31601
31614
  .pf-v6-c-toggle-group__item + .pf-v6-c-toggle-group__item {
31602
31615
  margin-inline-start: var(--pf-v6-c-toggle-group__item--item--MarginInlineStart);
@@ -38489,13 +38502,36 @@ label.pf-v6-c-tree-view__node-text {
38489
38502
  gap: var(--pf-v6-l-stack--m-gutter--Gap);
38490
38503
  }
38491
38504
 
38492
- :where(.pf-v6-theme-glass) .pf-v6-c-login, :where(.pf-v6-theme-glass) body {
38493
- background-image: url("./assets/images/glass-brand-light.jpg");
38505
+ :root:where(.pf-v6-theme-glass) body {
38506
+ background-image: url("./assets/images/PF-Bkg-Generic-Light.svg");
38494
38507
  background-repeat: no-repeat;
38495
38508
  background-attachment: fixed;
38496
38509
  background-position: center;
38497
38510
  background-size: cover;
38498
38511
  }
38499
- :where(.pf-v6-theme-glass):where(.pf-v6-theme-dark) .pf-v6-c-login, :where(.pf-v6-theme-glass):where(.pf-v6-theme-dark) body {
38500
- background-image: url("./assets/images/glass-brand-dark.jpg");
38512
+ :root:where(.pf-v6-theme-glass):where(.pf-v6-theme-dark) body {
38513
+ background-image: url("./assets/images/PF-Bkg-Generic-Dark.svg");
38514
+ }
38515
+ :root:where(.pf-v6-theme-glass):where(.pf-v6-theme-redhat) body {
38516
+ background-image: url("./assets/images/Felt-Bkg-Generic-Light.svg");
38517
+ }
38518
+ :root:where(.pf-v6-theme-glass):where(.pf-v6-theme-redhat.pf-v6-theme-dark) body {
38519
+ background-image: url("./assets/images/Felt-Bkg-Generic-Dark.svg");
38520
+ }
38521
+
38522
+ .pf-v6-c-compass {
38523
+ background-image: url("./assets/images/PF-Bkg-Generic-Light.svg");
38524
+ background-repeat: no-repeat;
38525
+ background-attachment: fixed;
38526
+ background-position: center;
38527
+ background-size: cover;
38528
+ }
38529
+ :root:where(.pf-v6-theme-dark) .pf-v6-c-compass {
38530
+ background-image: url("./assets/images/PF-Bkg-Generic-Dark.svg");
38531
+ }
38532
+ :root:where(.pf-v6-theme-redhat) .pf-v6-c-compass {
38533
+ background-image: url("./assets/images/Felt-Bkg-Generic-Light.svg");
38534
+ }
38535
+ :root:where(.pf-v6-theme-redhat.pf-v6-theme-dark) .pf-v6-c-compass {
38536
+ background-image: url("./assets/images/Felt-Bkg-Generic-Dark.svg");
38501
38537
  }