@patternfly/react-styles 6.3.1-prerelease.0 → 6.3.1-prerelease.2

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 (38) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/css/components/Accordion/accordion.css +4 -2
  3. package/css/components/Alert/alert-group.css +4 -15
  4. package/css/components/Banner/banner.css +1 -1
  5. package/css/components/Button/button.css +2 -2
  6. package/css/components/CalendarMonth/calendar-month.css +35 -4
  7. package/css/components/Card/card.css +2 -0
  8. package/css/components/CodeBlock/code-block.css +1 -1
  9. package/css/components/CodeEditor/code-editor.css +17 -2
  10. package/css/components/DatePicker/date-picker.css +3 -0
  11. package/css/components/Divider/divider.css +2 -0
  12. package/css/components/Drawer/drawer.css +5 -3
  13. package/css/components/DualListSelector/dual-list-selector.css +4 -5
  14. package/css/components/ExpandableSection/expandable-section.css +6 -2
  15. package/css/components/FormControl/form-control.css +6 -7
  16. package/css/components/Label/label.css +3 -3
  17. package/css/components/Login/login.css +1 -1
  18. package/css/components/Menu/menu.css +8 -1
  19. package/css/components/MenuToggle/menu-toggle.css +1 -1
  20. package/css/components/ModalBox/modal-box.css +1 -1
  21. package/css/components/Page/page.css +14 -5
  22. package/css/components/Page/page.d.ts +3 -0
  23. package/css/components/Page/page.js +3 -0
  24. package/css/components/Page/page.mjs +3 -0
  25. package/css/components/Pagination/pagination.css +15 -2
  26. package/css/components/Panel/panel.css +9 -2
  27. package/css/components/Popover/popover.css +1 -1
  28. package/css/components/Progress/progress.css +10 -1
  29. package/css/components/Sidebar/sidebar.css +7 -0
  30. package/css/components/Slider/slider.css +9 -0
  31. package/css/components/Switch/switch.css +7 -1
  32. package/css/components/Table/table.css +1 -1
  33. package/css/components/Tabs/tabs.css +11 -7
  34. package/css/components/ToggleGroup/toggle-group.css +18 -9
  35. package/css/components/Toolbar/toolbar.css +7 -0
  36. package/css/components/Wizard/wizard.css +4 -0
  37. package/css/components/_index.css +219 -80
  38. package/package.json +3 -3
