@patternfly/patternfly 6.3.0 → 6.4.0-prerelease.1

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 (140) hide show
  1. package/README.md +23 -15
  2. package/base/normalize.scss +4 -0
  3. package/base/patternfly-variables.css +1172 -1
  4. package/base/patternfly-variables.scss +10 -0
  5. package/base/tokens/tokens-charts-dark.scss +1 -1
  6. package/base/tokens/tokens-charts.scss +1 -1
  7. package/base/tokens/tokens-dark.scss +13 -1
  8. package/base/tokens/tokens-default.scss +60 -2
  9. package/base/tokens/tokens-highcontrast-dark.scss +396 -0
  10. package/base/tokens/tokens-highcontrast.scss +703 -0
  11. package/base/tokens/tokens-local.scss +1 -0
  12. package/base/tokens/tokens-palette.scss +9 -1
  13. package/components/Accordion/accordion.css +42 -15
  14. package/components/Accordion/accordion.scss +48 -18
  15. package/components/Alert/alert-group.css +17 -15
  16. package/components/Alert/alert-group.scss +22 -18
  17. package/components/Badge/badge.css +2 -0
  18. package/components/Badge/badge.scss +2 -0
  19. package/components/Banner/banner.css +4 -0
  20. package/components/Banner/banner.scss +4 -0
  21. package/components/Button/button.css +34 -4
  22. package/components/Button/button.scss +36 -6
  23. package/components/CalendarMonth/calendar-month.css +35 -4
  24. package/components/CalendarMonth/calendar-month.scss +38 -4
  25. package/components/Card/card.css +7 -4
  26. package/components/Card/card.scss +7 -4
  27. package/components/CodeBlock/code-block.css +3 -0
  28. package/components/CodeBlock/code-block.scss +3 -0
  29. package/components/CodeEditor/code-editor.css +23 -3
  30. package/components/CodeEditor/code-editor.scss +28 -5
  31. package/components/DatePicker/date-picker.css +3 -0
  32. package/components/DatePicker/date-picker.scss +4 -0
  33. package/components/Divider/divider.css +2 -0
  34. package/components/Divider/divider.scss +2 -0
  35. package/components/Drawer/drawer.css +46 -41
  36. package/components/Drawer/drawer.scss +45 -36
  37. package/components/DualListSelector/dual-list-selector.css +21 -4
  38. package/components/DualListSelector/dual-list-selector.scss +23 -4
  39. package/components/ExpandableSection/expandable-section.css +6 -2
  40. package/components/ExpandableSection/expandable-section.scss +7 -3
  41. package/components/FormControl/form-control.css +6 -7
  42. package/components/FormControl/form-control.scss +8 -10
  43. package/components/Label/label.css +20 -11
  44. package/components/Label/label.scss +21 -11
  45. package/components/Login/login.css +3 -0
  46. package/components/Login/login.scss +3 -0
  47. package/components/Menu/menu.css +18 -0
  48. package/components/Menu/menu.scss +19 -1
  49. package/components/MenuToggle/menu-toggle.css +13 -6
  50. package/components/MenuToggle/menu-toggle.scss +13 -6
  51. package/components/ModalBox/modal-box.css +3 -0
  52. package/components/ModalBox/modal-box.scss +3 -0
  53. package/components/Nav/nav.css +17 -0
  54. package/components/Nav/nav.scss +20 -0
  55. package/components/Page/page.css +73 -25
  56. package/components/Page/page.scss +60 -19
  57. package/components/Pagination/pagination.css +15 -2
  58. package/components/Pagination/pagination.scss +15 -2
  59. package/components/Panel/panel.css +14 -1
  60. package/components/Panel/panel.scss +14 -1
  61. package/components/Popover/popover.css +4 -0
  62. package/components/Popover/popover.scss +4 -0
  63. package/components/Progress/progress.css +19 -0
  64. package/components/Progress/progress.scss +22 -0
  65. package/components/Sidebar/sidebar.css +7 -0
  66. package/components/Sidebar/sidebar.scss +7 -0
  67. package/components/SimpleList/simple-list.css +15 -0
  68. package/components/SimpleList/simple-list.scss +17 -1
  69. package/components/Slider/slider.css +9 -0
  70. package/components/Slider/slider.scss +9 -0
  71. package/components/Switch/switch.css +7 -1
  72. package/components/Switch/switch.scss +7 -1
  73. package/components/Table/table.css +41 -1
  74. package/components/Table/table.scss +48 -2
  75. package/components/Tabs/tabs.css +18 -7
  76. package/components/Tabs/tabs.scss +19 -11
  77. package/components/TextInputGroup/text-input-group.css +7 -0
  78. package/components/TextInputGroup/text-input-group.scss +8 -1
  79. package/components/ToggleGroup/toggle-group.css +18 -9
  80. package/components/ToggleGroup/toggle-group.scss +24 -17
  81. package/components/Toolbar/toolbar.css +7 -0
  82. package/components/Toolbar/toolbar.scss +7 -0
  83. package/components/TreeView/tree-view.css +15 -0
  84. package/components/TreeView/tree-view.scss +17 -0
  85. package/components/Wizard/wizard.css +37 -6
  86. package/components/Wizard/wizard.scss +44 -10
  87. package/components/_index.css +631 -168
  88. package/docs/components/Alert/examples/Alert.md +3 -4
  89. package/docs/components/Button/examples/Button.md +1 -3
  90. package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +25 -33
  91. package/docs/components/CodeBlock/examples/CodeBlock.md +13 -7
  92. package/docs/components/CodeEditor/examples/CodeEditor.md +20 -6
  93. package/docs/components/DataList/examples/DataList.md +66 -184
  94. package/docs/components/DatePicker/examples/DatePicker.md +4 -1
  95. package/docs/components/DescriptionList/examples/DescriptionList.md +78 -22
  96. package/docs/components/DualListSelector/examples/DualListSelector.md +0 -195
  97. package/docs/components/EmptyState/examples/EmptyState.md +6 -6
  98. package/docs/components/ExpandableSection/examples/ExpandableSection.md +92 -18
  99. package/docs/components/FileUpload/examples/FileUpload.md +4 -3
  100. package/docs/components/Form/examples/Form.md +19 -18
  101. package/docs/components/HelperText/examples/HelperText.md +65 -75
  102. package/docs/components/Hint/examples/Hint.md +3 -3
  103. package/docs/components/Icon/examples/Icon.md +0 -10
  104. package/docs/components/InlineEdit/examples/InlineEdit.md +0 -4
  105. package/docs/components/JumpLinks/examples/JumpLinks.md +164 -77
  106. package/docs/components/Label/examples/Label.md +2 -2
  107. package/docs/components/Login/examples/Login.md +42 -37
  108. package/docs/components/MultipleFileUpload/examples/MultipleFileUpload.md +32 -6
  109. package/docs/components/Pagination/examples/Pagination.md +111 -0
  110. package/docs/components/Popover/examples/Popover.md +0 -4
  111. package/docs/components/Progress/examples/Progress.md +223 -210
  112. package/docs/components/Skeleton/examples/Skeleton.md +21 -7
  113. package/docs/components/Table/examples/Table.md +947 -1423
  114. package/docs/components/TextInputGroup/examples/TextInputGroup.md +126 -47
  115. package/docs/components/Title/examples/Title.md +8 -8
  116. package/docs/components/Truncate/examples/Truncate.md +8 -6
  117. package/docs/components/Wizard/examples/Wizard.md +583 -0
  118. package/docs/demos/Alert/examples/Alert.md +28 -19
  119. package/docs/demos/Card/examples/Card.md +8 -5
  120. package/docs/demos/CardView/examples/CardView.md +81 -85
  121. package/docs/demos/Dashboard/examples/Dashboard.md +10 -22
  122. package/docs/demos/DataList/examples/DataList.md +528 -168
  123. package/docs/demos/DescriptionList/examples/DescriptionList.md +13 -3
  124. package/docs/demos/Drawer/examples/Drawer.md +0 -2
  125. package/docs/demos/Form/examples/BasicForms.md +93 -62
  126. package/docs/demos/HelperText/examples/HelperText.md +31 -23
  127. package/docs/demos/JumpLinks/examples/JumpLinks.md +0 -5
  128. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +4 -4
  129. package/docs/demos/PasswordStrength/examples/PasswordStrength.md +56 -38
  130. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +726 -312
  131. package/docs/demos/Skeleton/examples/Skeleton.md +3 -1
  132. package/docs/demos/Table/examples/Table.md +5 -20
  133. package/docs/demos/Tabs/examples/Tabs.md +2 -1
  134. package/package.json +12 -7
  135. package/patternfly-base-no-globals.css +1172 -1
  136. package/patternfly-base.css +1176 -1
  137. package/patternfly-no-globals.css +1803 -169
  138. package/patternfly.css +1838 -200
  139. package/patternfly.min.css +1 -1
  140. package/patternfly.min.css.map +1 -1
