@patternfly/patternfly 6.6.0-prerelease.8 → 6.6.0

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 (66) hide show
  1. package/assets/fonts/RedHatDisplay/RedHatDisplayVF-Italic.woff2 +0 -0
  2. package/assets/fonts/RedHatDisplay/RedHatDisplayVF.woff2 +0 -0
  3. package/assets/fonts/RedHatMono/RedHatMonoVF-Italic.woff2 +0 -0
  4. package/assets/fonts/RedHatMono/RedHatMonoVF.woff2 +0 -0
  5. package/assets/fonts/RedHatText/RedHatTextVF-Italic.woff2 +0 -0
  6. package/assets/fonts/RedHatText/RedHatTextVF.woff2 +0 -0
  7. package/assets/images/pf-logo-avatar.jpg +0 -0
  8. package/base/patternfly-fonts.css +4 -4
  9. package/base/patternfly-fonts.scss +4 -4
  10. package/base/patternfly-variables.css +6 -6
  11. package/base/tokens/tokens-charts-dark.scss +1 -1
  12. package/base/tokens/tokens-charts-highcontrast-dark.scss +1 -1
  13. package/base/tokens/tokens-charts-highcontrast.scss +1 -1
  14. package/base/tokens/tokens-charts.scss +1 -1
  15. package/base/tokens/tokens-dark.scss +1 -1
  16. package/base/tokens/tokens-default.scss +4 -4
  17. package/base/tokens/tokens-felt-dark.scss +1 -1
  18. package/base/tokens/tokens-felt-glass-dark.scss +1 -1
  19. package/base/tokens/tokens-felt-glass.scss +1 -1
  20. package/base/tokens/tokens-felt-highcontrast-dark.scss +1 -1
  21. package/base/tokens/tokens-felt-highcontrast.scss +1 -1
  22. package/base/tokens/tokens-felt.scss +1 -1
  23. package/base/tokens/tokens-glass-dark.scss +1 -1
  24. package/base/tokens/tokens-glass.scss +1 -1
  25. package/base/tokens/tokens-highcontrast-dark.scss +1 -1
  26. package/base/tokens/tokens-highcontrast.scss +4 -4
  27. package/base/tokens/tokens-palette.scss +1 -1
  28. package/base/tokens/tokens-redhat-highcontrast.scss +3 -3
  29. package/components/Alert/alert.css +1 -0
  30. package/components/Alert/alert.scss +1 -0
  31. package/components/Avatar/avatar.css +54 -51
  32. package/components/Avatar/avatar.scss +82 -81
  33. package/components/Banner/banner.css +7 -0
  34. package/components/Banner/banner.scss +7 -0
  35. package/components/Button/button.css +15 -1
  36. package/components/Button/button.scss +17 -1
  37. package/components/DragDrop/drag-drop.css +4 -0
  38. package/components/DragDrop/drag-drop.scss +4 -0
  39. package/components/Page/page.css +7 -5
  40. package/components/Page/page.scss +9 -8
  41. package/components/Panel/panel.css +1 -1
  42. package/components/Panel/panel.scss +2 -2
  43. package/components/Table/table.css +26 -18
  44. package/components/Table/table.scss +37 -27
  45. package/components/_index.css +115 -76
  46. package/docs/components/Avatar/examples/Avatar.css +6 -0
  47. package/docs/components/Avatar/examples/Avatar.md +182 -121
  48. package/docs/components/DualListSelector/examples/DualListSelector.md +72 -72
  49. package/docs/components/MenuToggle/examples/MenuToggle.md +54 -15
  50. package/docs/components/Pagination/examples/Pagination.md +120 -120
  51. package/docs/components/Table/examples/Table.md +7 -0
  52. package/docs/components/Toolbar/examples/Toolbar.md +16 -16
  53. package/docs/demos/CardView/examples/CardView.md +12 -12
  54. package/docs/demos/Compass/examples/Compass.md +91 -35
  55. package/docs/demos/Dashboard/examples/Dashboard.md +27 -30
  56. package/docs/demos/DataList/examples/DataList.md +48 -48
  57. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +20 -20
  58. package/docs/demos/Table/examples/Table.md +160 -160
  59. package/docs/demos/Toolbar/examples/Toolbar.md +36 -36
  60. package/package.json +2 -2
  61. package/patternfly-base-no-globals.css +10 -10
  62. package/patternfly-base.css +10 -10
  63. package/patternfly-no-globals.css +125 -86
  64. package/patternfly.css +125 -86
  65. package/patternfly.min.css +1 -1
  66. package/patternfly.min.css.map +1 -1
@@ -9,19 +9,19 @@ $pf-v6-c-avatar--sizes: "sm", "md", "lg", "xl";
9
9
  --#{$avatar}--BorderRadius: var(--pf-t--global--border--radius--pill);
10
10
  --#{$avatar}--Width: #{pf-size-prem(36px)};
11
11
  --#{$avatar}--Height: #{pf-size-prem(36px)};
12
- --#{$avatar}--FontSize: #{pf-size-prem(36px)};
12
+ --#{$avatar}--FontSize: calc(#{pf-size-prem(36px)} / 1.414); // 1.414 is the square root of 2, used to get the inner square of the avatar
13
13
  --#{$avatar}--m-sm--Width: #{pf-size-prem(24px)};
14
14
  --#{$avatar}--m-sm--Height: #{pf-size-prem(24px)};
15
- --#{$avatar}--m-sm--FontSize: #{pf-size-prem(24px)};
15
+ --#{$avatar}--m-sm--FontSize: calc(#{pf-size-prem(24px)} / 1.414);
16
16
  --#{$avatar}--m-md--Width: #{pf-size-prem(36px)};
17
17
  --#{$avatar}--m-md--Height: #{pf-size-prem(36px)};
18
- --#{$avatar}--m-md--FontSize: #{pf-size-prem(36px)};
18
+ --#{$avatar}--m-md--FontSize: calc(#{pf-size-prem(36px)} / 1.414);
19
19
  --#{$avatar}--m-lg--Width: #{pf-size-prem(72px)};
20
20
  --#{$avatar}--m-lg--Height: #{pf-size-prem(72px)};
21
- --#{$avatar}--m-lg--FontSize: #{pf-size-prem(72px)};
21
+ --#{$avatar}--m-lg--FontSize: calc(#{pf-size-prem(72px)} / 1.414);
22
22
  --#{$avatar}--m-xl--Width: #{pf-size-prem(128px)};
23
23
  --#{$avatar}--m-xl--Height: #{pf-size-prem(128px)};
24
- --#{$avatar}--m-xl--FontSize: #{pf-size-prem(128px)};
24
+ --#{$avatar}--m-xl--FontSize: calc(#{pf-size-prem(128px)} / 1.414);
25
25
 
26
26
  // Bordered
27
27
  --#{$avatar}--m-bordered--BorderColor: var(--pf-t--global--border--color--default);