@@ -2,6 +2,9 @@ import './page.css';
2
2
  export default {
3
3
  "button": "pf-v6-c-button",
4
4
  "dirRtl": "pf-v6-m-dir-rtl",
5
+ "drawer": "pf-v6-c-drawer",
6
+ "drawerMain": "pf-v6-c-drawer__main",
7
+ "drawerPanel": "pf-v6-c-drawer__panel",
5
8
  "masthead": "pf-v6-c-masthead",
6
9
  "mastheadToggle": "pf-v6-c-masthead__toggle",
7
10
  "modifiers": {
@@ -1,7 +1,10 @@
1
1
  .pf-v6-c-pagination {
2
2
  --pf-v6-c-pagination--inset: 0;
3
3
  --pf-v6-c-pagination--ColumnGap: var(--pf-t--global--spacer--lg);
4
- --pf-v6-c-pagination--m-page-insets--inset: var(--pf-t--global--spacer--lg);
4
+ --pf-v6-c-pagination--BorderColor: var(--pf-t--global--border--color--high-contrast);
5
+ --pf-v6-c-pagination--BorderBlockStartWidth: 0;
6
+ --pf-v6-c-pagination--BorderBlockEndWidth: 0;
7
+ --pf-v6-c-pagination--m-page-insets--inset: calc(var(--pf-t--global--spacer--lg) - var(--pf-t--global--border--width--main--default));
5
8
  --pf-v6-c-pagination__nav--Display: none;
6
9
  --pf-v6-c-pagination--m-display-summary__nav--Display: none;
7
10
  --pf-v6-c-pagination--m-display-full__nav--Display: inline-flex;
@@ -22,14 +25,17 @@
22
25
  --pf-v6-c-pagination--m-sticky--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
23
26
  --pf-v6-c-pagination--m-sticky--ZIndex: var(--pf-t--global--z-index--xs);
24
27
  --pf-v6-c-pagination--m-sticky--InsetBlockStart: 0;
28
+ --pf-v6-c-pagination--m-sticky--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
25
29
  --pf-v6-c-pagination--m-bottom--BackgroundColor: var(--pf-t--global--background--color--primary--default);
26
30
  --pf-v6-c-pagination--m-bottom--BoxShadow: var(--pf-t--global--box-shadow--sm--top);
27
31
  --pf-v6-c-pagination--m-bottom--m-sticky--BoxShadow: var(--pf-t--global--box-shadow--sm--top);
28
32
  --pf-v6-c-pagination--m-bottom--InsetBlockEnd: 0;
33
+ --pf-v6-c-pagination--m-bottom--BorderBlockStartWidth: var(--pf-t--global--border--width--high-contrast--regular);
29
34
  --pf-v6-c-pagination--m-bottom--m-sticky--PaddingBlockStart: var(--pf-t--global--spacer--sm);
30
35
  --pf-v6-c-pagination--m-bottom--m-sticky--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
31
36
  --pf-v6-c-pagination--m-bottom--m-sticky--PaddingInlineStart: var(--pf-t--global--spacer--sm);
32
37
  --pf-v6-c-pagination--m-bottom--m-sticky--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
38
+ --pf-v6-c-pagination--m-bottom--m-sticky--BorderBlockStartWidth: var(--pf-t--global--border--width--high-contrast--regular);
33
39
  --pf-v6-c-pagination--m-bottom--m-static--PaddingBlockStart: var(--pf-t--global--spacer--gap--group--vertical);
34
40
  --pf-v6-c-pagination--m-bottom--m-static--PaddingBlockEnd: 0;
35
41
  --pf-v6-c-pagination--m-bottom--m-static--PaddingInlineStart: var(--pf-t--global--spacer--sm);
@@ -44,6 +50,7 @@
44
50
  @media screen and (min-width: 48rem) {
45
51
  .pf-v6-c-pagination {
46
52
  --pf-v6-c-pagination--m-bottom--BoxShadow: none;
53
+ --pf-v6-c-pagination--m-bottom--BorderBlockStartWidth: 0;
47
54
  --pf-v6-c-pagination__page-menu--Display: var(--pf-v6-c-pagination__page-menu--md--Display);
48
55
  --pf-v6-c-pagination__nav--Display: inline-flex;
49
56
  --pf-v6-c-pagination__total-items--Display: none;
@@ -63,6 +70,9 @@
63
70
  justify-content: flex-end;
64
71
  padding-inline-start: var(--pf-v6-c-pagination--inset);
65
72
  padding-inline-end: var(--pf-v6-c-pagination--inset);
73
+ border: 0 solid var(--pf-v6-c-pagination--BorderColor);
74
+ border-block-start-width: var(--pf-v6-c-pagination--BorderBlockStartWidth);
75
+ border-block-end-width: var(--pf-v6-c-pagination--BorderBlockEndWidth);
66
76
  }
67
77
  .pf-v6-c-pagination .pf-v6-c-pagination__page-menu {
68
78
  display: var(--pf-v6-c-pagination__page-menu--Display);
@@ -70,6 +80,7 @@
70
80
  .pf-v6-c-pagination.pf-m-bottom {
71
81
  --pf-v6-c-pagination--m-sticky--BoxShadow: var(--pf-v6-c-pagination--m-bottom--m-sticky--BoxShadow);
72
82
  --pf-v6-c-pagination--m-sticky--InsetBlockStart: auto;
83
+ --pf-v6-c-pagination--BorderBlockStartWidth: var(--pf-v6-c-pagination--m-bottom--BorderBlockStartWidth);
73
84
  position: sticky;
74
85
  inset-block-end: var(--pf-v6-c-pagination--m-bottom--InsetBlockEnd);
75
86
  justify-content: center;
@@ -96,7 +107,6 @@
96
107
  }
97
108
  @media screen and (min-width: 48rem) {
98
109
  .pf-v6-c-pagination.pf-m-bottom {
99
- --pf-v6-c-pagination--m-bottom--BorderBlockStartWidth: 0;
100
110
  --pf-v6-c-pagination--m-bottom--MarginBlockStart: 0;
101
111
  --pf-v6-c-pagination--m-bottom--InsetBlockEnd: auto;
102
112
  position: relative;
@@ -128,10 +138,13 @@
128
138
  padding-block-end: var(--pf-v6-c-pagination--m-bottom--m-static--PaddingBlockEnd);
129
139
  padding-inline-start: var(--pf-v6-c-pagination--m-bottom--m-static--PaddingInlineStart);
130
140
  padding-inline-end: var(--pf-v6-c-pagination--m-bottom--m-static--PaddingInlineEnd);
141
+ border: 0;
131
142
  box-shadow: none;
132
143
  }
133
144
  .pf-v6-c-pagination.pf-m-sticky {
134
145
  --pf-v6-c-pagination--m-bottom--InsetBlockEnd: 0;
146
+ --pf-v6-c-pagination--BorderBlockEndWidth: var(--pf-v6-c-pagination--m-sticky--BorderBlockEndWidth);
147
+ --pf-v6-c-pagination--m-bottom--BorderBlockStartWidth: var(--pf-v6-c-pagination--m-bottom--m-sticky--BorderBlockStartWidth);
135
148
  position: sticky;
136
149
  inset-block-start: var(--pf-v6-c-pagination--m-sticky--InsetBlockStart);
137
150
  z-index: var(--pf-v6-c-pagination--m-sticky--ZIndex);
@@ -8,12 +8,12 @@
8
8
  --pf-v6-c-panel--before--BorderWidth: 0;
9
9
  --pf-v6-c-panel--before--BorderColor: var(--pf-t--global--border--color--high-contrast);
10
10
  --pf-v6-c-panel--m-secondary--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
11
- --pf-v6-c-panel--m-secondary--before--BorderWidth: var(--pf-t--global--border--width--box--default);
11
+ --pf-v6-c-panel--m-secondary--before--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
12
12
  --pf-v6-c-panel--m-bordered--before--BorderWidth: var(--pf-t--global--border--width--box--default);
13
13
  --pf-v6-c-panel--m-bordered--before--BorderColor: var(--pf-t--global--border--color--default);
14
14
  --pf-v6-c-panel--m-raised--BoxShadow: var(--pf-t--global--box-shadow--md);
15
15
  --pf-v6-c-panel--m-raised--BackgroundColor: var(--pf-t--global--background--color--floating--default);
16
- --pf-v6-c-panel--m-raised--before--BorderWidth: var(--pf-t--global--border--width--box--default);
16
+ --pf-v6-c-panel--m-raised--before--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
17
17
  --pf-v6-c-panel__header--PaddingBlockStart: var(--pf-t--global--spacer--md);
18
18
  --pf-v6-c-panel__header--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
19
19
  --pf-v6-c-panel__header--PaddingBlockEnd: var(--pf-t--global--spacer--md);
@@ -29,11 +29,15 @@
29
29
  --pf-v6-c-panel__footer--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
30
30
  --pf-v6-c-panel__footer--PaddingInlineStart: var(--pf-t--global--spacer--lg);
31
31
  --pf-v6-c-panel__footer--BoxShadow: none;
32
+ --pf-v6-c-panel__footer--BorderColor: transparent;
33
+ --pf-v6-c-panel__footer--BorderWidth: 0;
32
34
  --pf-v6-c-panel--m-scrollable__main--MaxHeight: 18.75rem;
33
35
  --pf-v6-c-panel--m-scrollable__main--Overflow: auto;
34
36
  --pf-v6-c-panel--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--md--top);
35
37
  --pf-v6-c-panel--m-scrollable__footer--PaddingBlockStart: var(--pf-t--global--spacer--md);
36
38
  --pf-v6-c-panel--m-scrollable__footer--PaddingBlockEnd: var(--pf-t--global--spacer--md);
39
+ --pf-v6-c-panel--m-scrollable__footer--BorderColor: var(--pf-t--global--border--color--high-contrast);
40
+ --pf-v6-c-panel--m-scrollable__footer--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
37
41
  }
38
42
 
39
43
  .pf-v6-c-panel {
@@ -72,6 +76,8 @@
72
76
  --pf-v6-c-panel__footer--BoxShadow: var(--pf-v6-c-panel--m-scrollable__footer--BoxShadow);
73
77
  --pf-v6-c-panel__footer--PaddingBlockStart: var(--pf-v6-c-panel--m-scrollable__footer--PaddingBlockStart);
74
78
  --pf-v6-c-panel__footer--PaddingBlockEnd: var(--pf-v6-c-panel--m-scrollable__footer--PaddingBlockEnd);
79
+ --pf-v6-c-panel__footer--BorderColor: var(--pf-v6-c-panel--m-scrollable__footer--BorderColor);
80
+ --pf-v6-c-panel__footer--BorderWidth: var(--pf-v6-c-panel--m-scrollable__footer--BorderWidth);
75
81
  }
76
82
 
77
83
  .pf-v6-c-panel__header {
@@ -98,5 +104,6 @@
98
104
  padding-block-end: var(--pf-v6-c-panel__footer--PaddingBlockEnd);
99
105
  padding-inline-start: var(--pf-v6-c-panel__footer--PaddingInlineStart);
100
106
  padding-inline-end: var(--pf-v6-c-panel__footer--PaddingInlineEnd);
107
+ border-block-start: var(--pf-v6-c-panel__footer--BorderWidth) solid var(--pf-v6-c-panel__footer--BorderColor);
101
108
  box-shadow: var(--pf-v6-c-panel__footer--BoxShadow);
102
109
  }
@@ -3,7 +3,7 @@
3
3
  --pf-v6-c-popover--MinWidth: calc(var(--pf-v6-c-popover__content--PaddingInlineStart) + var(--pf-v6-c-popover__content--PaddingInlineEnd) + 18.75rem);
4
4
  --pf-v6-c-popover--MaxWidth: calc(var(--pf-v6-c-popover__content--PaddingInlineStart) + var(--pf-v6-c-popover__content--PaddingInlineEnd) + 18.75rem);
5
5
  --pf-v6-c-popover--BoxShadow: var(--pf-t--global--box-shadow--md);
6
- --pf-v6-c-popover--BorderWidth: var(--pf-t--global--high-contrast--border--width--regular);
6
+ --pf-v6-c-popover--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
7
7
  --pf-v6-c-popover--BorderColor: var(--pf-t--global--border--color--high-contrast);
8
8
  --pf-v6-c-popover--BorderRadius: var(--pf-t--global--border--radius--medium);
9
9
  --pf-v6-c-popover--m-danger__title-icon--Color: var(--pf-t--global--icon--color--status--danger--default);
@@ -4,12 +4,14 @@
4
4
  --pf-v6-c-progress__bar--BackgroundColor: var(--pf-t--global--color--nonstatus--gray--default);
5
5
  --pf-v6-c-progress__bar--BorderRadius: var(--pf-t--global--border--radius--medium);
6
6
  --pf-v6-c-progress__bar--BorderColor: var(--pf-t--global--border--color--high-contrast);
7
- --pf-v6-c-progress__bar--BorderWidth: var(--pf-t--global--border--width--regular);
7
+ --pf-v6-c-progress__bar--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
8
8
  --pf-v6-c-progress__measure--m-static-width--MinWidth: 4.5ch;
9
9
  --pf-v6-c-progress__status--Gap: var(--pf-t--global--spacer--sm);
10
10
  --pf-v6-c-progress__status-icon--Color: var(--pf-t--global--icon--color--regular);
11
11
  --pf-v6-c-progress__indicator--Height: var(--pf-v6-c-progress__bar--Height);
12
12
  --pf-v6-c-progress__indicator--BackgroundColor: var(--pf-t--global--color--brand--default);
13
+ --pf-v6-c-progress__indicator--BorderWidth: var(--pf-t--global--border--width--high-contrast--extra-strong);
14
+ --pf-v6-c-progress__indicator--BorderColor: transparent;
13
15
  --pf-v6-c-progress__helper-text--MarginBlockStart: calc(var(--pf-t--global--spacer--sm) - var(--pf-v6-c-progress--GridGap));
14
16
  --pf-v6-c-progress--m-success__indicator--BackgroundColor: var(--pf-t--global--color--status--success--default);
15
17
  --pf-v6-c-progress--m-warning__indicator--BackgroundColor: var(--pf-t--global--color--status--warning--default);
@@ -180,6 +182,13 @@
180
182
  height: var(--pf-v6-c-progress__indicator--Height);
181
183
  background-color: var(--pf-v6-c-progress__indicator--BackgroundColor);
182
184
  }
185
+ .pf-v6-c-progress__indicator::before {
186
+ position: absolute;
187
+ inset: 0;
188
+ content: "";
189
+ border: var(--pf-v6-c-progress__indicator--BorderWidth) solid var(--pf-v6-c-progress__indicator--BorderColor);
190
+ border-radius: var(--pf-v6-c-progress__bar--BorderRadius);
191
+ }
183
192
 
184
193
  .pf-v6-c-progress__helper-text {
185
194
  grid-row: 3/4;
@@ -39,6 +39,7 @@
39
39
  --pf-v6-c-sidebar--m-stack__panel--Position: sticky;
40
40
  --pf-v6-c-sidebar--m-stack__panel--InsetBlockStart: 0;
41
41
  --pf-v6-c-sidebar--m-stack__panel--BoxShadow: var(--pf-v6-c-sidebar__panel--BoxShadow--base);
42
+ --pf-v6-c-sidebar--m-stack__panel--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
42
43
  --pf-v6-c-sidebar--m-stack--m-panel-right__panel--Order: -1;
43
44
  --pf-v6-c-sidebar--m-split__main--AlignItems: flex-start;
44
45
  --pf-v6-c-sidebar--m-split__main--FlexDirection: row;
@@ -47,6 +48,8 @@
47
48
  --pf-v6-c-sidebar--m-split--m-panel-right__panel--Order: 1;
48
49
  --pf-v6-c-sidebar--m-split__main--m-border--before--Display: block;
49
50
  --pf-v6-c-sidebar__panel--FlexBasis--base: auto;
51
+ --pf-v6-c-sidebar__panel--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
52
+ --pf-v6-c-sidebar__panel--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
50
53
  --pf-v6-c-sidebar__panel--BoxShadow--base: var(--pf-t--global--box-shadow--md--bottom);
51
54
  --pf-v6-c-sidebar__panel--BoxShadow: var(--pf-v6-c-sidebar__panel--BoxShadow--base);
52
55
  --pf-v6-c-sidebar__panel--InsetBlockStart: 0;
@@ -75,6 +78,7 @@
75
78
  --pf-v6-c-sidebar__main--FlexDirection: var(--pf-v6-c-sidebar__main--md--FlexDirection);
76
79
  --pf-v6-c-sidebar__main--AlignItems: var(--pf-v6-c-sidebar__main--md--AlignItems);
77
80
  --pf-v6-c-sidebar__main--m-border--before--Display: var(--pf-v6-c-sidebar__main--m-border--before--md--Display);
81
+ --pf-v6-c-sidebar__panel--BorderBlockEndWidth: 0;
78
82
  --pf-v6-c-sidebar__panel--BoxShadow: none;
79
83
  --pf-v6-c-sidebar__panel--FlexBasis: var(--pf-v6-c-sidebar__panel--md--FlexBasis);
80
84
  --pf-v6-c-sidebar__panel--InsetBlockStart: var(--pf-v6-c-sidebar__panel--md--InsetBlockStart);
@@ -104,6 +108,7 @@
104
108
  --pf-v6-c-sidebar__main--AlignItems: var(--pf-v6-c-sidebar--m-stack__main--AlignItems);
105
109
  --pf-v6-c-sidebar__panel--Position: var(--pf-v6-c-sidebar--m-stack__panel--Position);
106
110
  --pf-v6-c-sidebar__panel--InsetBlockStart: var(--pf-v6-c-sidebar--m-stack__panel--InsetBlockStart);
111
+ --pf-v6-c-sidebar__panel--BorderBlockEndWidth: var(--pf-v6-c-sidebar--m-stack__panel--BorderBlockEndWidth);
107
112
  --pf-v6-c-sidebar__panel--BoxShadow: var(--pf-v6-c-sidebar--m-stack__panel--BoxShadow);
108
113
  --pf-v6-c-sidebar__panel--FlexBasis: var(--pf-v6-c-sidebar__panel--m-stack--FlexBasis);
109
114
  --pf-v6-c-sidebar__main--m-border--before--Display: none;
@@ -114,6 +119,7 @@
114
119
  --pf-v6-c-sidebar__main--AlignItems: var(--pf-v6-c-sidebar--m-split__main--AlignItems);
115
120
  --pf-v6-c-sidebar__panel--Position: var(--pf-v6-c-sidebar--m-split__panel--Position);
116
121
  --pf-v6-c-sidebar__panel--InsetBlockStart: var(--pf-v6-c-sidebar--m-split__panel--InsetBlockStart);
122
+ --pf-v6-c-sidebar__panel--BorderBlockEndWidth: 0;
117
123
  --pf-v6-c-sidebar__panel--BoxShadow: none;
118
124
  --pf-v6-c-sidebar__panel--FlexBasis: var(--pf-v6-c-sidebar__panel--m-split--FlexBasis);
119
125
  --pf-v6-c-sidebar__main--m-border--before--Display: var(--pf-v6-c-sidebar--m-split__main--m-border--before--Display);
@@ -145,6 +151,7 @@
145
151
  padding-inline-start: var(--pf-v6-c-sidebar__panel--PaddingInlineStart);
146
152
  padding-inline-end: var(--pf-v6-c-sidebar__panel--PaddingInlineEnd);
147
153
  background-color: var(--pf-v6-c-sidebar__panel--BackgroundColor);
154
+ border-block-end: var(--pf-v6-c-sidebar__panel--BorderBlockEndWidth) solid var(--pf-v6-c-sidebar__panel--BorderBlockEndColor);
148
155
  box-shadow: var(--pf-v6-c-sidebar__panel--BoxShadow);
149
156
  }
150
157
  .pf-v6-c-sidebar__panel.pf-m-padding {
@@ -6,6 +6,8 @@
6
6
  --pf-v6-c-slider__rail-track--Height: 0.25rem;
7
7
  --pf-v6-c-slider__rail-track--before--base--BackgroundColor: var(--pf-t--global--color--nonstatus--gray--default);
8
8
  --pf-v6-c-slider__rail-track--before--fill--BackgroundColor: var(--pf-t--global--border--color--hover);
9
+ --pf-v6-c-slider__rail-track--before--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
10
+ --pf-v6-c-slider__rail-track--before--BorderColor: transparent;
9
11
  --pf-v6-c-slider__rail-track--before--BorderRadius: var(--pf-t--global--border--radius--tiny);
10
12
  --pf-v6-c-slider__rail-track--before--fill--BackgroundColor--gradient-stop: var(--pf-v6-c-slider--value);
11
13
  --pf-v6-c-slider__steps--FontSize: var(--pf-t--global--font--size--sm);
@@ -15,6 +17,8 @@
15
17
  --pf-v6-c-slider__step-tick--Height: 0.25rem;
16
18
  --pf-v6-c-slider__step-tick--BackgroundColor: var(--pf-t--global--icon--color--nonstatus--on-gray--default);
17
19
  --pf-v6-c-slider__step-tick--TranslateX: -50%;
20
+ --pf-v6-c-slider__step-tick--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
21
+ --pf-v6-c-slider__step-tick--BorderColor: transparent;
18
22
  --pf-v6-c-slider__step-tick--BorderRadius: var(--pf-t--global--border--radius--sharp);
19
23
  --pf-v6-c-slider__step--m-active__slider-tick--BackgroundColor: var(--pf-t--global--icon--color--on-brand--default);
20
24
  --pf-v6-c-slider__step--first-child__step-tick--TranslateX: 0;
@@ -30,6 +34,8 @@
30
34
  --pf-v6-c-slider__thumb--BackgroundColor: var(--pf-t--global--color--brand--default);
31
35
  --pf-v6-c-slider__thumb--TranslateX: -50%;
32
36
  --pf-v6-c-slider__thumb--TranslateY: -50%;
37
+ --pf-v6-c-slider__thumb--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
38
+ --pf-v6-c-slider__thumb--BorderColor: transparent;
33
39
  --pf-v6-c-slider__thumb--BorderRadius: var(--pf-t--global--border--radius--large);
34
40
  --pf-v6-c-slider__thumb--BoxShadow--base:
35
41
  0 0 0 2px var(--pf-t--global--background--color--primary--default),
@@ -99,6 +105,7 @@
99
105
  inset: 0;
100
106
  content: "";
101
107
  background: linear-gradient(to var(--pf-v6-c-slider__rail-track--before--fill--direction), var(--pf-v6-c-slider__rail-track--before--fill--BackgroundColor), var(--pf-v6-c-slider__rail-track--before--fill--BackgroundColor) var(--pf-v6-c-slider__rail-track--before--fill--BackgroundColor--gradient-stop), var(--pf-v6-c-slider__rail-track--before--base--BackgroundColor) var(--pf-v6-c-slider__rail-track--before--fill--BackgroundColor--gradient-stop));
108
+ border: var(--pf-v6-c-slider__rail-track--before--BorderWidth) solid var(--pf-v6-c-slider__rail-track--before--BorderColor);
102
109
  border-radius: var(--pf-v6-c-slider__rail-track--before--BorderRadius);
103
110
  }
104
111
 
@@ -134,6 +141,7 @@
134
141
  width: var(--pf-v6-c-slider__step-tick--Width);
135
142
  height: var(--pf-v6-c-slider__step-tick--Height);
136
143
  background-color: var(--pf-v6-c-slider__step-tick--BackgroundColor);
144
+ border: var(--pf-v6-c-slider__step-tick--BorderWidth) solid var(--pf-v6-c-slider__step-tick--BorderColor);
137
145
  border-radius: var(--pf-v6-c-slider__step-tick--BorderRadius);
138
146
  }
139
147
  :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-slider__step-tick {
@@ -159,6 +167,7 @@
159
167
  height: var(--pf-v6-c-slider__thumb--Height);
160
168
  cursor: pointer;
161
169
  background-color: var(--pf-v6-c-slider__thumb--BackgroundColor);
170
+ border: var(--pf-v6-c-slider__thumb--BorderWidth) solid var(--pf-v6-c-slider__thumb--BorderColor);
162
171
  border-radius: var(--pf-v6-c-slider__thumb--BorderRadius);
163
172
  box-shadow: var(--pf-v6-c-slider__thumb--BoxShadow);
164
173
  }
@@ -10,11 +10,13 @@
10
10
  --pf-v6-c-switch--Height: auto;
11
11
  --pf-v6-c-switch__input--checked__toggle--BackgroundColor: var(--pf-t--global--color--brand--default);
12
12
  --pf-v6-c-switch__input--checked__toggle--before--TranslateX: calc(100% + var(--pf-v6-c-switch__toggle-icon--Offset));
13
- --pf-v6-c-switch__input--checked__toggle--BorderWidth: 0;
13
+ --pf-v6-c-switch__input--checked__toggle--BorderColor: transparent;
14
+ --pf-v6-c-switch__input--checked__toggle--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
14
15
  --pf-v6-c-switch__input--checked__label--Color: var(--pf-t--global--text--color--regular);
15
16
  --pf-v6-c-switch__input--not-checked__label--Color: var(--pf-t--global--text--color--subtle);
16
17
  --pf-v6-c-switch__input--disabled__label--Color: var(--pf-t--global--text--color--disabled);
17
18
  --pf-v6-c-switch__input--disabled__toggle--BackgroundColor: var(--pf-t--global--background--color--disabled--default);
19
+ --pf-v6-c-switch__input--disabled__toggle--BorderColor: var(--pf-t--global--border--color--high-contrast);
18
20
  --pf-v6-c-switch__input--checked__toggle--before--BackgroundColor: var(--pf-t--global--icon--color--inverse);
19
21
  --pf-v6-c-switch__input--not-checked__toggle--before--BackgroundColor: var(--pf-t--global--icon--color--subtle);
20
22
  --pf-v6-c-switch__input--disabled__toggle--before--BackgroundColor: var(--pf-t--global--icon--color--on-disabled);
@@ -29,6 +31,7 @@
29
31
  --pf-v6-c-switch__toggle--before--Width: calc(var(--pf-v6-c-switch--FontSize) - var(--pf-v6-c-switch__toggle-icon--Offset));
30
32
  --pf-v6-c-switch__toggle--before--Height: var(--pf-v6-c-switch__toggle--before--Width);
31
33
  --pf-v6-c-switch__toggle--before--InsetInlineStart: calc((var(--pf-v6-c-switch__toggle--Height) - var(--pf-v6-c-switch__toggle--before--Height)) / 2);
34
+ --pf-v6-c-switch__toggle--before--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
32
35
  --pf-v6-c-switch__toggle--before--BorderRadius: var(--pf-t--global--border--radius--large);
33
36
  --pf-v6-c-switch__toggle--before--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
34
37
  --pf-v6-c-switch__toggle--before--TransitionDuration: var(--pf-t--global--motion--duration--md);
@@ -70,6 +73,7 @@
70
73
  }
71
74
  .pf-v6-c-switch__input:checked ~ .pf-v6-c-switch__toggle {
72
75
  --pf-v6-c-switch__toggle--BorderWidth: var(--pf-v6-c-switch__input--checked__toggle--BorderWidth);
76
+ --pf-v6-c-switch__toggle--BorderColor: var(--pf-v6-c-switch__input--checked__toggle--BorderColor);
73
77
  background-color: var(--pf-v6-c-switch__input--checked__toggle--BackgroundColor);
74
78
  }
75
79
  .pf-v6-c-switch__input:checked ~ .pf-v6-c-switch__toggle::before {
@@ -95,6 +99,7 @@
95
99
  }
96
100
  .pf-v6-c-switch__input:disabled ~ .pf-v6-c-switch__toggle {
97
101
  --pf-v6-c-switch__toggle-icon--Color: var(--pf-v6-c-switch__input--disabled__toggle-icon--Color);
102
+ --pf-v6-c-switch__toggle--BorderColor: var(--pf-v6-c-switch__input--disabled__toggle--BorderColor);
98
103
  cursor: not-allowed;
99
104
  background-color: var(--pf-v6-c-switch__input--disabled__toggle--BackgroundColor);
100
105
  }
@@ -119,6 +124,7 @@
119
124
  height: var(--pf-v6-c-switch__toggle--before--Height);
120
125
  content: "";
121
126
  background-color: var(--pf-v6-c-switch__input--not-checked__toggle--before--BackgroundColor);
127
+ border: var(--pf-v6-c-switch__toggle--before--BorderWidth) solid transparent;
122
128
  border-radius: var(--pf-v6-c-switch__toggle--before--BorderRadius);
123
129
  transition: var(--pf-v6-c-switch__toggle--before--Transition);
124
130
  transform: translateY(-50%);
@@ -121,7 +121,7 @@
121
121
  --pf-v6-c-table__compound-expansion-toggle__button--hover--after--BorderBlockStartWidth: var(--pf-t--global--border--width--strong);
122
122
  --pf-v6-c-table__compound-expansion-toggle--m-expanded__button--after--BorderBlockStartWidth: var(--pf-t--global--border--width--strong);
123
123
  --pf-v6-c-table--compound-expansion--m-expanded--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
124
- --pf-v6-c-table--compound-expansion--m-expanded--BorderWidth: var(--pf-t--global--high-contrast--border--width--regular);
124
+ --pf-v6-c-table--compound-expansion--m-expanded--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
125
125
  --pf-v6-c-table--m-compact__th--PaddingBlockStart: calc(var(--pf-t--global--spacer--sm) + var(--pf-t--global--spacer--xs));
126
126
  --pf-v6-c-table--m-compact__th--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
127
127
  --pf-v6-c-table--m-compact--cell--PaddingBlockStart: var(--pf-t--global--spacer--sm);
@@ -18,7 +18,7 @@
18
18
  --pf-v6-c-tabs--before--BorderBlockEndWidth: var(--pf-v6-c-tabs--before--border-width--base);
19
19
  --pf-v6-c-tabs--before--BorderInlineStartWidth: 0;
20
20
  --pf-v6-c-tabs--m-vertical--inset: var(--pf-t--global--spacer--sm);
21
- --pf-v6-c-tabs--m-page-insets--inset: var(--pf-t--global--spacer--md);
21
+ --pf-v6-c-tabs--m-page-insets--inset: calc(var(--pf-t--global--spacer--lg) - var(--pf-t--global--border--width--main--default));
22
22
  --pf-v6-c-tabs--m-vertical--Width: 100%;
23
23
  --pf-v6-c-tabs--m-vertical--MaxWidth: 15.625rem;
24
24
  --pf-v6-c-tabs--m-vertical--m-box--inset: var(--pf-t--global--spacer--md);
@@ -85,11 +85,15 @@
85
85
  --pf-v6-c-tabs__link--before--BorderInlineEndWidth: 0;
86
86
  --pf-v6-c-tabs__link--before--BorderBlockEndWidth: 0;
87
87
  --pf-v6-c-tabs__link--before--BorderInlineStartWidth: 0;
88
- --pf-v6-c-tabs__link--before--InsetInlineStart: calc(var(--pf-v6-c-tabs__link--before--border-width--base) * -1);
88
+ --pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartColor: var(--pf-t--global--border--color--high-contrast);
89
+ --pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartWidth: var(--pf-t--global--border--width--high-contrast--regular);
90
+ --pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndColor: var(--pf-t--global--border--color--high-contrast);
91
+ --pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
89
92
  --pf-v6-c-tabs__link--disabled--before--BorderInlineEndWidth: 0;
90
93
  --pf-v6-c-tabs__link--disabled--before--BorderBlockEndWidth: var(--pf-v6-c-tabs--before--border-width--base);
91
94
  --pf-v6-c-tabs__link--disabled--before--BorderInlineStartWidth: 0;
92
95
  --pf-v6-c-tabs__link--after--InsetBlockStart: auto;
96
+ --pf-v6-c-tabs__link--after--InsetInlineStart: 0;
93
97
  --pf-v6-c-tabs__link--after--InsetInlineEnd: 0;
94
98
  --pf-v6-c-tabs__link--after--InsetBlockEnd: 0;
95
99
  --pf-v6-c-tabs__link--after--BorderColor: var(--pf-t--global--border--color--default);
@@ -245,6 +249,10 @@
245
249
  .pf-v6-c-tabs.pf-m-box .pf-v6-c-tabs__item.pf-m-current {
246
250
  --pf-v6-c-tabs__link--BackgroundColor: var(--pf-v6-c-tabs__item--m-current__link--BackgroundColor);
247
251
  --pf-v6-c-tabs__link--before--BorderBlockEndColor: var(--pf-v6-c-tabs__link--BackgroundColor);
252
+ --pf-v6-c-tabs__link--before--BorderInlineStartColor: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartColor);
253
+ --pf-v6-c-tabs__link--before--BorderInlineStartWidth: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartWidth);
254
+ --pf-v6-c-tabs__link--before--BorderInlineEndColor: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndColor);
255
+ --pf-v6-c-tabs__link--before--BorderInlineEndWidth: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndWidth);
248
256
  }