@@ -6,9 +6,12 @@ $pf-v6-c-pagination--variable-map: build-spacer-map("none", "sm", "md", "lg", "x
6
6
  @include pf-root($pagination) {
7
7
  --#{$pagination}--inset: 0;
8
8
  --#{$pagination}--ColumnGap: var(--pf-t--global--spacer--lg);
9
+ --#{$pagination}--BorderColor: var(--pf-t--global--border--color--high-contrast);
10
+ --#{$pagination}--BorderBlockStartWidth: 0;
11
+ --#{$pagination}--BorderBlockEndWidth: 0;
9
12
 
10
13
  // Page insets
11
- --#{$pagination}--m-page-insets--inset: var(--pf-t--global--spacer--lg);
14
+ --#{$pagination}--m-page-insets--inset: calc(var(--pf-t--global--spacer--lg) - var(--pf-t--global--border--width--main--default));
12
15
 
13
16
  // nav
14
17
  --#{$pagination}__nav--Display: none;
@@ -37,16 +40,19 @@ $pf-v6-c-pagination--variable-map: build-spacer-map("none", "sm", "md", "lg", "x
37
40
  --#{$pagination}--m-sticky--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
38
41
  --#{$pagination}--m-sticky--ZIndex: var(--pf-t--global--z-index--xs);
39
42
  --#{$pagination}--m-sticky--InsetBlockStart: 0;
43
+ --#{$pagination}--m-sticky--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
40
44
 
41
45
  // bottom
42
46
  --#{$pagination}--m-bottom--BackgroundColor: var(--pf-t--global--background--color--primary--default);
43
47
  --#{$pagination}--m-bottom--BoxShadow: var(--pf-t--global--box-shadow--sm--top);
44
48
  --#{$pagination}--m-bottom--m-sticky--BoxShadow: var(--pf-t--global--box-shadow--sm--top);
45
49
  --#{$pagination}--m-bottom--InsetBlockEnd: 0;
50
+ --#{$pagination}--m-bottom--BorderBlockStartWidth: var(--pf-t--global--border--width--high-contrast--regular);
46
51
  --#{$pagination}--m-bottom--m-sticky--PaddingBlockStart: var(--pf-t--global--spacer--sm);
47
52
  --#{$pagination}--m-bottom--m-sticky--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
48
53
  --#{$pagination}--m-bottom--m-sticky--PaddingInlineStart: var(--pf-t--global--spacer--sm);
49
54
  --#{$pagination}--m-bottom--m-sticky--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
55
+ --#{$pagination}--m-bottom--m-sticky--BorderBlockStartWidth: var(--pf-t--global--border--width--high-contrast--regular);
50
56
  --#{$pagination}--m-bottom--m-static--PaddingBlockStart: var(--pf-t--global--spacer--gap--group--vertical);
51
57
  --#{$pagination}--m-bottom--m-static--PaddingBlockEnd: 0;
52
58
  --#{$pagination}--m-bottom--m-static--PaddingInlineStart: var(--pf-t--global--spacer--sm);
@@ -62,6 +68,7 @@ $pf-v6-c-pagination--variable-map: build-spacer-map("none", "sm", "md", "lg", "x
62
68
 
63
69
  @media screen and (min-width: $pf-v6-global--breakpoint--md) {
64
70
  --#{$pagination}--m-bottom--BoxShadow: none;
71
+ --#{$pagination}--m-bottom--BorderBlockStartWidth: 0;
65
72
  --#{$pagination}__page-menu--Display: var(--#{$pagination}__page-menu--md--Display);
66
73
  --#{$pagination}__nav--Display: inline-flex;
67
74
  --#{$pagination}__total-items--Display: none;
@@ -80,6 +87,9 @@ $pf-v6-c-pagination--variable-map: build-spacer-map("none", "sm", "md", "lg", "x
80
87
  justify-content: flex-end;
81
88
  padding-inline-start: var(--#{$pagination}--inset);
82
89
  padding-inline-end: var(--#{$pagination}--inset);
90
+ border: 0 solid var(--#{$pagination}--BorderColor);
91
+ border-block-start-width: var(--#{$pagination}--BorderBlockStartWidth);
92
+ border-block-end-width: var(--#{$pagination}--BorderBlockEndWidth);
83
93
 
84
94
  .#{$pagination}__page-menu {
85
95
  display: var(--#{$pagination}__page-menu--Display);
@@ -88,6 +98,7 @@ $pf-v6-c-pagination--variable-map: build-spacer-map("none", "sm", "md", "lg", "x
88
98
  &.pf-m-bottom {
89
99
  --#{$pagination}--m-sticky--BoxShadow: var(--#{$pagination}--m-bottom--m-sticky--BoxShadow);
90
100
  --#{$pagination}--m-sticky--InsetBlockStart: auto;
101
+ --#{$pagination}--BorderBlockStartWidth: var(--#{$pagination}--m-bottom--BorderBlockStartWidth);
91
102
 
92
103
  position: sticky;
93
104
  inset-block-end: var(--#{$pagination}--m-bottom--InsetBlockEnd);
@@ -117,7 +128,6 @@ $pf-v6-c-pagination--variable-map: build-spacer-map("none", "sm", "md", "lg", "x
117
128
  }
118
129
 
119
130
  @media screen and (min-width: $pf-v6-global--breakpoint--md) {
120
- --#{$pagination}--m-bottom--BorderBlockStartWidth: 0;
121
131
  --#{$pagination}--m-bottom--MarginBlockStart: 0;
122
132
  --#{$pagination}--m-bottom--InsetBlockEnd: auto;
123
133
 
@@ -155,11 +165,14 @@ $pf-v6-c-pagination--variable-map: build-spacer-map("none", "sm", "md", "lg", "x
155
165
  padding-block-end: var(--#{$pagination}--m-bottom--m-static--PaddingBlockEnd);
156
166
  padding-inline-start: var(--#{$pagination}--m-bottom--m-static--PaddingInlineStart);
157
167
  padding-inline-end: var(--#{$pagination}--m-bottom--m-static--PaddingInlineEnd);
168
+ border: 0;
158
169
  box-shadow: none;
159
170
  }
160
171
 
161
172
  &.pf-m-sticky {
162
173
  --#{$pagination}--m-bottom--InsetBlockEnd: 0;
174
+ --#{$pagination}--BorderBlockEndWidth: var(--#{$pagination}--m-sticky--BorderBlockEndWidth);
175
+ --#{$pagination}--m-bottom--BorderBlockStartWidth: var(--#{$pagination}--m-bottom--m-sticky--BorderBlockStartWidth);
163
176
 
164
177
  position: sticky;
165
178
  inset-block-start: var(--#{$pagination}--m-sticky--InsetBlockStart);
@@ -6,11 +6,14 @@
6
6
  --pf-v6-c-panel--BoxShadow: none;
7
7
  --pf-v6-c-panel--BorderRadius: var(--pf-t--global--border--radius--small);
8
8
  --pf-v6-c-panel--before--BorderWidth: 0;
9
- --pf-v6-c-panel--before--BorderColor: var(--pf-t--global--border--color--default);
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--high-contrast--regular);
11
12
  --pf-v6-c-panel--m-bordered--before--BorderWidth: var(--pf-t--global--border--width--box--default);
13
+ --pf-v6-c-panel--m-bordered--before--BorderColor: var(--pf-t--global--border--color--default);
12
14
  --pf-v6-c-panel--m-raised--BoxShadow: var(--pf-t--global--box-shadow--md);
13
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--high-contrast--regular);
14
17
  --pf-v6-c-panel__header--PaddingBlockStart: var(--pf-t--global--spacer--md);
15
18
  --pf-v6-c-panel__header--PaddingInlineEnd: var(--pf-t--global--spacer--lg);
16
19
  --pf-v6-c-panel__header--PaddingBlockEnd: var(--pf-t--global--spacer--md);
@@ -26,11 +29,15 @@
26
29
  --pf-v6-c-panel__footer--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
27
30
  --pf-v6-c-panel__footer--PaddingInlineStart: var(--pf-t--global--spacer--lg);
28
31
  --pf-v6-c-panel__footer--BoxShadow: none;
32
+ --pf-v6-c-panel__footer--BorderColor: transparent;
33
+ --pf-v6-c-panel__footer--BorderWidth: 0;
29
34
  --pf-v6-c-panel--m-scrollable__main--MaxHeight: 18.75rem;
30
35
  --pf-v6-c-panel--m-scrollable__main--Overflow: auto;
31
36
  --pf-v6-c-panel--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--md--top);
32
37
  --pf-v6-c-panel--m-scrollable__footer--PaddingBlockStart: var(--pf-t--global--spacer--md);
33
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);
34
41
  }
35
42
 
36
43
  .pf-v6-c-panel {
@@ -52,13 +59,16 @@
52
59
  }
53
60
  .pf-v6-c-panel.pf-m-bordered {
54
61
  --pf-v6-c-panel--before--BorderWidth: var(--pf-v6-c-panel--m-bordered--before--BorderWidth);
62
+ --pf-v6-c-panel--before--BorderColor: var(--pf-v6-c-panel--m-bordered--before--BorderColor);
55
63
  }
56
64
  .pf-v6-c-panel.pf-m-secondary {
57
65
  --pf-v6-c-panel--BackgroundColor: var(--pf-v6-c-panel--m-secondary--BackgroundColor);
66
+ --pf-v6-c-panel--before--BorderWidth: var(--pf-v6-c-panel--m-secondary--before--BorderWidth);
58
67
  }
59
68
  .pf-v6-c-panel.pf-m-raised {
60
69
  --pf-v6-c-panel--BackgroundColor: var(--pf-v6-c-panel--m-raised--BackgroundColor);
61
70
  --pf-v6-c-panel--BoxShadow: var(--pf-v6-c-panel--m-raised--BoxShadow);
71
+ --pf-v6-c-panel--before--BorderWidth: var(--pf-v6-c-panel--m-raised--before--BorderWidth);
62
72
  }
63
73
  .pf-v6-c-panel.pf-m-scrollable {
64
74
  --pf-v6-c-panel__main--MaxHeight: var(--pf-v6-c-panel--m-scrollable__main--MaxHeight);
@@ -66,6 +76,8 @@
66
76
  --pf-v6-c-panel__footer--BoxShadow: var(--pf-v6-c-panel--m-scrollable__footer--BoxShadow);
67
77
  --pf-v6-c-panel__footer--PaddingBlockStart: var(--pf-v6-c-panel--m-scrollable__footer--PaddingBlockStart);
68
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);
69
81
  }
70
82
 
71
83
  .pf-v6-c-panel__header {
@@ -92,5 +104,6 @@
92
104
  padding-block-end: var(--pf-v6-c-panel__footer--PaddingBlockEnd);
93
105
  padding-inline-start: var(--pf-v6-c-panel__footer--PaddingInlineStart);
94
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);
95
108
  box-shadow: var(--pf-v6-c-panel__footer--BoxShadow);
96
109
  }
@@ -10,17 +10,20 @@
10
10
 
11
11
  // border
12
12
  --#{$panel}--before--BorderWidth: 0;
13
- --#{$panel}--before--BorderColor: var(--pf-t--global--border--color--default);
13
+ --#{$panel}--before--BorderColor: var(--pf-t--global--border--color--high-contrast);
14
14
 
15
15
  // secondary modifier
16
16
  --#{$panel}--m-secondary--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
17
+ --#{$panel}--m-secondary--before--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
17
18
 
18
19
  // bordered
19
20
  --#{$panel}--m-bordered--before--BorderWidth: var(--pf-t--global--border--width--box--default);
21
+ --#{$panel}--m-bordered--before--BorderColor: var(--pf-t--global--border--color--default);
20
22
 
21
23
  // raised
22
24
  --#{$panel}--m-raised--BoxShadow: var(--pf-t--global--box-shadow--md);
23
25
  --#{$panel}--m-raised--BackgroundColor: var(--pf-t--global--background--color--floating--default);
26
+ --#{$panel}--m-raised--before--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
24
27
 
25
28
  // header
26
29
  --#{$panel}__header--PaddingBlockStart: var(--pf-t--global--spacer--md);
@@ -44,6 +47,8 @@
44
47
  --#{$panel}__footer--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
45
48
  --#{$panel}__footer--PaddingInlineStart: var(--pf-t--global--spacer--lg);
46
49
  --#{$panel}__footer--BoxShadow: none;
50
+ --#{$panel}__footer--BorderColor: transparent;
51
+ --#{$panel}__footer--BorderWidth: 0;
47
52
 
48
53
  // scrollable
49
54
  --#{$panel}--m-scrollable__main--MaxHeight: #{pf-size-prem(300px)};
@@ -51,6 +56,8 @@
51
56
  --#{$panel}--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--md--top);
52
57
  --#{$panel}--m-scrollable__footer--PaddingBlockStart: var(--pf-t--global--spacer--md);
53
58
  --#{$panel}--m-scrollable__footer--PaddingBlockEnd: var(--pf-t--global--spacer--md);
59
+ --#{$panel}--m-scrollable__footer--BorderColor: var(--pf-t--global--border--color--high-contrast);
60
+ --#{$panel}--m-scrollable__footer--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
54
61
  }
55
62
 
56
63
  .#{$panel} {
@@ -73,15 +80,18 @@
73
80
 
74
81
  &.pf-m-bordered {
75
82
  --#{$panel}--before--BorderWidth: var(--#{$panel}--m-bordered--before--BorderWidth);
83
+ --#{$panel}--before--BorderColor: var(--#{$panel}--m-bordered--before--BorderColor);
76
84
  }
77
85
 
78
86
  &.pf-m-secondary {
79
87
  --#{$panel}--BackgroundColor: var(--#{$panel}--m-secondary--BackgroundColor);
88
+ --#{$panel}--before--BorderWidth: var(--#{$panel}--m-secondary--before--BorderWidth);
80
89
  }
81
90
 
82
91
  &.pf-m-raised {
83
92
  --#{$panel}--BackgroundColor: var(--#{$panel}--m-raised--BackgroundColor);
84
93
  --#{$panel}--BoxShadow: var(--#{$panel}--m-raised--BoxShadow);
94
+ --#{$panel}--before--BorderWidth: var(--#{$panel}--m-raised--before--BorderWidth);
85
95
  }
86
96
 
87
97
  &.pf-m-scrollable {
@@ -90,6 +100,8 @@
90
100
  --#{$panel}__footer--BoxShadow: var(--#{$panel}--m-scrollable__footer--BoxShadow);
91
101
  --#{$panel}__footer--PaddingBlockStart: var(--#{$panel}--m-scrollable__footer--PaddingBlockStart);
92
102
  --#{$panel}__footer--PaddingBlockEnd: var(--#{$panel}--m-scrollable__footer--PaddingBlockEnd);
103
+ --#{$panel}__footer--BorderColor: var(--#{$panel}--m-scrollable__footer--BorderColor);
104
+ --#{$panel}__footer--BorderWidth: var(--#{$panel}--m-scrollable__footer--BorderWidth);
93
105
  }
94
106
  }
95
107
 
@@ -117,5 +129,6 @@
117
129
  padding-block-end: var(--#{$panel}__footer--PaddingBlockEnd);
118
130
  padding-inline-start: var(--#{$panel}__footer--PaddingInlineStart);
119
131
  padding-inline-end: var(--#{$panel}__footer--PaddingInlineEnd);
132
+ border-block-start: var(--#{$panel}__footer--BorderWidth) solid var(--#{$panel}__footer--BorderColor);
120
133
  box-shadow: var(--#{$panel}__footer--BoxShadow);
121
134
  }
@@ -3,6 +3,8 @@
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--border--width--high-contrast--regular);
7
+ --pf-v6-c-popover--BorderColor: var(--pf-t--global--border--color--high-contrast);
6
8
  --pf-v6-c-popover--BorderRadius: var(--pf-t--global--border--radius--medium);
7
9
  --pf-v6-c-popover--m-danger__title-icon--Color: var(--pf-t--global--icon--color--status--danger--default);
8
10
  --pf-v6-c-popover--m-warning__title-icon--Color: var(--pf-t--global--icon--color--status--warning--default);
@@ -53,6 +55,7 @@
53
55
  min-width: var(--pf-v6-c-popover--MinWidth);
54
56
  max-width: var(--pf-v6-c-popover--MaxWidth);
55
57
  font-size: var(--pf-v6-c-popover--FontSize);
58
+ border: var(--pf-v6-c-popover--BorderWidth) solid var(--pf-v6-c-popover--BorderColor);
56
59
  border-radius: var(--pf-v6-c-popover--BorderRadius);
57
60
  box-shadow: var(--pf-v6-c-popover--BoxShadow);
58
61
  }
@@ -167,6 +170,7 @@
167
170
  height: var(--pf-v6-c-popover__arrow--Height);
168
171
  pointer-events: none;
169
172
  background-color: var(--pf-v6-c-popover__arrow--BackgroundColor);
173
+ border: var(--pf-v6-c-popover--BorderWidth) solid var(--pf-v6-c-popover--BorderColor);
170
174
  box-shadow: var(--pf-v6-c-popover__arrow--BoxShadow);
171
175
  transform: translateX(var(--pf-v6-c-popover__arrow--TranslateX, 0)) translateY(var(--pf-v6-c-popover__arrow--TranslateY, 0)) rotate(var(--pf-v6-c-popover__arrow--Rotate, 0));
172
176
  }
@@ -6,6 +6,8 @@
6
6
  --#{$popover}--MinWidth: calc(var(--#{$popover}__content--PaddingInlineStart) + var(--#{$popover}__content--PaddingInlineEnd) + #{pf-size-prem(300px)});
7
7
  --#{$popover}--MaxWidth: calc(var(--#{$popover}__content--PaddingInlineStart) + var(--#{$popover}__content--PaddingInlineEnd) + #{pf-size-prem(300px)});
8
8
  --#{$popover}--BoxShadow: var(--pf-t--global--box-shadow--md);
9
+ --#{$popover}--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
10
+ --#{$popover}--BorderColor: var(--pf-t--global--border--color--high-contrast);
9
11
  --#{$popover}--BorderRadius: var(--pf-t--global--border--radius--medium);
10
12
 
11
13
 
@@ -73,6 +75,7 @@
73
75
  min-width: var(--#{$popover}--MinWidth);
74
76
  max-width: var(--#{$popover}--MaxWidth);
75
77
  font-size: var(--#{$popover}--FontSize);
78
+ border: var(--#{$popover}--BorderWidth) solid var(--#{$popover}--BorderColor);
76
79
  border-radius: var(--#{$popover}--BorderRadius);
77
80
  box-shadow: var(--#{$popover}--BoxShadow);
78
81
 
@@ -226,6 +229,7 @@
226
229
  height: var(--#{$popover}__arrow--Height);
227
230
  pointer-events: none;
228
231
  background-color: var(--#{$popover}__arrow--BackgroundColor);
232
+ border: var(--#{$popover}--BorderWidth) solid var(--#{$popover}--BorderColor);
229
233
  box-shadow: var(--#{$popover}__arrow--BoxShadow);
230
234
  transform: translateX(var(--#{$popover}__arrow--TranslateX, 0)) translateY(var(--#{$popover}__arrow--TranslateY, 0)) rotate(var(--#{$popover}__arrow--Rotate, 0));
231
235
  }
@@ -3,11 +3,15 @@
3
3
  --pf-v6-c-progress__bar--Height: var(--pf-t--global--spacer--md);
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
+ --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--high-contrast--regular);
6
8
  --pf-v6-c-progress__measure--m-static-width--MinWidth: 4.5ch;
7
9
  --pf-v6-c-progress__status--Gap: var(--pf-t--global--spacer--sm);
8
10
  --pf-v6-c-progress__status-icon--Color: var(--pf-t--global--icon--color--regular);
9
11
  --pf-v6-c-progress__indicator--Height: var(--pf-v6-c-progress__bar--Height);
10
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;
11
15
  --pf-v6-c-progress__helper-text--MarginBlockStart: calc(var(--pf-t--global--spacer--sm) - var(--pf-v6-c-progress--GridGap));
12
16
  --pf-v6-c-progress--m-success__indicator--BackgroundColor: var(--pf-t--global--color--status--success--default);
13
17
  --pf-v6-c-progress--m-warning__indicator--BackgroundColor: var(--pf-t--global--color--status--warning--default);
@@ -164,12 +168,27 @@
164
168
  background-color: var(--pf-v6-c-progress__bar--BackgroundColor);
165
169
  border-radius: var(--pf-v6-c-progress__bar--BorderRadius);
166
170
  }
171
+ .pf-v6-c-progress__bar::before {
172
+ position: absolute;
173
+ inset: 0;
174
+ pointer-events: none;
175
+ content: "";
176
+ border: var(--pf-v6-c-progress__bar--BorderWidth) solid var(--pf-v6-c-progress__bar--BorderColor);
177
+ border-radius: inherit;
178
+ }
167
179
 
168
180
  .pf-v6-c-progress__indicator {
169
181
  position: absolute;
170
182
  height: var(--pf-v6-c-progress__indicator--Height);
171
183
  background-color: var(--pf-v6-c-progress__indicator--BackgroundColor);
172
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
+ }
173
192
 
174
193
  .pf-v6-c-progress__helper-text {
175
194
  grid-row: 3/4;
@@ -8,11 +8,15 @@
8
8
  --#{$progress}__bar--Height: var(--pf-t--global--spacer--md);
9
9
  --#{$progress}__bar--BackgroundColor: var(--pf-t--global--color--nonstatus--gray--default); // the bar always needs white under it so that the semi-transparent color shows correctly
10
10
  --#{$progress}__bar--BorderRadius: var(--pf-t--global--border--radius--medium);
11
+ --#{$progress}__bar--BorderColor: var(--pf-t--global--border--color--high-contrast);
12
+ --#{$progress}__bar--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
11
13
  --#{$progress}__measure--m-static-width--MinWidth: 4.5ch; // 4.5 because the % character is wider than a 0
12
14
  --#{$progress}__status--Gap: var(--pf-t--global--spacer--sm);
13
15
  --#{$progress}__status-icon--Color: var(--pf-t--global--icon--color--regular);
14
16
  --#{$progress}__indicator--Height: var(--#{$progress}__bar--Height);
15
17
  --#{$progress}__indicator--BackgroundColor: var(--pf-t--global--color--brand--default);
18
+ --#{$progress}__indicator--BorderWidth: var(--pf-t--global--border--width--high-contrast--extra-strong);
19
+ --#{$progress}__indicator--BorderColor: transparent;
16
20
  --#{$progress}__helper-text--MarginBlockStart: calc(var(--pf-t--global--spacer--sm) - var(--#{$progress}--GridGap));
17
21
 
18
22
  // Modifier variables
@@ -201,6 +205,15 @@
201
205
  overflow: hidden;
202
206
  background-color: var(--#{$progress}__bar--BackgroundColor);
203
207
  border-radius: var(--#{$progress}__bar--BorderRadius);
208
+
209
+ &::before {
210
+ position: absolute;
211
+ inset: 0;
212
+ pointer-events: none;
213
+ content: '';
214
+ border: var(--#{$progress}__bar--BorderWidth) solid var(--#{$progress}__bar--BorderColor);
215
+ border-radius: inherit;
216
+ }
204
217
  }
205
218
 
206
219
  // the progress__indicator is the part that advances (widens) as progress is made
@@ -209,6 +222,15 @@
209
222
  position: absolute; // position absolute to bring above the semi-transparent bar overlay
210
223
  height: var(--#{$progress}__indicator--Height);
211
224
  background-color: var(--#{$progress}__indicator--BackgroundColor);
225
+
226
+ // for forced colors mode
227
+ &::before {
228
+ position: absolute;
229
+ inset: 0;
230
+ content: "";
231
+ border: var(--#{$progress}__indicator--BorderWidth) solid var(--#{$progress}__indicator--BorderColor);
232
+ border-radius: var(--#{$progress}__bar--BorderRadius);
233
+ }
212
234
  }
213
235
 
214
236
  .#{$progress}__helper-text {
@@ -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 {
@@ -63,6 +63,7 @@ $pf-v6-c-sidebar__panel--list--width: ("default", 25, 33, 50, 66, 75, 100);
63
63
  --#{$sidebar}--m-stack__panel--Position: sticky;
64
64
  --#{$sidebar}--m-stack__panel--InsetBlockStart: 0;
65
65
  --#{$sidebar}--m-stack__panel--BoxShadow: var(--#{$sidebar}__panel--BoxShadow--base);
66
+ --#{$sidebar}--m-stack__panel--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
66
67
  --#{$sidebar}--m-stack--m-panel-right__panel--Order: -1;
67
68
 
68
69
  // Split
@@ -75,6 +76,8 @@ $pf-v6-c-sidebar__panel--list--width: ("default", 25, 33, 50, 66, 75, 100);
75
76
 
76
77
  // Panel
77
78
  --#{$sidebar}__panel--FlexBasis--base: auto;
79
+ --#{$sidebar}__panel--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
80
+ --#{$sidebar}__panel--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
78
81
  --#{$sidebar}__panel--BoxShadow--base: var(--pf-t--global--box-shadow--md--bottom);
79
82
  --#{$sidebar}__panel--BoxShadow: var(--#{$sidebar}__panel--BoxShadow--base);
80
83
  --#{$sidebar}__panel--InsetBlockStart: 0;
@@ -106,6 +109,7 @@ $pf-v6-c-sidebar__panel--list--width: ("default", 25, 33, 50, 66, 75, 100);
106
109
  --#{$sidebar}__main--FlexDirection: var(--#{$sidebar}__main--md--FlexDirection);
107
110
  --#{$sidebar}__main--AlignItems: var(--#{$sidebar}__main--md--AlignItems);
108
111
  --#{$sidebar}__main--m-border--before--Display: var(--#{$sidebar}__main--m-border--before--md--Display); // show border starting at md breakpoint
112
+ --#{$sidebar}__panel--BorderBlockEndWidth: 0;
109
113
  --#{$sidebar}__panel--BoxShadow: none;
110
114
  --#{$sidebar}__panel--FlexBasis: var(--#{$sidebar}__panel--md--FlexBasis);
111
115
  --#{$sidebar}__panel--InsetBlockStart: var(--#{$sidebar}__panel--md--InsetBlockStart);
@@ -135,6 +139,7 @@ $pf-v6-c-sidebar__panel--list--width: ("default", 25, 33, 50, 66, 75, 100);
135
139
  --#{$sidebar}__main--AlignItems: var(--#{$sidebar}--m-stack__main--AlignItems);
136
140
  --#{$sidebar}__panel--Position: var(--#{$sidebar}--m-stack__panel--Position);
137
141
  --#{$sidebar}__panel--InsetBlockStart: var(--#{$sidebar}--m-stack__panel--InsetBlockStart);
142
+ --#{$sidebar}__panel--BorderBlockEndWidth: var(--#{$sidebar}--m-stack__panel--BorderBlockEndWidth);
138
143
  --#{$sidebar}__panel--BoxShadow: var(--#{$sidebar}--m-stack__panel--BoxShadow);
139
144
  --#{$sidebar}__panel--FlexBasis: var(--#{$sidebar}__panel--m-stack--FlexBasis);
140
145
  --#{$sidebar}__main--m-border--before--Display: none;
@@ -146,6 +151,7 @@ $pf-v6-c-sidebar__panel--list--width: ("default", 25, 33, 50, 66, 75, 100);
146
151
  --#{$sidebar}__main--AlignItems: var(--#{$sidebar}--m-split__main--AlignItems);
147
152
  --#{$sidebar}__panel--Position: var(--#{$sidebar}--m-split__panel--Position);
148
153
  --#{$sidebar}__panel--InsetBlockStart: var(--#{$sidebar}--m-split__panel--InsetBlockStart);
154
+ --#{$sidebar}__panel--BorderBlockEndWidth: 0;
149
155
  --#{$sidebar}__panel--BoxShadow: none;
150
156
  --#{$sidebar}__panel--FlexBasis: var(--#{$sidebar}__panel--m-split--FlexBasis);
151
157
  --#{$sidebar}__main--m-border--before--Display: var(--#{$sidebar}--m-split__main--m-border--before--Display);
@@ -179,6 +185,7 @@ $pf-v6-c-sidebar__panel--list--width: ("default", 25, 33, 50, 66, 75, 100);
179
185
  padding-inline-start: var(--#{$sidebar}__panel--PaddingInlineStart);
180
186
  padding-inline-end: var(--#{$sidebar}__panel--PaddingInlineEnd);
181
187
  background-color: var(--#{$sidebar}__panel--BackgroundColor);
188
+ border-block-end: var(--#{$sidebar}__panel--BorderBlockEndWidth) solid var(--#{$sidebar}__panel--BorderBlockEndColor);
182
189
  box-shadow: var(--#{$sidebar}__panel--BoxShadow);
183
190
 
184
191
  &.pf-m-padding {
@@ -11,6 +11,10 @@
11
11
  --pf-v6-c-simple-list__item-link--hover--Color: var(--pf-t--global--text--color--subtle);
12
12
  --pf-v6-c-simple-list__item-link--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
13
13
  --pf-v6-c-simple-list__item-link--BorderRadius: var(--pf-t--global--border--radius--tiny);
14
+ --pf-v6-c-simple-list__item-link--BorderWidth: var(--pf-t--global--border--width--action--plain--default);
15
+ --pf-v6-c-simple-list__item-link--BorderColor: var(--pf-t--global--border--color--high-contrast);
16
+ --pf-v6-c-simple-list__item-link--hover--BorderWidth: var(--pf-t--global--border--width--action--plain--hover);
17
+ --pf-v6-c-simple-list__item-link--m-current--BorderWidth: var(--pf-t--global--border--width--action--plain--clicked);
14
18
  --pf-v6-c-simple-list__item-link--m-link--Color: var(--pf-t--global--text--color--link--default);
15
19
  --pf-v6-c-simple-list__item-link--m-link--m-current--Color: var(--pf-t--global--text--color--link--hover);
16
20
  --pf-v6-c-simple-list__item-link--m-link--hover--Color: var(--pf-t--global--text--color--link--hover);
@@ -25,6 +29,7 @@
25
29
  }
26
30
 
27
31
  .pf-v6-c-simple-list__item-link {
32
+ position: relative;
28
33
  display: block;
29
34
  width: 100%;
30
35
  padding-block-start: var(--pf-v6-c-simple-list__item-link--PaddingBlockStart);
@@ -39,6 +44,14 @@
39
44
  border: none;
40
45
  border-radius: var(--pf-v6-c-simple-list__item-link--BorderRadius);
41
46
  }
47
+ .pf-v6-c-simple-list__item-link::after {
48
+ position: absolute;
49
+ inset: 0;
50
+ pointer-events: none;
51
+ content: "";
52
+ border: var(--pf-v6-c-simple-list__item-link--BorderWidth) solid var(--pf-v6-c-simple-list__item-link--BorderColor);
53
+ border-radius: inherit;
54
+ }
42
55
  .pf-v6-c-simple-list__item-link.pf-m-link {
43
56
  --pf-v6-c-simple-list__item-link--Color: var(--pf-v6-c-simple-list__item-link--m-link--Color);
44
57
  --pf-v6-c-simple-list__item-link--hover--Color: var(--pf-v6-c-simple-list__item-link--m-link--m-current--Color);
@@ -47,11 +60,13 @@
47
60
  .pf-v6-c-simple-list__item-link:is(:hover, :focus) {
48
61
  --pf-v6-c-simple-list__item-link--BackgroundColor: var(--pf-v6-c-simple-list__item-link--hover--BackgroundColor);
49
62
  --pf-v6-c-simple-list__item-link--Color: var(--pf-v6-c-simple-list__item-link--hover--Color);
63
+ --pf-v6-c-simple-list__item-link--BorderWidth: var(--pf-v6-c-simple-list__item-link--hover--BorderWidth);
50
64
  text-decoration-line: none;
51
65
  }
52
66
  .pf-v6-c-simple-list__item-link.pf-m-current {
53
67
  --pf-v6-c-simple-list__item-link--BackgroundColor: var(--pf-v6-c-simple-list__item-link--m-current--BackgroundColor);
54
68
  --pf-v6-c-simple-list__item-link--Color: var(--pf-v6-c-simple-list__item-link--m-current--Color);
69
+ --pf-v6-c-simple-list__item-link--BorderWidth: var(--pf-v6-c-simple-list__item-link--m-current--BorderWidth);
55
70
  }
56
71
 
57
72
  .pf-v6-c-simple-list__title {
@@ -14,7 +14,11 @@
14
14
  --#{$simple-list}__item-link--hover--Color: var(--pf-t--global--text--color--subtle);
15
15
  --#{$simple-list}__item-link--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
16
16
  --#{$simple-list}__item-link--BorderRadius: var(--pf-t--global--border--radius--tiny);
17
-
17
+ --#{$simple-list}__item-link--BorderWidth: var(--pf-t--global--border--width--action--plain--default);
18
+ --#{$simple-list}__item-link--BorderColor: var(--pf-t--global--border--color--high-contrast);
19
+ --#{$simple-list}__item-link--hover--BorderWidth: var(--pf-t--global--border--width--action--plain--hover);
20
+ --#{$simple-list}__item-link--m-current--BorderWidth: var(--pf-t--global--border--width--action--plain--clicked);
21
+
18
22
  // Simple list item link
19
23
  --#{$simple-list}__item-link--m-link--Color: var(--pf-t--global--text--color--link--default);
20
24
  --#{$simple-list}__item-link--m-link--m-current--Color: var(--pf-t--global--text--color--link--hover);
@@ -34,6 +38,7 @@
34
38
  }
35
39
 
36
40
  .#{$simple-list}__item-link {
41
+ position: relative;
37
42
  display: block;
38
43
  width: 100%;
39
44
  padding-block-start: var(--#{$simple-list}__item-link--PaddingBlockStart);
@@ -48,6 +53,15 @@
48
53
  border: none;
49
54
  border-radius: var(--#{$simple-list}__item-link--BorderRadius);
50
55
 
56
+ &::after {
57
+ position: absolute;
58
+ inset: 0;
59
+ pointer-events: none;
60
+ content: "";
61
+ border: var(--#{$simple-list}__item-link--BorderWidth) solid var(--#{$simple-list}__item-link--BorderColor);
62
+ border-radius: inherit;
63
+ }
64
+
51
65
  &.pf-m-link {
52
66
  --#{$simple-list}__item-link--Color: var(--#{$simple-list}__item-link--m-link--Color);
53
67
  --#{$simple-list}__item-link--hover--Color: var(--#{$simple-list}__item-link--m-link--m-current--Color);
@@ -57,6 +71,7 @@
57
71
  &:is(:hover, :focus) {
58
72
  --#{$simple-list}__item-link--BackgroundColor: var(--#{$simple-list}__item-link--hover--BackgroundColor);
59
73
  --#{$simple-list}__item-link--Color: var(--#{$simple-list}__item-link--hover--Color);
74
+ --#{$simple-list}__item-link--BorderWidth: var(--#{$simple-list}__item-link--hover--BorderWidth);
60
75
 
61
76
  text-decoration-line: none;
62
77
  }
@@ -64,6 +79,7 @@
64
79
  &.pf-m-current {
65
80
  --#{$simple-list}__item-link--BackgroundColor: var(--#{$simple-list}__item-link--m-current--BackgroundColor);
66
81
  --#{$simple-list}__item-link--Color: var(--#{$simple-list}__item-link--m-current--Color);
82
+ --#{$simple-list}__item-link--BorderWidth: var(--#{$simple-list}__item-link--m-current--BorderWidth);
67
83
  }
68
84
  }
69
85
 
@@ -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
  }