@@ -83,9 +83,19 @@ $pf-v6-c-avatar--sizes: "sm", "md", "lg", "xl";
83
83
  width: var(--#{$avatar}--Width);
84
84
  height: var(--#{$avatar}--Height);
85
85
  font-size: var(--#{$avatar}--FontSize);
86
+ color: var(--#{$avatar}--Color, inherit);
87
+ background-color: var(--#{$avatar}--BackgroundColor, transparent);
86
88
  border: var(--#{$avatar}--BorderWidth) solid var(--#{$avatar}--BorderColor);
87
89
  border-radius: var(--#{$avatar}--BorderRadius);
88
90
 
91
+ @at-root div#{&} {
92
+ display: inline-flex;
93
+ align-items: center;
94
+ justify-content: center;
95
+ overflow: clip;
96
+ vertical-align: middle;
97
+ }
98
+
89
99
  &.pf-m-bordered {
90
100
  --#{$avatar}--BorderColor: var(--#{$avatar}--m-bordered--BorderColor);
91
101
  --#{$avatar}--BorderWidth: var(--#{$avatar}--m-bordered--BorderWidth);
@@ -120,84 +130,75 @@ $pf-v6-c-avatar--sizes: "sm", "md", "lg", "xl";
120
130
 
121
131
  &.pf-m-colorful {
122
132
  --#{$avatar}--BorderWidth: var(--#{$avatar}--m-colorful--BorderWidth);
133
+ }
123
134
 
124
- display: inline-flex;
125
- align-items: center;
126
- justify-content: center;
127
- overflow: clip;
128
- vertical-align: middle;
129
- color: var(--#{$avatar}--m-colorful--Color, inherit);
130
- background-color: var(--#{$avatar}--m-colorful--BackgroundColor, transparent);
131
- border-color: var(--#{$avatar}--m-colorful--BorderColor, transparent);
132
-
133
- &.pf-m-red {
134
- --#{$avatar}--m-colorful--BackgroundColor: var(--#{$avatar}--m-red--BackgroundColor);
135
- --#{$avatar}--m-colorful--Color: var(--#{$avatar}--m-red--Color);
136
- --#{$avatar}--m-colorful--BorderColor: var(--#{$avatar}--m-red--BorderColor);
137
- --#{$avatar}__initials--Color: var(--#{$avatar}--m-red__initials--Color);
138
- }
139
-
140
- &.pf-m-orangered {
141
- --#{$avatar}--m-colorful--BackgroundColor: var(--#{$avatar}--m-orangered--BackgroundColor);
142
- --#{$avatar}--m-colorful--Color: var(--#{$avatar}--m-orangered--Color);
143
- --#{$avatar}--m-colorful--BorderColor: var(--#{$avatar}--m-orangered--BorderColor);
144
- --#{$avatar}__initials--Color: var(--#{$avatar}--m-orangered__initials--Color);
145
- }
146
-
147
- &.pf-m-orange {
148
- --#{$avatar}--m-colorful--BackgroundColor: var(--#{$avatar}--m-orange--BackgroundColor);
149
- --#{$avatar}--m-colorful--Color: var(--#{$avatar}--m-orange--Color);
150
- --#{$avatar}--m-colorful--BorderColor: var(--#{$avatar}--m-orange--BorderColor);
151
- --#{$avatar}__initials--Color: var(--#{$avatar}--m-orange__initials--Color);
152
- }
153
-
154
- &.pf-m-yellow {
155
- --#{$avatar}--m-colorful--BackgroundColor: var(--#{$avatar}--m-yellow--BackgroundColor);
156
- --#{$avatar}--m-colorful--Color: var(--#{$avatar}--m-yellow--Color);
157
- --#{$avatar}--m-colorful--BorderColor: var(--#{$avatar}--m-yellow--BorderColor);
158
- --#{$avatar}__initials--Color: var(--#{$avatar}--m-yellow__initials--Color);
159
- }
160
-
161
- &.pf-m-green {
162
- --#{$avatar}--m-colorful--BackgroundColor: var(--#{$avatar}--m-green--BackgroundColor);
163
- --#{$avatar}--m-colorful--Color: var(--#{$avatar}--m-green--Color);
164
- --#{$avatar}--m-colorful--BorderColor: var(--#{$avatar}--m-green--BorderColor);
165
- --#{$avatar}__initials--Color: var(--#{$avatar}--m-green__initials--Color);
166
- }
167
-
168
- &.pf-m-teal {
169
- --#{$avatar}--m-colorful--BackgroundColor: var(--#{$avatar}--m-teal--BackgroundColor);
170
- --#{$avatar}--m-colorful--Color: var(--#{$avatar}--m-teal--Color);
171
- --#{$avatar}--m-colorful--BorderColor: var(--#{$avatar}--m-teal--BorderColor);
172
- --#{$avatar}__initials--Color: var(--#{$avatar}--m-teal__initials--Color);
173
- }
174
-
175
- &.pf-m-blue {
176
- --#{$avatar}--m-colorful--BackgroundColor: var(--#{$avatar}--m-blue--BackgroundColor);
177
- --#{$avatar}--m-colorful--Color: var(--#{$avatar}--m-blue--Color);
178
- --#{$avatar}--m-colorful--BorderColor: var(--#{$avatar}--m-blue--BorderColor);
179
- --#{$avatar}__initials--Color: var(--#{$avatar}--m-blue__initials--Color);
180
- }
181
-
182
- &.pf-m-purple {
183
- --#{$avatar}--m-colorful--BackgroundColor: var(--#{$avatar}--m-purple--BackgroundColor);
184
- --#{$avatar}--m-colorful--Color: var(--#{$avatar}--m-purple--Color);
185
- --#{$avatar}--m-colorful--BorderColor: var(--#{$avatar}--m-purple--BorderColor);
186
- --#{$avatar}__initials--Color: var(--#{$avatar}--m-purple__initials--Color);
187
- }
188
-
189
- &.pf-m-gray {
190
- --#{$avatar}--m-colorful--BackgroundColor: var(--#{$avatar}--m-gray--BackgroundColor);
191
- --#{$avatar}--m-colorful--Color: var(--#{$avatar}--m-gray--Color);
192
- --#{$avatar}--m-colorful--BorderColor: var(--#{$avatar}--m-gray--BorderColor);
193
- --#{$avatar}__initials--Color: var(--#{$avatar}--m-gray__initials--Color);
194
- }
135
+ &.pf-m-red {
136
+ --#{$avatar}--BackgroundColor: var(--#{$avatar}--m-red--BackgroundColor);
137
+ --#{$avatar}--Color: var(--#{$avatar}--m-red--Color);
138
+ --#{$avatar}--BorderColor: var(--#{$avatar}--m-red--BorderColor);
139
+ --#{$avatar}__initials--Color: var(--#{$avatar}--m-red__initials--Color);
140
+ }
141
+
142
+ &.pf-m-orangered {
143
+ --#{$avatar}--BackgroundColor: var(--#{$avatar}--m-orangered--BackgroundColor);
144
+ --#{$avatar}--Color: var(--#{$avatar}--m-orangered--Color);
145
+ --#{$avatar}--BorderColor: var(--#{$avatar}--m-orangered--BorderColor);
146
+ --#{$avatar}__initials--Color: var(--#{$avatar}--m-orangered__initials--Color);
147
+ }
148
+
149
+ &.pf-m-orange {
150
+ --#{$avatar}--BackgroundColor: var(--#{$avatar}--m-orange--BackgroundColor);
151
+ --#{$avatar}--Color: var(--#{$avatar}--m-orange--Color);
152
+ --#{$avatar}--BorderColor: var(--#{$avatar}--m-orange--BorderColor);
153
+ --#{$avatar}__initials--Color: var(--#{$avatar}--m-orange__initials--Color);
154
+ }
155
+
156
+ &.pf-m-yellow {
157
+ --#{$avatar}--BackgroundColor: var(--#{$avatar}--m-yellow--BackgroundColor);
158
+ --#{$avatar}--Color: var(--#{$avatar}--m-yellow--Color);
159
+ --#{$avatar}--BorderColor: var(--#{$avatar}--m-yellow--BorderColor);
160
+ --#{$avatar}__initials--Color: var(--#{$avatar}--m-yellow__initials--Color);
161
+ }
162
+
163
+ &.pf-m-green {
164
+ --#{$avatar}--BackgroundColor: var(--#{$avatar}--m-green--BackgroundColor);
165
+ --#{$avatar}--Color: var(--#{$avatar}--m-green--Color);
166
+ --#{$avatar}--BorderColor: var(--#{$avatar}--m-green--BorderColor);
167
+ --#{$avatar}__initials--Color: var(--#{$avatar}--m-green__initials--Color);
195
168
  }
196
169
 
197
- .#{$avatar}__initials {
198
- font-family: var(--#{$avatar}__initials--FontFamily, revert);
199
- font-size: var(--#{$avatar}__initials--FontSize);
200
- font-weight: var(--#{$avatar}__initials--FontWeight);
201
- color: var(--#{$avatar}__initials--Color);
170
+ &.pf-m-teal {
171
+ --#{$avatar}--BackgroundColor: var(--#{$avatar}--m-teal--BackgroundColor);
172
+ --#{$avatar}--Color: var(--#{$avatar}--m-teal--Color);
173
+ --#{$avatar}--BorderColor: var(--#{$avatar}--m-teal--BorderColor);
174
+ --#{$avatar}__initials--Color: var(--#{$avatar}--m-teal__initials--Color);
202
175
  }
176
+
177
+ &.pf-m-blue {
178
+ --#{$avatar}--BackgroundColor: var(--#{$avatar}--m-blue--BackgroundColor);
179
+ --#{$avatar}--Color: var(--#{$avatar}--m-blue--Color);
180
+ --#{$avatar}--BorderColor: var(--#{$avatar}--m-blue--BorderColor);
181
+ --#{$avatar}__initials--Color: var(--#{$avatar}--m-blue__initials--Color);
182
+ }
183
+
184
+ &.pf-m-purple {
185
+ --#{$avatar}--BackgroundColor: var(--#{$avatar}--m-purple--BackgroundColor);
186
+ --#{$avatar}--Color: var(--#{$avatar}--m-purple--Color);
187
+ --#{$avatar}--BorderColor: var(--#{$avatar}--m-purple--BorderColor);
188
+ --#{$avatar}__initials--Color: var(--#{$avatar}--m-purple__initials--Color);
189
+ }
190
+
191
+ &.pf-m-gray {
192
+ --#{$avatar}--BackgroundColor: var(--#{$avatar}--m-gray--BackgroundColor);
193
+ --#{$avatar}--Color: var(--#{$avatar}--m-gray--Color);
194
+ --#{$avatar}--BorderColor: var(--#{$avatar}--m-gray--BorderColor);
195
+ --#{$avatar}__initials--Color: var(--#{$avatar}--m-gray__initials--Color);
196
+ }
197
+ }
198
+
199
+ .#{$avatar}__initials {
200
+ font-family: var(--#{$avatar}__initials--FontFamily, revert);
201
+ font-size: var(--#{$avatar}__initials--FontSize);
202
+ font-weight: var(--#{$avatar}__initials--FontWeight);
203
+ color: var(--#{$avatar}__initials--Color);
203
204
  }
@@ -21,7 +21,9 @@
21
21
  --pf-v6-c-banner--link--Color: var(--pf-v6-c-banner--Color);
22
22
  --pf-v6-c-banner--link--TextDecoration: underline;
23
23
  --pf-v6-c-banner--link--hover--Color: var(--pf-v6-c-banner--Color);
24
+ --pf-v6-c-banner--link--clicked--Color: var(--pf-v6-c-banner--Color);
24
25
  --pf-v6-c-banner--link--disabled--Color: var(--pf-t--global--text--color--disabled);
26
+ --pf-v6-c-banner--link--TextDecorationColor: currentcolor;
25
27
  --pf-v6-c-banner--m-sticky--ZIndex: var(--pf-t--global--z-index--md);
26
28
  --pf-v6-c-banner--m-sticky--BoxShadow: var(--pf-t--global--box-shadow--md);
27
29
  --pf-v6-c-banner--m-danger--BackgroundColor: var(--pf-t--global--color--status--danger--default);
@@ -130,6 +132,7 @@
130
132
  .pf-v6-c-banner a {
131
133
  color: var(--pf-v6-c-banner--link--Color);
132
134
  text-decoration-line: var(--pf-v6-c-banner--link--TextDecoration);
135
+ text-decoration-color: var(--pf-v6-c-banner--a--TextDecorationColor);
133
136
  }
134
137
  .pf-v6-c-banner a:hover:not(.pf-m-disabled) {
135
138
  --pf-v6-c-banner--link--Color: var(--pf-v6-c-banner--link--hover--Color);
@@ -141,7 +144,11 @@
141
144
  .pf-v6-c-banner .pf-v6-c-button.pf-m-inline {
142
145
  --pf-v6-c-button--m-link--m-inline--Color: var(--pf-v6-c-banner--link--Color);
143
146
  --pf-v6-c-button--m-link--m-inline--hover--Color: var(--pf-v6-c-banner--link--hover--Color);
147
+ --pf-v6-c-button--m-link--m-inline--m-clicked--Color: var(--pf-v6-c-banner--link--clicked--Color);
144
148
  --pf-v6-c-button--disabled--Color: var(--pf-v6-c-banner--link--disabled--Color);
149
+ --pf-v6-c-button--m-link--m-inline--TextDecorationColor: var(--pf-v6-c-banner--link--TextDecorationColor);
150
+ --pf-v6-c-button--m-link--m-inline--hover--TextDecorationColor: var(--pf-v6-c-banner--link--TextDecorationColor);
151
+ --pf-v6-c-button--m-link--m-inline--m-clicked--TextDecorationColor: var(--pf-v6-c-banner--link--TextDecorationColor);
145
152
  text-decoration-line: var(--pf-v6-c-banner--link--TextDecoration);
146
153
  }
147
154
  .pf-v6-c-banner .pf-v6-c-button.pf-m-inline:disabled, .pf-v6-c-banner .pf-v6-c-button.pf-m-inline.pf-m-disabled {
@@ -22,7 +22,9 @@
22
22
  --#{$banner}--link--Color: var(--#{$banner}--Color);
23
23
  --#{$banner}--link--TextDecoration: underline;
24
24
  --#{$banner}--link--hover--Color: var(--#{$banner}--Color);
25
+ --#{$banner}--link--clicked--Color: var(--#{$banner}--Color);
25
26
  --#{$banner}--link--disabled--Color: var(--pf-t--global--text--color--disabled);
27
+ --#{$banner}--link--TextDecorationColor: currentcolor;
26
28
 
27
29
  // modifier variables
28
30
  --#{$banner}--m-sticky--ZIndex: var(--pf-t--global--z-index--md);
@@ -154,6 +156,7 @@
154
156
  a {
155
157
  color: var(--#{$banner}--link--Color);
156
158
  text-decoration-line: var(--#{$banner}--link--TextDecoration);
159
+ text-decoration-color: var(--#{$banner}--a--TextDecorationColor);
157
160
 
158
161
  &:hover:not(.pf-m-disabled) {
159
162
  --#{$banner}--link--Color: var(--#{$banner}--link--hover--Color);
@@ -171,7 +174,11 @@
171
174
  .#{$button}.pf-m-inline {
172
175
  --#{$button}--m-link--m-inline--Color: var(--#{$banner}--link--Color);
173
176
  --#{$button}--m-link--m-inline--hover--Color: var(--#{$banner}--link--hover--Color);
177
+ --#{$button}--m-link--m-inline--m-clicked--Color: var(--#{$banner}--link--clicked--Color);
174
178
  --#{$button}--disabled--Color: var(--#{$banner}--link--disabled--Color);
179
+ --#{$button}--m-link--m-inline--TextDecorationColor: var(--#{$banner}--link--TextDecorationColor);
180
+ --#{$button}--m-link--m-inline--hover--TextDecorationColor: var(--#{$banner}--link--TextDecorationColor);
181
+ --#{$button}--m-link--m-inline--m-clicked--TextDecorationColor: var(--#{$banner}--link--TextDecorationColor);
175
182
 
176
183
  text-decoration-line: var(--#{$banner}--link--TextDecoration);
177
184
 
@@ -126,6 +126,10 @@
126
126
  --pf-v6-c-button--m-link--m-inline--hover--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--hover);
127
127
  --pf-v6-c-button--m-link--m-inline--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--hover);
128
128
  --pf-v6-c-button--m-link--m-inline--hover--TextUnderlineOffset: var(--pf-t--global--text-decoration--offset--hover);
129
+ --pf-v6-c-button--m-link--m-inline--m-clicked--TextDecorationColor: var(--pf-t--global--text-decoration--color--hover);
130
+ --pf-v6-c-button--m-link--m-inline--m-clicked--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--hover);
131
+ --pf-v6-c-button--m-link--m-inline--m-clicked--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--hover);
132
+ --pf-v6-c-button--m-link--m-inline--m-clicked--TextUnderlineOffset: var(--pf-t--global--text-decoration--offset--hover);
129
133
  --pf-v6-c-button--m-link--m-inline--TransitionProperty: color, text-underline-offset;
130
134
  --pf-v6-c-button--m-link--m-inline--TransitionDuration: var(--pf-t--global--motion--duration--fade--default), var(--pf-t--global--motion--duration--lg);
131
135
  --pf-v6-c-button--m-link--m-inline--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--accelerate), var(--pf-t--global--motion--timing-function--default);
@@ -140,6 +144,8 @@
140
144
  --pf-v6-c-button--m-link--m-inline__icon--Color: var(--pf-t--global--icon--color--brand--default);
141
145
  --pf-v6-c-button--m-link--m-inline--hover--Color: var(--pf-t--global--text--color--brand--hover);
142
146
  --pf-v6-c-button--m-link--m-inline--hover__icon--Color: var(--pf-t--global--icon--color--brand--hover);
147
+ --pf-v6-c-button--m-link--m-inline--m-clicked--Color: var(--pf-t--global--text--color--brand--clicked);
148
+ --pf-v6-c-button--m-link--m-inline--m-clicked__icon--Color: var(--pf-t--global--icon--color--brand--clicked);
143
149
  --pf-v6-c-button--m-plain--BorderRadius: var(--pf-t--global--border--radius--action--plain--default);
144
150
  --pf-v6-c-button--m-plain--PaddingInlineEnd: var(--pf-t--global--spacer--action--horizontal--plain--default);
145
151
  --pf-v6-c-button--m-plain--PaddingInlineStart: var(--pf-t--global--spacer--action--horizontal--plain--default);
@@ -512,9 +518,14 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
512
518
  --pf-v6-c-button--hover--TextDecorationLine: var(--pf-v6-c-button--m-link--m-inline--hover--TextDecorationLine);
513
519
  --pf-v6-c-button--hover--TextDecorationStyle: var(--pf-v6-c-button--m-link--m-inline--hover--TextDecorationStyle);
514
520
  --pf-v6-c-button--hover--TextDecorationColor: var(--pf-v6-c-button--m-link--m-inline--hover--TextDecorationColor);
515
- --pf-v6-c-button--hover--TextUnderlineOffset: var(--pf-v6-c-button--m-link--m-inline--TextUnderlineOffset);
521
+ --pf-v6-c-button--m-clicked--TextDecorationLine: var(--pf-v6-c-button--m-link--m-inline--m-clicked--TextDecorationLine);
522
+ --pf-v6-c-button--m-clicked--TextDecorationStyle: var(--pf-v6-c-button--m-link--m-inline--m-clicked--TextDecorationStyle);
523
+ --pf-v6-c-button--m-clicked--TextDecorationColor: var(--pf-v6-c-button--m-link--m-inline--m-clicked--TextDecorationColor);
524
+ --pf-v6-c-button--m-clicked--TextUnderlineOffset: var(--pf-v6-c-button--m-link--m-inline--m-clicked--TextUnderlineOffset);
516
525
  --pf-v6-c-button--m-link--hover--Color: var(--pf-v6-c-button--m-link--m-inline--hover--Color);
517
526
  --pf-v6-c-button--m-link--hover__icon--Color: var(--pf-v6-c-button--m-link--m-inline--hover__icon--Color);
527
+ --pf-v6-c-button--m-link--m-clicked--Color: var(--pf-v6-c-button--m-link--m-inline--m-clicked--Color);
528
+ --pf-v6-c-button--m-link--m-clicked__icon--Color: var(--pf-v6-c-button--m-link--m-inline--m-clicked__icon--Color);
518
529
  --pf-v6-c-button--BorderWidth: 0;
519
530
  --pf-v6-c-button--hover--BorderWidth: 0;
520
531
  --pf-v6-c-button--m-clicked--BorderWidth: 0;
@@ -527,6 +538,9 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
527
538
  .pf-v6-c-button.pf-m-link.pf-m-inline:hover, .pf-v6-c-button.pf-m-link.pf-m-inline:focus {
528
539
  --pf-v6-c-button--m-link--m-inline--TextUnderlineOffset: var(--pf-v6-c-button--m-link--m-inline--hover--TextUnderlineOffset);
529
540
  }
541
+ .pf-v6-c-button.pf-m-link.pf-m-inline:active, .pf-v6-c-button.pf-m-link.pf-m-inline.pf-m-clicked {
542
+ --pf-v6-c-button--m-link--m-inline--TextUnderlineOffset: var(--pf-v6-c-button--m-link--m-inline--m-clicked--TextUnderlineOffset);
543
+ }
530
544
  .pf-v6-c-button.pf-m-link.pf-m-danger {
531
545
  --pf-v6-c-button--m-danger--Color: var(--pf-v6-c-button--m-link--m-danger--Color);
532
546
  --pf-v6-c-button--m-danger--BackgroundColor: var(--pf-v6-c-button--m-link--m-danger--BackgroundColor);
@@ -144,6 +144,10 @@
144
144
  --#{$button}--m-link--m-inline--hover--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--hover);
145
145
  --#{$button}--m-link--m-inline--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--hover);
146
146
  --#{$button}--m-link--m-inline--hover--TextUnderlineOffset: var(--pf-t--global--text-decoration--offset--hover);
147
+ --#{$button}--m-link--m-inline--m-clicked--TextDecorationColor: var(--pf-t--global--text-decoration--color--hover);
148
+ --#{$button}--m-link--m-inline--m-clicked--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--hover);
149
+ --#{$button}--m-link--m-inline--m-clicked--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--hover);
150
+ --#{$button}--m-link--m-inline--m-clicked--TextUnderlineOffset: var(--pf-t--global--text-decoration--offset--hover);
147
151
  --#{$button}--m-link--m-inline--TransitionProperty: color, text-underline-offset;
148
152
  --#{$button}--m-link--m-inline--TransitionDuration: var(--pf-t--global--motion--duration--fade--default), var(--pf-t--global--motion--duration--lg);
149
153
  --#{$button}--m-link--m-inline--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--accelerate), var(--pf-t--global--motion--timing-function--default);
@@ -158,6 +162,8 @@
158
162
  --#{$button}--m-link--m-inline__icon--Color: var(--pf-t--global--icon--color--brand--default);
159
163
  --#{$button}--m-link--m-inline--hover--Color: var(--pf-t--global--text--color--brand--hover);
160
164
  --#{$button}--m-link--m-inline--hover__icon--Color: var(--pf-t--global--icon--color--brand--hover);
165
+ --#{$button}--m-link--m-inline--m-clicked--Color: var(--pf-t--global--text--color--brand--clicked);
166
+ --#{$button}--m-link--m-inline--m-clicked__icon--Color: var(--pf-t--global--icon--color--brand--clicked);
161
167
 
162
168
  // Plain
163
169
  --#{$button}--m-plain--BorderRadius: var(--pf-t--global--border--radius--action--plain--default);
@@ -588,9 +594,14 @@
588
594
  --#{$button}--hover--TextDecorationLine: var(--#{$button}--m-link--m-inline--hover--TextDecorationLine);
589
595
  --#{$button}--hover--TextDecorationStyle: var(--#{$button}--m-link--m-inline--hover--TextDecorationStyle);
590
596
  --#{$button}--hover--TextDecorationColor: var(--#{$button}--m-link--m-inline--hover--TextDecorationColor);
591
- --#{$button}--hover--TextUnderlineOffset: var(--#{$button}--m-link--m-inline--TextUnderlineOffset);
597
+ --#{$button}--m-clicked--TextDecorationLine: var(--#{$button}--m-link--m-inline--m-clicked--TextDecorationLine);
598
+ --#{$button}--m-clicked--TextDecorationStyle: var(--#{$button}--m-link--m-inline--m-clicked--TextDecorationStyle);
599
+ --#{$button}--m-clicked--TextDecorationColor: var(--#{$button}--m-link--m-inline--m-clicked--TextDecorationColor);
600
+ --#{$button}--m-clicked--TextUnderlineOffset: var(--#{$button}--m-link--m-inline--m-clicked--TextUnderlineOffset);
592
601
  --#{$button}--m-link--hover--Color: var(--#{$button}--m-link--m-inline--hover--Color);
593
602
  --#{$button}--m-link--hover__icon--Color: var(--#{$button}--m-link--m-inline--hover__icon--Color);
603
+ --#{$button}--m-link--m-clicked--Color: var(--#{$button}--m-link--m-inline--m-clicked--Color);
604
+ --#{$button}--m-link--m-clicked__icon--Color: var(--#{$button}--m-link--m-inline--m-clicked__icon--Color);
594
605
  --#{$button}--BorderWidth: 0;
595
606
  --#{$button}--hover--BorderWidth: 0;
596
607
  --#{$button}--m-clicked--BorderWidth: 0;
@@ -605,6 +616,11 @@
605
616
  &:focus {
606
617
  --#{$button}--m-link--m-inline--TextUnderlineOffset: var(--#{$button}--m-link--m-inline--hover--TextUnderlineOffset);
607
618
  }
619
+
620
+ &:active,
621
+ &.pf-m-clicked {
622
+ --#{$button}--m-link--m-inline--TextUnderlineOffset: var(--#{$button}--m-link--m-inline--m-clicked--TextUnderlineOffset);
623
+ }
608
624
  }
609
625
 
610
626
  &.pf-m-danger {
@@ -3,6 +3,7 @@
3
3
  --pf-v6-c-draggable--m-dragging--Cursor: grabbing;
4
4
  --pf-v6-c-draggable--m-dragging--BoxShadow: var(--pf-t--global--box-shadow--md);
5
5
  --pf-v6-c-draggable--m-dragging--BackgroundColor: transparent;
6
+ --pf-v6-c-draggable--m-dragging--BorderRadius: var(--pf-t--global--border--radius--small);
6
7
  --pf-v6-c-draggable--m-dragging--after--BorderWidth: var(--pf-t--global--border--width--regular);
7
8
  --pf-v6-c-draggable--m-dragging--after--BorderColor: var(--pf-t--global--border--color--brand--default);
8
9
  --pf-v6-c-draggable--m-dragging--after--BorderRadius: var(--pf-t--global--border--radius--small);
@@ -17,6 +18,7 @@
17
18
  --pf-v6-c-draggable--Cursor: var(--pf-v6-c-draggable--m-dragging--Cursor);
18
19
  position: relative;
19
20
  background-color: var(--pf-v6-c-draggable--m-dragging--BackgroundColor);
21
+ border-radius: var(--pf-v6-c-draggable--m-dragging--BorderRadius);
20
22
  box-shadow: var(--pf-v6-c-draggable--m-dragging--BoxShadow);
21
23
  }
22
24
  .pf-v6-c-draggable.pf-m-dragging::after {
@@ -36,6 +38,7 @@
36
38
 
37
39
  .pf-v6-c-droppable {
38
40
  --pf-v6-c-droppable--before--BackgroundColor: transparent;
41
+ --pf-v6-c-droppable--before--BorderRadius: var(--pf-t--global--border--radius--small);
39
42
  --pf-v6-c-droppable--before--Opacity: 0;
40
43
  --pf-v6-c-droppable--after--BorderWidth: 0;
41
44
  --pf-v6-c-droppable--after--BorderColor: transparent;
@@ -58,6 +61,7 @@
58
61
  }
59
62
  .pf-v6-c-droppable::before {
60
63
  background-color: var(--pf-v6-c-droppable--before--BackgroundColor);
64
+ border-radius: var(--pf-v6-c-droppable--before--BorderRadius);
61
65
  opacity: var(--pf-v6-c-droppable--before--Opacity);
62
66
  }
63
67
  .pf-v6-c-droppable::after {
@@ -5,6 +5,7 @@
5
5
  --#{$draggable}--m-dragging--Cursor: grabbing;
6
6
  --#{$draggable}--m-dragging--BoxShadow: var(--pf-t--global--box-shadow--md);
7
7
  --#{$draggable}--m-dragging--BackgroundColor: transparent;
8
+ --#{$draggable}--m-dragging--BorderRadius: var(--pf-t--global--border--radius--small);
8
9
  --#{$draggable}--m-dragging--after--BorderWidth: var(--pf-t--global--border--width--regular);
9
10
  --#{$draggable}--m-dragging--after--BorderColor: var(--pf-t--global--border--color--brand--default);
10
11
  --#{$draggable}--m-dragging--after--BorderRadius: var(--pf-t--global--border--radius--small);
@@ -20,6 +21,7 @@
20
21
 
21
22
  position: relative;
22
23
  background-color: var(--#{$draggable}--m-dragging--BackgroundColor);
24
+ border-radius: var(--#{$draggable}--m-dragging--BorderRadius);
23
25
  box-shadow: var(--#{$draggable}--m-dragging--BoxShadow);
24
26
 
25
27
  &::after {
@@ -42,6 +44,7 @@
42
44
 
43
45
  @include pf-root($droppable) {
44
46
  --#{$droppable}--before--BackgroundColor: transparent;
47
+ --#{$droppable}--before--BorderRadius: var(--pf-t--global--border--radius--small);
45
48
  --#{$droppable}--before--Opacity: 0;
46
49
  --#{$droppable}--after--BorderWidth: 0;
47
50
  --#{$droppable}--after--BorderColor: transparent;
@@ -67,6 +70,7 @@
67
70
 
68
71
  &::before {
69
72
  background-color: var(--#{$droppable}--before--BackgroundColor);
73
+ border-radius: var(--#{$droppable}--before--BorderRadius);
70
74
  opacity: var(--#{$droppable}--before--Opacity);
71
75
  }
72
76
 
@@ -14,11 +14,12 @@
14
14
  --pf-v6-c-page__dock--m-expanded__dock-main--BoxShadow: var(--pf-t--global--box-shadow--sm--right);
15
15
  --pf-v6-c-page__dock-main--desktop--BoxShadow: var(--pf-t--global--box-shadow--glass--default, none);
16
16
  --pf-v6-c-page__dock-main--BackdropFilter: var(--pf-t--global--background--filter--glass--blur--primary, revert);
17
- --pf-v6-c-page__dock-main--BorderInlineEndWidth: var(--pf-t--global--border--width--glass--default, 0);
17
+ --pf-v6-c-page__dock-main--BorderInlineEndWidth: 0;
18
18
  --pf-v6-c-page__dock-main--BorderInlineEndColor: transparent;
19
- --pf-v6-c-page__dock-main--desktop--BorderInlineEndColor: var(--pf-t--global--border--color--glass--default, transparent);
19
+ --pf-v6-c-page__dock-main--desktop--BorderInlineEndWidth: var(--pf-t--global--border--width--regular);
20
+ --pf-v6-c-page__dock-main--desktop--BorderInlineEndColor: var(--pf-t--global--border--color--glass--default, var(--pf-t--global--border--color--subtle));
20
21
  --pf-v6-c-page__dock--m-expanded__dock-main--BorderInlineEndWidth: var(--pf-t--global--border--width--glass--default, var(--pf-t--global--border--width--regular));
21
- --pf-v6-c-page__dock--m-expanded__dock-main--BorderInlineEndColor: var(--pf-t--global--border--color--glass--default, var(--pf-t--global--border--color--subtle));
22
+ --pf-v6-c-page__dock--m-expanded__dock-main--BorderInlineEndColor: transparent;
22
23
  --pf-v6-c-page--m-dock__main-container--MaxHeight: calc(100% - var(--pf-t--global--spacer--inset--page-chrome) * 2);
23
24
  --pf-v6-c-page--m-dock__main-container--MarginBlockStart: var(--pf-t--global--spacer--inset--page-chrome);
24
25
  --pf-v6-c-page--m-dock__main-container--desktop--MarginBlockStart: var(--pf-t--global--spacer--inset--page-chrome);
@@ -414,8 +415,6 @@
414
415
  }
415
416
  @media (min-width: 62rem) {
416
417
  .pf-v6-c-page__dock {
417
- --pf-v6-c-page__dock-main--BackgroundColor: var(--pf-v6-c-page__dock-main--desktop--BackgroundColor);
418
- --pf-v6-c-page__dock-main--BorderInlineEndColor: var(--pf-v6-c-page__dock-main--desktop--BorderInlineEndColor);
419
418
  position: revert;
420
419
  inset: revert;
421
420
  visibility: revert;
@@ -443,6 +442,9 @@
443
442
  }
444
443
  @media (min-width: 62rem) {
445
444
  .pf-v6-c-page__dock-main {
445
+ --pf-v6-c-page__dock-main--BorderInlineEndWidth: var(--pf-v6-c-page__dock-main--desktop--BorderInlineEndWidth);
446
+ --pf-v6-c-page__dock-main--BackgroundColor: var(--pf-v6-c-page__dock-main--desktop--BackgroundColor);
447
+ --pf-v6-c-page__dock-main--BorderInlineEndColor: var(--pf-v6-c-page__dock-main--desktop--BorderInlineEndColor);
446
448
  --pf-v6-c-page__dock-main--BoxShadow: var(--pf-v6-c-page__dock-main--desktop--BoxShadow);
447
449
  --pf-v6-c-page__dock--m-expanded__dock-main--BoxShadow: var(--pf-v6-c-page__dock-main--desktop--BoxShadow);
448
450
  --pf-v6-c-page__dock--m-expanded__dock-main--BorderInlineEndWidth: var(--pf-v6-c-page__dock-main--BorderInlineEndWidth);
@@ -27,11 +27,12 @@ $pf-page-v6--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
27
27
  --#{$page}__dock--m-expanded__dock-main--BoxShadow: var(--pf-t--global--box-shadow--sm--right);
28
28
  --#{$page}__dock-main--desktop--BoxShadow: var(--pf-t--global--box-shadow--glass--default, none);
29
29
  --#{$page}__dock-main--BackdropFilter: var(--pf-t--global--background--filter--glass--blur--primary, revert);
30
- --#{$page}__dock-main--BorderInlineEndWidth: var(--pf-t--global--border--width--glass--default, 0);
30
+ --#{$page}__dock-main--BorderInlineEndWidth: 0;
31
31
  --#{$page}__dock-main--BorderInlineEndColor: transparent;
32
- --#{$page}__dock-main--desktop--BorderInlineEndColor: var(--pf-t--global--border--color--glass--default, transparent);
32
+ --#{$page}__dock-main--desktop--BorderInlineEndWidth: var(--pf-t--global--border--width--regular);
33
+ --#{$page}__dock-main--desktop--BorderInlineEndColor: var(--pf-t--global--border--color--glass--default, var(--pf-t--global--border--color--subtle));
33
34
  --#{$page}__dock--m-expanded__dock-main--BorderInlineEndWidth: var(--pf-t--global--border--width--glass--default, var(--pf-t--global--border--width--regular));
34
- --#{$page}__dock--m-expanded__dock-main--BorderInlineEndColor: var(--pf-t--global--border--color--glass--default, var(--pf-t--global--border--color--subtle));
35
+ --#{$page}__dock--m-expanded__dock-main--BorderInlineEndColor: transparent;
35
36
 
36
37
  // Docked nav
37
38
  --#{$page}--m-dock__main-container--MaxHeight: calc(100% - var(--pf-t--global--spacer--inset--page-chrome) * 2);
@@ -285,7 +286,7 @@ $pf-page-v6--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
285
286
  --#{$page}__main-container--MarginBlockStart: var(--#{$page}__main-container--MarginBlockStart--glass);
286
287
  --#{$page}__main-container--MaxHeight: var(--#{$page}__main-container--MaxHeight--glass);
287
288
  --#{$page}--m-dock__main-container--MaxHeight: var(--#{$page}--m-dock__main-container--MaxHeight--glass);
288
- --#{$page}--m-dock__main-container--MarginBlockStart: var(--#{$page}--m-dock__main-container--MarginBlockStart--glass);
289
+ --#{$page}--m-dock__main-container--MarginBlockStart: var(--#{$page}--m-dock__main-container--MarginBlockStart--glass);
289
290
  }
290
291
 
291
292
  @media (min-width: $pf-v6-global--breakpoint--xl) {
@@ -447,9 +448,6 @@ $pf-page-v6--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
447
448
  }
448
449
 
449
450
  @media (min-width: $pf-v6-global--breakpoint--dock--desktop) {
450
- --#{$page}__dock-main--BackgroundColor: var(--#{$page}__dock-main--desktop--BackgroundColor);
451
- --#{$page}__dock-main--BorderInlineEndColor: var(--#{$page}__dock-main--desktop--BorderInlineEndColor);
452
-
453
451
  position: revert;
454
452
  inset: revert;
455
453
  visibility: revert;
@@ -479,6 +477,9 @@ $pf-page-v6--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
479
477
  }
480
478
 
481
479
  @media (min-width: $pf-v6-global--breakpoint--dock--desktop) {
480
+ --#{$page}__dock-main--BorderInlineEndWidth: var(--#{$page}__dock-main--desktop--BorderInlineEndWidth);
481
+ --#{$page}__dock-main--BackgroundColor: var(--#{$page}__dock-main--desktop--BackgroundColor);
482
+ --#{$page}__dock-main--BorderInlineEndColor: var(--#{$page}__dock-main--desktop--BorderInlineEndColor);
482
483
  --#{$page}__dock-main--BoxShadow: var(--#{$page}__dock-main--desktop--BoxShadow);
483
484
  --#{$page}__dock--m-expanded__dock-main--BoxShadow: var(--#{$page}__dock-main--desktop--BoxShadow);
484
485
  --#{$page}__dock--m-expanded__dock-main--BorderInlineEndWidth: var(--#{$page}__dock-main--BorderInlineEndWidth);
@@ -975,4 +976,4 @@ $pf-page-v6--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
975
976
  flex-grow: 1;
976
977
  }
977
978
  }
978
- }
979
+ }
@@ -5,7 +5,7 @@
5
5
  --pf-v6-c-panel--BackgroundColor: var(--pf-t--global--background--color--primary--default);
6
6
  --pf-v6-c-panel--BoxShadow: none;
7
7
  --pf-v6-c-panel--BorderRadius: var(--pf-t--global--border--radius--medium);
8
- --pf-v6-c-panel--before--BorderWidth: 0;
8
+ --pf-v6-c-panel--before--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
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
11
  --pf-v6-c-panel--m-secondary--before--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
@@ -9,12 +9,12 @@
9
9
  --#{$panel}--BorderRadius: var(--pf-t--global--border--radius--medium);
10
10
 
11
11
  // border
12
- --#{$panel}--before--BorderWidth: 0;
12
+ --#{$panel}--before--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
13
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
+ --#{$panel}--m-secondary--before--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular); // TODO - remove in a breaking change
18
18
 
19
19
  // bordered
20
20
  --#{$panel}--m-bordered--before--BorderWidth: var(--pf-t--global--border--width--box--default);
@@ -155,7 +155,7 @@
155
155
  --pf-v6-c-table__tbody--m-selected--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
156
156
  --pf-v6-c-table__thead--m-nested-column-header--BorderBlockEndWidth: var(--pf-v6-c-table--border-width--base);
157
157
  --pf-v6-c-table__thead--m-nested-column-header--BorderBlockEndColor: var(--pf-v6-c-table--BorderColor);
158
- --pf-v6-c-table__thead--m-nested-column-header--after--ZIndex: calc(var(--pf-t--global--z-index--xs) + 2);
158
+ --pf-v6-c-table__thead--m-nested-column-header--after--ZIndex: initial;
159
159
  --pf-v6-c-table__thead--m-nested-column-header--button--OutlineOffset: -0.1875rem;
160
160
  --pf-v6-c-table__thead--m-nested-column-header__tr--PaddingBlockStart: var(--pf-t--global--spacer--xs);
161
161
  --pf-v6-c-table__thead--m-nested-column-header__tr--PaddingBlockEnd: var(--pf-t--global--spacer--md);
@@ -198,16 +198,13 @@
198
198
  .pf-v6-c-table.pf-m-fixed {
199
199
  table-layout: fixed;
200
200
  }
201
- .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead::before, .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead::after {
201
+ .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead::after, .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead .pf-v6-c-table__th::after {
202
202
  opacity: 0;
203
203
  transition-timing-function: var(--pf-v6-c-table--m-sticky-header--TransitionTimingFunction--BackgroundColor);
204
204
  transition-duration: var(--pf-v6-c-table--m-sticky-header--TransitionDuration--BackgroundColor);
205
205
  transition-property: opacity;
206
206
  }
207
- .pf-v6-c-table.pf-m-sticky-header, .pf-v6-c-table.pf-m-sticky-header-stuck {
208
- --pf-v6-c-table__thead--m-nested-column-header--BorderBlockEndWidth: 0;
209
- }
210
- .pf-v6-c-table.pf-m-sticky-header-stuck > .pf-v6-c-table__thead::before, .pf-v6-c-table.pf-m-sticky-header-stuck > .pf-v6-c-table__thead::after {
207
+ .pf-v6-c-table.pf-m-sticky-header-stuck > .pf-v6-c-table__thead::after, .pf-v6-c-table.pf-m-sticky-header-stuck > .pf-v6-c-table__thead .pf-v6-c-table__th::after {
211
208
  opacity: 1;
212
209
  }
213
210
  .pf-v6-c-table.pf-m-sticky-header, .pf-v6-c-table.pf-m-sticky-header-base {
@@ -218,27 +215,39 @@
218
215
  inset-block-start: 0;
219
216
  z-index: var(--pf-v6-c-table--m-sticky-header--ZIndex);
220
217
  }
221
- .pf-v6-c-table.pf-m-sticky-header > .pf-v6-c-table__thead::before, .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead::before {
218
+ .pf-v6-c-table.pf-m-sticky-header > .pf-v6-c-table__thead::after, .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead::after {
222
219
  position: absolute;
223
220
  inset: 0;
224
221
  z-index: -1;
225
222
  pointer-events: none;
226
223
  content: "";
227
- background-color: var(--pf-v6-c-table--m-sticky-header--BackgroundColor);
228
224
  border-radius: var(--pf-v6-c-table--m-sticky-header--BorderRadius);
229
225
  box-shadow: var(--pf-v6-c-table--m-sticky-header--BoxShadow);
230
226
  }
231
- .pf-v6-c-table.pf-m-sticky-header > .pf-v6-c-table__thead > :where(th, td), .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead > :where(th, td) {
232
- z-index: var(--pf-v6-c-table--m-sticky-header--cell--ZIndex);
233
- }
234
- .pf-v6-c-table.pf-m-sticky-header > .pf-v6-c-table__thead::after, .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead::after {
227
+ .pf-v6-c-table.pf-m-sticky-header > .pf-v6-c-table__thead .pf-v6-c-table__th::after, .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead .pf-v6-c-table__th::after {
235
228
  position: absolute;
236
229
  inset: 0;
237
- z-index: var(--pf-v6-c-table--m-sticky-header--border--ZIndex);
230
+ z-index: -1;
238
231
  pointer-events: none;
239
232
  content: "";
233
+ background-color: var(--pf-v6-c-table--m-sticky-header--BackgroundColor);
240
234
  border-block-end: var(--pf-v6-c-table--m-sticky-header--BorderBlockEndWidth) solid var(--pf-v6-c-table--m-sticky-header--BorderBlockEndColor);
241
235
  }
236
+ .pf-v6-c-table.pf-m-sticky-header > .pf-v6-c-table__thead .pf-v6-c-table__th:first-child::after, .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead .pf-v6-c-table__th:first-child::after {
237
+ border-start-start-radius: var(--pf-v6-c-table--m-sticky-header--BorderRadius);
238
+ border-end-start-radius: var(--pf-v6-c-table--m-sticky-header--BorderRadius);
239
+ }
240
+ .pf-v6-c-table.pf-m-sticky-header > .pf-v6-c-table__thead .pf-v6-c-table__th:last-child::after, .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead .pf-v6-c-table__th:last-child::after {
241
+ border-start-end-radius: var(--pf-v6-c-table--m-sticky-header--BorderRadius);
242
+ border-end-end-radius: var(--pf-v6-c-table--m-sticky-header--BorderRadius);
243
+ }
244
+ .pf-v6-c-table.pf-m-sticky-header > .pf-v6-c-table__thead > :where(th, td), .pf-v6-c-table.pf-m-sticky-header-base > .pf-v6-c-table__thead > :where(th, td) {
245
+ z-index: var(--pf-v6-c-table--m-sticky-header--cell--ZIndex);
246
+ }
247
+ :where(.pf-v6-theme-glass) .pf-v6-c-table.pf-m-sticky-header .pf-m-nested-column-header, :where(.pf-v6-theme-glass) .pf-v6-c-table.pf-m-sticky-header-base .pf-m-nested-column-header {
248
+ --pf-v6-c-table--m-sticky-header--BorderRadius: 0;
249
+ --pf-v6-c-table__thead--m-nested-column-header--BorderBlockEndWidth: 0;
250
+ }
242
251
  .pf-v6-c-table:not(.pf-m-sticky-header) > .pf-m-nested-column-header tr:where(.pf-v6-c-table__tr):not(:last-child) {
243
252
  border-block-end: 0;
244
253
  }
@@ -949,14 +958,12 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
949
958
  vertical-align: bottom;
950
959
  }
951
960
  .pf-v6-c-table__thead.pf-m-nested-column-header {
961
+ --pf-v6-c-table--m-sticky-header--BorderBlockEndWidth: 0;
952
962
  position: relative;
953
963
  }
954
- .pf-v6-c-table__thead.pf-m-nested-column-header::after {
955
- position: absolute;
956
- inset: 0;
964
+ .pf-v6-c-table__thead.pf-m-nested-column-header .pf-v6-c-table__tr:last-child:not(.pf-m-border-row) {
957
965
  z-index: var(--pf-v6-c-table__thead--m-nested-column-header--after--ZIndex);
958
966
  pointer-events: none;
959
- content: "";
960
967
  border-block-end: var(--pf-v6-c-table__thead--m-nested-column-header--BorderBlockEndWidth) solid var(--pf-v6-c-table__thead--m-nested-column-header--BorderBlockEndColor);
961
968
  }
962
969
  .pf-v6-c-table__thead.pf-m-nested-column-header .pf-v6-c-table__button {
@@ -997,7 +1004,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
997
1004
  border-block-end: 0;
998
1005
  }
999
1006
  .pf-v6-c-table__tr.pf-m-border-row {
1000
- border-block-end: var(--pf-v6-c-table--border-width--base) solid var(--pf-v6-c-table--BorderColor);
1007
+ height: var(--pf-v6-c-table--border-width--base);
1008
+ background-color: var(--pf-v6-c-table--BorderColor);
1001
1009
  }
1002
1010
 
1003
1011
  .pf-v6-c-table__tfoot {