249
257
  .pf-v6-c-tabs.pf-m-box.pf-m-scrollable .pf-v6-c-tabs__item.pf-m-current:first-child .pf-v6-c-tabs__link::before {
250
258
  inset-inline-start: calc(var(--pf-v6-c-tabs__link--before--border-width--base) * -1);
@@ -252,9 +260,6 @@
252
260
  .pf-v6-c-tabs.pf-m-box.pf-m-scrollable .pf-v6-c-tabs__scroll-button:nth-of-type(2)::before {
253
261
  inset-inline-start: calc(var(--pf-v6-c-tabs__link--before--border-width--base) * -1);
254
262
  }
255
- .pf-v6-c-tabs.pf-m-box .pf-v6-c-tabs__item.pf-m-current + .pf-v6-c-tabs__item {
256
- --pf-v6-c-tabs__link--before--InsetInlineStart: 0;
257
- }
258
263
  .pf-v6-c-tabs.pf-m-box.pf-m-secondary {
259
264
  --pf-v6-c-tabs__item--BackgroundColor: var(--pf-v6-c-tabs--m-box--m-secondary__item--BackgroundColor);
260
265
  --pf-v6-c-tabs__item--m-current--BackgroundColor: var(--pf-v6-c-tabs--m-box--m-secondary__item--m-current--BackgroundColor);
@@ -272,7 +277,6 @@
272
277
  --pf-v6-c-tabs__item--PaddingInlineEnd: var(--pf-v6-c-tabs--m-vertical__item--PaddingInlineEnd);
273
278
  --pf-v6-c-tabs__link--PaddingInlineStart: var(--pf-v6-c-tabs--m-vertical__link--PaddingInlineStart);
274
279
  --pf-v6-c-tabs__link--PaddingInlineEnd: var(--pf-v6-c-tabs--m-vertical__link--PaddingInlineEnd);
275
- --pf-v6-c-tabs__link--before--InsetInlineStart: 0;
276
280
  --pf-v6-c-tabs__link--disabled--before--BorderBlockEndWidth: 0;
277
281
  --pf-v6-c-tabs__link--disabled--before--BorderInlineStartWidth: var(--pf-v6-c-tabs--before--border-width--base);
278
282
  --pf-v6-c-tabs__link--after--InsetBlockStart: 0;
@@ -572,7 +576,7 @@
572
576
  .pf-v6-c-tabs__item.pf-m-action::after, .pf-v6-c-tabs__link::after {
573
577
  inset-block-start: var(--pf-v6-c-tabs__link--after--InsetBlockStart);
574
578
  inset-block-end: var(--pf-v6-c-tabs__link--after--InsetBlockEnd);
575
- inset-inline-start: var(--pf-v6-c-tabs__link--before--InsetInlineStart);
579
+ inset-inline-start: var(--pf-v6-c-tabs__link--before--InsetInlineStart, var(--pf-v6-c-tabs__link--after--InsetInlineStart));
576
580
  inset-inline-end: var(--pf-v6-c-tabs__link--after--InsetInlineEnd);
577
581
  border-color: var(--pf-v6-c-tabs__link--after--BorderColor);
578
582
  border-block-start-width: var(--pf-v6-c-tabs__link--after--BorderBlockStartWidth);
@@ -11,6 +11,7 @@
11
11
  --pf-v6-c-toggle-group__button--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
12
12
  --pf-v6-c-toggle-group__button--hover--ZIndex: var(--pf-t--global--z-index--xs);
13
13
  --pf-v6-c-toggle-group__button--hover--before--BorderColor: var(--pf-t--global--border--color--default);
14
+ --pf-v6-c-toggle-group__button--hover--after--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
14
15
  --pf-v6-c-toggle-group__button--before--BorderWidth: var(--pf-t--global--border--width--control--default);
15
16
  --pf-v6-c-toggle-group__button--before--BorderColor: var(--pf-t--global--border--color--default);
16
17
  --pf-v6-c-toggle-group__item--item--MarginInlineStart: calc(-1 * var(--pf-t--global--border--width--control--default));
@@ -22,12 +23,13 @@
22
23
  --pf-v6-c-toggle-group__button--m-selected--BackgroundColor: var(--pf-t--global--color--brand--default);
23
24
  --pf-v6-c-toggle-group__button--m-selected--Color: var(--pf-t--global--text--color--on-brand--default);
24
25
  --pf-v6-c-toggle-group__button--m-selected--before--BorderColor: var(--pf-t--global--border--color--clicked);
25
- --pf-v6-c-toggle-group__button--m-selected-selected--before--BorderInlineStartColor: var(--pf-t--global--border--color--default);
26
+ --pf-v6-c-toggle-group__button--m-selected-selected--before--BorderInlineStartColor: var(--pf-t--global--border--color--alt);
26
27
  --pf-v6-c-toggle-group__button--m-selected--ZIndex: var(--pf-t--global--z-index--xs);
28
+ --pf-v6-c-toggle-group__button--m-selected--after--BorderWidth: var(--pf-t--global--border--width--high-contrast--strong);
27
29
  --pf-v6-c-toggle-group__button--disabled--BackgroundColor: var(--pf-t--global--background--color--disabled--default);
28
30
  --pf-v6-c-toggle-group__button--disabled--Color: var(--pf-t--global--text--color--on-disabled);
29
31
  --pf-v6-c-toggle-group__button--disabled--before--BorderColor: var(--pf-t--global--border--color--disabled);
30
- --pf-v6-c-toggle-group__button--disabled-disabled--before--BorderInlineStartColor: var(--pf-t--global--border--color--default);
32
+ --pf-v6-c-toggle-group__button--disabled-disabled--before--BorderInlineStartColor: var(--pf-t--global--border--color--disabled);
31
33
  --pf-v6-c-toggle-group__button--disabled--ZIndex: var(--pf-t--global--z-index--xs);
32
34
  --pf-v6-c-toggle-group--m-compact__button--PaddingBlockStart: 0;
33
35
  --pf-v6-c-toggle-group--m-compact__button--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
@@ -50,11 +52,11 @@
50
52
  .pf-v6-c-toggle-group__item + .pf-v6-c-toggle-group__item {
51
53
  margin-inline-start: var(--pf-v6-c-toggle-group__item--item--MarginInlineStart);
52
54
  }
53
- .pf-v6-c-toggle-group__item:first-child .pf-v6-c-toggle-group__button, .pf-v6-c-toggle-group__item:first-child .pf-v6-c-toggle-group__button::before {
55
+ .pf-v6-c-toggle-group__item:first-child .pf-v6-c-toggle-group__button {
54
56
  border-start-start-radius: var(--pf-v6-c-toggle-group__item--first-child__button--BorderStartStartRadius);
55
57
  border-end-start-radius: var(--pf-v6-c-toggle-group__item--first-child__button--BorderEndStartRadius);
56
58
  }
57
- .pf-v6-c-toggle-group__item:last-child .pf-v6-c-toggle-group__button, .pf-v6-c-toggle-group__item:last-child .pf-v6-c-toggle-group__button::before {
59
+ .pf-v6-c-toggle-group__item:last-child .pf-v6-c-toggle-group__button {
58
60
  border-start-end-radius: var(--pf-v6-c-toggle-group__item--last-child__button--BorderStartEndRadius);
59
61
  border-end-end-radius: var(--pf-v6-c-toggle-group__item--last-child__button--BorderEndEndRadius);
60
62
  }
@@ -73,25 +75,31 @@
73
75
  background-color: var(--pf-v6-c-toggle-group__button--BackgroundColor);
74
76
  border: 0;
75
77
  }
76
- .pf-v6-c-toggle-group__button::before {
78
+ .pf-v6-c-toggle-group__button::before, .pf-v6-c-toggle-group__button::after {
77
79
  position: absolute;
78
- inset-block-start: 0;
79
- inset-block-end: 0;
80
- inset-inline-start: 0;
81
- inset-inline-end: 0;
80
+ inset: 0;
82
81
  pointer-events: none;
83
82
  content: "";
84
83
  border-style: solid;
84
+ border-radius: inherit;
85
+ }
86
+ .pf-v6-c-toggle-group__button::before {
85
87
  border-width: var(--pf-v6-c-toggle-group__button--before--BorderWidth);
86
88
  border-block-start-color: var(--pf-v6-c-toggle-group__button--before--BorderBlockStartColor, var(--pf-v6-c-toggle-group__button--before--BorderColor));
87
89
  border-block-end-color: var(--pf-v6-c-toggle-group__button--before--BorderBlockEndColor, var(--pf-v6-c-toggle-group__button--before--BorderColor));
88
90
  border-inline-start-color: var(--pf-v6-c-toggle-group__button--before--BorderInlineStartColor, var(--pf-v6-c-toggle-group__button--before--BorderColor));
89
91
  border-inline-end-color: var(--pf-v6-c-toggle-group__button--before--BorderInlineEndColor, var(--pf-v6-c-toggle-group__button--before--BorderColor));
90
92
  }
93
+ .pf-v6-c-toggle-group__button::after {
94
+ inset: var(--pf-v6-c-toggle-group__button--before--BorderWidth);
95
+ border-color: var(--pf-v6-c-toggle-group__button--after--BorderColor, transparent);
96
+ border-width: var(--pf-v6-c-toggle-group__button--after--BorderWidth, 0);
97
+ }
91
98
  .pf-v6-c-toggle-group__button:is(:hover, :focus) {
92
99
  --pf-v6-c-toggle-group__button--BackgroundColor: var(--pf-v6-c-toggle-group__button--hover--BackgroundColor);
93
100
  --pf-v6-c-toggle-group__button--ZIndex: var(--pf-v6-c-toggle-group__button--hover--ZIndex);
94
101
  --pf-v6-c-toggle-group__button--before--BorderColor: var(--pf-v6-c-toggle-group__button--hover--before--BorderColor);
102
+ --pf-v6-c-toggle-group__button--after--BorderWidth: var(--pf-v6-c-toggle-group__button--hover--after--BorderWidth);
95
103
  text-decoration-line: none;
96
104
  }
97
105
  .pf-v6-c-toggle-group__button.pf-m-selected {
@@ -99,6 +107,7 @@
99
107
  --pf-v6-c-toggle-group__button--Color: var(--pf-v6-c-toggle-group__button--m-selected--Color, inherit);
100
108
  --pf-v6-c-toggle-group__button--ZIndex: var(--pf-v6-c-toggle-group__button--m-selected--ZIndex);
101
109
  --pf-v6-c-toggle-group__button--before--BorderColor: var(--pf-v6-c-toggle-group__button--m-selected--before--BorderColor);
110
+ --pf-v6-c-toggle-group__button--after--BorderWidth: var(--pf-v6-c-toggle-group__button--m-selected--after--BorderWidth);
102
111
  }
103
112
  .pf-v6-c-toggle-group__button:is(:disabled, .pf-m-disabled) {
104
113
  --pf-v6-c-toggle-group__button--BackgroundColor: var(--pf-v6-c-toggle-group__button--disabled--BackgroundColor);
@@ -31,11 +31,15 @@
31
31
  --pf-v6-c-toolbar__expandable-content--PaddingInlineEnd: var(--pf-t--global--spacer--md);
32
32
  --pf-v6-c-toolbar__expandable-content--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
33
33
  --pf-v6-c-toolbar__expandable-content--BackgroundColor: var(--pf-t--global--background--color--floating--default);
34
+ --pf-v6-c-toolbar__expandable-content--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
35
+ --pf-v6-c-toolbar__expandable-content--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
34
36
  --pf-v6-c-toolbar--m-sticky--ZIndex: var(--pf-t--global--z-index--xs);
35
37
  --pf-v6-c-toolbar--m-sticky--PaddingBlockStart: var(--pf-t--global--spacer--md);
36
38
  --pf-v6-c-toolbar--m-sticky--PaddingBlockEnd: var(--pf-t--global--spacer--md);
37
39
  --pf-v6-c-toolbar--m-sticky--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
38
40
  --pf-v6-c-toolbar--m-sticky--BackgroundColor: var(--pf-t--global--background--color--primary--default);
41
+ --pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
42
+ --pf-v6-c-toolbar--m-sticky--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
39
43
  --pf-v6-c-toolbar__expand-all-icon--Rotate: 0;
40
44
  --pf-v6-c-toolbar__expand-all-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
41
45
  --pf-v6-c-toolbar__expand-all-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
@@ -206,6 +210,7 @@
206
210
  z-index: var(--pf-v6-c-toolbar--m-sticky--ZIndex);
207
211
  padding-block-start: var(--pf-v6-c-toolbar--m-sticky--PaddingBlockStart);
208
212
  padding-block-end: var(--pf-v6-c-toolbar--m-sticky--PaddingBlockEnd);
213
+ border-block-end: var(--pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth) solid var(--pf-v6-c-toolbar--m-sticky--BorderBlockEndColor);
209
214
  box-shadow: var(--pf-v6-c-toolbar--m-sticky--BoxShadow);
210
215
  }
211
216
  .pf-v6-c-toolbar.pf-m-static,
@@ -352,12 +357,14 @@
352
357
  padding-inline-start: var(--pf-v6-c-toolbar__expandable-content--PaddingInlineStart);
353
358
  padding-inline-end: var(--pf-v6-c-toolbar__expandable-content--PaddingInlineEnd);
354
359
  background-color: var(--pf-v6-c-toolbar__expandable-content--BackgroundColor);
360
+ border-block-end: var(--pf-v6-c-toolbar__expandable-content--BorderBlockEndWidth) solid var(--pf-v6-c-toolbar__expandable-content--BorderBlockEndColor);
355
361
  box-shadow: var(--pf-v6-c-toolbar__expandable-content--BoxShadow);
356
362
  }
357
363
  @media screen and (min-width: 62rem) {
358
364
  .pf-v6-c-toolbar__expandable-content {
359
365
  position: static;
360
366
  padding: 0;
367
+ border-block-end: 0;
361
368
  box-shadow: none;
362
369
  }
363
370
  }
@@ -94,6 +94,8 @@
94
94
  --pf-v6-c-wizard__toggle--m-expanded__toggle-icon--Rotate: 180deg;
95
95
  --pf-v6-c-wizard__nav--ZIndex: var(--pf-t--global--z-index--sm);
96
96
  --pf-v6-c-wizard__nav--BackgroundColor: var(--pf-t--global--background--color--primary--default);
97
+ --pf-v6-c-wizard__nav--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
98
+ --pf-v6-c-wizard__nav--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
97
99
  --pf-v6-c-wizard__nav--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
98
100
  --pf-v6-c-wizard__nav--Width: 100%;
99
101
  --pf-v6-c-wizard__nav--lg--Width: 15.625rem;
@@ -127,6 +129,7 @@
127
129
  .pf-v6-c-wizard {
128
130
  --pf-v6-c-wizard__nav--Width: var(--pf-v6-c-wizard__nav--lg--Width);
129
131
  --pf-v6-c-wizard__nav--BoxShadow: none;
132
+ --pf-v6-c-wizard__nav--BorderBlockEndWidth: 0;
130
133
  }
131
134
  }
132
135
 
@@ -313,6 +316,7 @@
313
316
  overflow-y: auto;
314
317
  -webkit-overflow-scrolling: touch;
315
318
  background-color: var(--pf-v6-c-wizard__nav--BackgroundColor);
319
+ border-block-end: var(--pf-v6-c-wizard__nav--BorderBlockEndWidth) solid var(--pf-v6-c-wizard__nav--BorderBlockEndColor);
316
320
  box-shadow: var(--pf-v6-c-wizard__nav--BoxShadow);
317
321
  }
318
322
  .pf-v6-c-wizard__nav.pf-m-expanded {