@patternfly/patternfly 6.6.0-prerelease.15 → 6.6.0-prerelease.17

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 (32) hide show
  1. package/components/AboutModalBox/about-modal-box.css +1 -1
  2. package/components/AboutModalBox/about-modal-box.scss +1 -1
  3. package/components/Alert/alert.css +2 -2
  4. package/components/Alert/alert.scss +2 -2
  5. package/components/Breadcrumb/breadcrumb.css +1 -1
  6. package/components/Breadcrumb/breadcrumb.scss +1 -1
  7. package/components/ClipboardCopy/clipboard-copy.css +1 -1
  8. package/components/ClipboardCopy/clipboard-copy.scss +1 -1
  9. package/components/Menu/menu.css +1 -1
  10. package/components/Menu/menu.scss +1 -1
  11. package/components/ModalBox/modal-box.css +1 -1
  12. package/components/ModalBox/modal-box.scss +1 -1
  13. package/components/NotificationDrawer/notification-drawer.css +3 -3
  14. package/components/NotificationDrawer/notification-drawer.scss +3 -3
  15. package/components/Progress/progress.css +2 -2
  16. package/components/Progress/progress.scss +2 -2
  17. package/components/Table/table.css +26 -18
  18. package/components/Table/table.scss +37 -27
  19. package/components/Title/title.css +1 -1
  20. package/components/Title/title.scss +1 -1
  21. package/components/Tooltip/tooltip.css +1 -1
  22. package/components/Tooltip/tooltip.scss +1 -1
  23. package/components/Wizard/wizard.css +3 -3
  24. package/components/Wizard/wizard.scss +3 -3
  25. package/components/_index.css +43 -35
  26. package/docs/components/InputGroup/examples/InputGroup.md +1 -1
  27. package/docs/components/Table/examples/Table.md +7 -0
  28. package/package.json +6 -6
  29. package/patternfly-no-globals.css +43 -35
  30. package/patternfly.css +43 -35
  31. package/patternfly.min.css +1 -1
  32. package/patternfly.min.css.map +1 -1
@@ -164,7 +164,7 @@
164
164
  overflow-x: hidden;
165
165
  overflow-y: auto;
166
166
  overscroll-behavior: contain;
167
- overflow-wrap: break-word;
167
+ overflow-wrap: anywhere;
168
168
  -webkit-overflow-scrolling: touch;
169
169
  }
170
170
  @media screen and (min-width: 36rem) {
@@ -176,7 +176,7 @@
176
176
  overflow-x: hidden;
177
177
  overflow-y: auto;
178
178
  overscroll-behavior: contain;
179
- overflow-wrap: break-word;
179
+ overflow-wrap: anywhere;
180
180
  -webkit-overflow-scrolling: touch;
181
181
 
182
182
  @media screen and (min-width: $pf-v6-global--breakpoint--sm) {
@@ -163,7 +163,7 @@
163
163
  grid-area: title;
164
164
  font-weight: var(--pf-v6-c-alert__title--FontWeight);
165
165
  color: var(--pf-v6-c-alert__title--Color);
166
- overflow-wrap: break-word;
166
+ overflow-wrap: anywhere;
167
167
  }
168
168
  .pf-v6-c-alert__title.pf-m-truncate {
169
169
  display: -webkit-box;
@@ -175,7 +175,7 @@
175
175
  .pf-v6-c-alert__description {
176
176
  grid-area: description;
177
177
  padding-block-start: var(--pf-v6-c-alert__description--PaddingBlockStart);
178
- overflow-wrap: break-word;
178
+ overflow-wrap: anywhere;
179
179
  }
180
180
  .pf-v6-c-alert__description + .pf-v6-c-alert__action-group {
181
181
  --pf-v6-c-alert__action-group--PaddingBlockStart: var(--pf-v6-c-alert__description--action-group--PaddingBlockStart);
@@ -205,7 +205,7 @@
205
205
  grid-area: title;
206
206
  font-weight: var(--#{$alert}__title--FontWeight);
207
207
  color: var(--#{$alert}__title--Color);
208
- overflow-wrap: break-word;
208
+ overflow-wrap: anywhere;
209
209
 
210
210
  &.pf-m-truncate {
211
211
  @include pf-v6-line-clamp("var(--#{$alert}__title--max-lines)");
@@ -215,7 +215,7 @@
215
215
  .#{$alert}__description {
216
216
  grid-area: description;
217
217
  padding-block-start: var(--#{$alert}__description--PaddingBlockStart);
218
- overflow-wrap: break-word;
218
+ overflow-wrap: anywhere;
219
219
 
220
220
  + .#{$alert}__action-group {
221
221
  --#{$alert}__action-group--PaddingBlockStart: var(--#{$alert}__description--action-group--PaddingBlockStart);
@@ -68,7 +68,7 @@
68
68
  font-weight: var(--pf-v6-c-breadcrumb__link--FontWeight);
69
69
  line-height: inherit;
70
70
  color: var(--pf-v6-c-breadcrumb__link--Color);
71
- overflow-wrap: break-word;
71
+ overflow-wrap: anywhere;
72
72
  text-decoration-line: var(--pf-v6-c-breadcrumb__link--TextDecorationLine);
73
73
  text-decoration-style: var(--pf-v6-c-breadcrumb__link--TextDecorationStyle);
74
74
  text-decoration-color: var(--pf-v6-c-breadcrumb__link--TextDecorationColor);
@@ -83,7 +83,7 @@
83
83
  font-weight: var(--#{$breadcrumb}__link--FontWeight);
84
84
  line-height: inherit;
85
85
  color: var(--#{$breadcrumb}__link--Color);
86
- overflow-wrap: break-word;
86
+ overflow-wrap: anywhere;
87
87
  text-decoration-line: var(--#{$breadcrumb}__link--TextDecorationLine);
88
88
  text-decoration-style: var(--#{$breadcrumb}__link--TextDecorationStyle);
89
89
  text-decoration-color: var(--#{$breadcrumb}__link--TextDecorationColor);
@@ -86,7 +86,7 @@
86
86
  }
87
87
 
88
88
  .pf-v6-c-clipboard-copy__text {
89
- overflow-wrap: break-word;
89
+ overflow-wrap: anywhere;
90
90
  white-space: normal;
91
91
  }
92
92
  .pf-v6-c-clipboard-copy__text.pf-m-code {
@@ -108,7 +108,7 @@
108
108
  }
109
109
 
110
110
  .#{$clipboard-copy}__text {
111
- overflow-wrap: break-word;
111
+ overflow-wrap: anywhere;
112
112
  white-space: normal;
113
113
 
114
114
  &.pf-m-code {
@@ -587,7 +587,7 @@
587
587
  .pf-v6-c-menu__item-description {
588
588
  font-size: var(--pf-v6-c-menu__item-description--FontSize);
589
589
  color: var(--pf-v6-c-menu__item-description--Color);
590
- overflow-wrap: break-word;
590
+ overflow-wrap: anywhere;
591
591
  }
592
592
 
593
593
  .pf-v6-c-menu__item-check .pf-v6-c-check {
@@ -627,7 +627,7 @@
627
627
  .#{$menu}__item-description {
628
628
  font-size: var(--#{$menu}__item-description--FontSize);
629
629
  color: var(--#{$menu}__item-description--Color);
630
- overflow-wrap: break-word;
630
+ overflow-wrap: anywhere;
631
631
  }
632
632
 
633
633
  // - Menu check
@@ -183,7 +183,7 @@
183
183
  overflow-x: hidden;
184
184
  overflow-y: auto;
185
185
  overscroll-behavior: contain;
186
- overflow-wrap: break-word;
186
+ overflow-wrap: anywhere;
187
187
  -webkit-overflow-scrolling: touch;
188
188
  }
189
189
  .pf-v6-c-modal-box__body:last-child {
@@ -226,7 +226,7 @@
226
226
  overflow-x: hidden;
227
227
  overflow-y: auto;
228
228
  overscroll-behavior: contain;
229
- overflow-wrap: break-word;
229
+ overflow-wrap: anywhere;
230
230
  -webkit-overflow-scrolling: touch;
231
231
 
232
232
  &:last-child {
@@ -197,7 +197,7 @@
197
197
 
198
198
  .pf-v6-c-notification-drawer__list-item-header-title {
199
199
  font-weight: var(--pf-v6-c-notification-drawer__list-item-header-title--FontWeight);
200
- overflow-wrap: break-word;
200
+ overflow-wrap: anywhere;
201
201
  }
202
202
  .pf-v6-c-notification-drawer__list-item-header-title.pf-m-truncate {
203
203
  display: -webkit-box;
@@ -219,7 +219,7 @@
219
219
  grid-row: 2/3;
220
220
  grid-column: 1/2;
221
221
  margin-block-end: var(--pf-v6-c-notification-drawer__list-item-description--MarginBlockEnd);
222
- overflow-wrap: break-word;
222
+ overflow-wrap: anywhere;
223
223
  }
224
224
 
225
225
  .pf-v6-c-notification-drawer__list-item-timestamp {
@@ -264,7 +264,7 @@
264
264
  margin-inline-end: var(--pf-v6-c-notification-drawer__group-toggle-title--MarginInlineEnd);
265
265
  font-size: var(--pf-v6-c-notification-drawer__group-toggle-title--FontSize);
266
266
  text-align: start;
267
- overflow-wrap: break-word;
267
+ overflow-wrap: anywhere;
268
268
  }
269
269
 
270
270
  .pf-v6-c-notification-drawer__group-toggle-count {
@@ -242,7 +242,7 @@
242
242
 
243
243
  .#{$notification-drawer}__list-item-header-title {
244
244
  font-weight: var(--#{$notification-drawer}__list-item-header-title--FontWeight);
245
- overflow-wrap: break-word;
245
+ overflow-wrap: anywhere;
246
246
 
247
247
  &.pf-m-truncate {
248
248
  @include pf-v6-line-clamp("var(--#{$notification-drawer}__list-item-header-title--max-lines)");
@@ -263,7 +263,7 @@
263
263
  grid-row: 2 / 3;
264
264
  grid-column: 1 / 2;
265
265
  margin-block-end: var(--#{$notification-drawer}__list-item-description--MarginBlockEnd);
266
- overflow-wrap: break-word;
266
+ overflow-wrap: anywhere;
267
267
  }
268
268
 
269
269
  .#{$notification-drawer}__list-item-timestamp {
@@ -307,7 +307,7 @@
307
307
  margin-inline-end: var(--#{$notification-drawer}__group-toggle-title--MarginInlineEnd);
308
308
  font-size: var(--#{$notification-drawer}__group-toggle-title--FontSize);
309
309
  text-align: start;
310
- overflow-wrap: break-word;
310
+ overflow-wrap: anywhere;
311
311
  }
312
312
 
313
313
  .#{$notification-drawer}__group-toggle-count {
@@ -130,7 +130,7 @@
130
130
 
131
131
  .pf-v6-c-progress__description {
132
132
  grid-column: 1/2;
133
- overflow-wrap: break-word;
133
+ overflow-wrap: anywhere;
134
134
  }
135
135
  .pf-v6-c-progress__description.pf-m-truncate {
136
136
  overflow: hidden;
@@ -146,7 +146,7 @@
146
146
  align-items: flex-start;
147
147
  justify-content: flex-end;
148
148
  text-align: end;
149
- overflow-wrap: break-word;
149
+ overflow-wrap: anywhere;
150
150
  }
151
151
 
152
152
  .pf-v6-c-progress__status-icon {
@@ -163,7 +163,7 @@
163
163
  // the progress__description is displayed above the progress bar on the left
164
164
  .#{$progress}__description {
165
165
  grid-column: 1 / 2;
166
- overflow-wrap: break-word;
166
+ overflow-wrap: anywhere;
167
167
 
168
168
  &.pf-m-truncate {
169
169
  @include pf-v6-text-overflow;
@@ -179,7 +179,7 @@
179
179
  align-items: flex-start;
180
180
  justify-content: flex-end;
181
181
  text-align: end;
182
- overflow-wrap: break-word;
182
+ overflow-wrap: anywhere;
183
183
  }
184
184
 
185
185
  // the progress__status-icon is an icon displayed always in the upper right
@@ -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 {
@@ -241,7 +241,7 @@
241
241
  // * Table nested column header
242
242
  --#{$table}__thead--m-nested-column-header--BorderBlockEndWidth: var(--#{$table}--border-width--base);
243
243
  --#{$table}__thead--m-nested-column-header--BorderBlockEndColor: var(--#{$table}--BorderColor);
244
- --#{$table}__thead--m-nested-column-header--after--ZIndex: calc(var(--pf-t--global--z-index--xs) + 2);
244
+ --#{$table}__thead--m-nested-column-header--after--ZIndex: initial;
245
245
  --#{$table}__thead--m-nested-column-header--button--OutlineOffset: #{pf-size-prem(-3px)};
246
246
  --#{$table}__thead--m-nested-column-header__tr--PaddingBlockStart: var(--pf-t--global--spacer--xs);
247
247
  --#{$table}__thead--m-nested-column-header__tr--PaddingBlockEnd: var(--pf-t--global--spacer--md);
@@ -301,8 +301,8 @@
301
301
  table-layout: fixed;
302
302
  }
303
303
 
304
- &.pf-m-sticky-header-base > .#{$table}__thead {
305
- &::before,
304
+ &.pf-m-sticky-header-base > .#{$table}__thead,
305
+ &.pf-m-sticky-header-base > .#{$table}__thead .#{$table}__th {
306
306
  &::after {
307
307
  opacity: 0;
308
308
  transition-timing-function: var(--#{$table}--m-sticky-header--TransitionTimingFunction--BackgroundColor);
@@ -311,13 +311,8 @@
311
311
  }
312
312
  }
313
313
 
314
- &.pf-m-sticky-header,
315
- &.pf-m-sticky-header-stuck {
316
- --#{$table}__thead--m-nested-column-header--BorderBlockEndWidth: 0;
317
- }
318
-
319
- &.pf-m-sticky-header-stuck > .#{$table}__thead {
320
- &::before,
314
+ &.pf-m-sticky-header-stuck > .#{$table}__thead,
315
+ &.pf-m-sticky-header-stuck > .#{$table}__thead .#{$table}__th {
321
316
  &::after {
322
317
  opacity: 1;
323
318
  }
@@ -332,32 +327,47 @@
332
327
  inset-block-start: 0;
333
328
  z-index: var(--#{$table}--m-sticky-header--ZIndex);
334
329
 
335
- &::before {
330
+ &::after {
336
331
  position: absolute;
337
332
  inset: 0;
338
333
  z-index: -1;
339
334
  pointer-events: none;
340
335
  content: '';
341
- background-color: var(--#{$table}--m-sticky-header--BackgroundColor);
342
336
  border-radius: var(--#{$table}--m-sticky-header--BorderRadius);
343
337
  box-shadow: var(--#{$table}--m-sticky-header--BoxShadow);
344
338
  }
339
+
340
+
341
+ .#{$table}__th::after {
342
+ position: absolute;
343
+ inset: 0;
344
+ z-index: -1;
345
+ pointer-events: none;
346
+ content: '';
347
+ background-color: var(--#{$table}--m-sticky-header--BackgroundColor);
348
+ border-block-end: var(--#{$table}--m-sticky-header--BorderBlockEndWidth) solid var(--#{$table}--m-sticky-header--BorderBlockEndColor);
349
+ }
350
+
351
+ .#{$table}__th:first-child::after {
352
+ border-start-start-radius: var(--#{$table}--m-sticky-header--BorderRadius);
353
+ border-end-start-radius: var(--#{$table}--m-sticky-header--BorderRadius);
354
+ }
355
+
356
+ .#{$table}__th:last-child::after {
357
+ border-start-end-radius: var(--#{$table}--m-sticky-header--BorderRadius);
358
+ border-end-end-radius: var(--#{$table}--m-sticky-header--BorderRadius);
359
+ }
345
360
 
346
361
  > :where(th, td) {
347
362
  z-index: var(--#{$table}--m-sticky-header--cell--ZIndex); // set z-index here to allow sticky column to override
348
363
  }
349
364
  }
350
- }
351
365
 
352
- &.pf-m-sticky-header,
353
- &.pf-m-sticky-header-base {
354
- > .#{$table}__thead::after {
355
- position: absolute;
356
- inset: 0;
357
- z-index: var(--#{$table}--m-sticky-header--border--ZIndex);
358
- pointer-events: none;
359
- content: '';
360
- border-block-end: var(--#{$table}--m-sticky-header--BorderBlockEndWidth) solid var(--#{$table}--m-sticky-header--BorderBlockEndColor);
366
+ :where(.pf-v6-theme-glass) & {
367
+ .pf-m-nested-column-header {
368
+ --#{$table}--m-sticky-header--BorderRadius: 0;
369
+ --#{$table}__thead--m-nested-column-header--BorderBlockEndWidth: 0;
370
+ }
361
371
  }
362
372
  }
363
373
 
@@ -1288,14 +1298,13 @@
1288
1298
 
1289
1299
  // - Table nested column header button
1290
1300
  &.pf-m-nested-column-header {
1301
+ --#{$table}--m-sticky-header--BorderBlockEndWidth: 0;
1302
+
1291
1303
  position: relative;
1292
1304
 
1293
- &::after {
1294
- position: absolute;
1295
- inset: 0;
1305
+ .#{$table}__tr:last-child:not(.pf-m-border-row) {
1296
1306
  z-index: var(--#{$table}__thead--m-nested-column-header--after--ZIndex);
1297
1307
  pointer-events: none;
1298
- content: '';
1299
1308
  border-block-end: var(--#{$table}__thead--m-nested-column-header--BorderBlockEndWidth) solid var(--#{$table}__thead--m-nested-column-header--BorderBlockEndColor);
1300
1309
  }
1301
1310
 
@@ -1359,7 +1368,8 @@
1359
1368
  }
1360
1369
 
1361
1370
  &.pf-m-border-row {
1362
- border-block-end: var(--#{$table}--border-width--base) solid var(--#{$table}--BorderColor);
1371
+ height: var(--#{$table}--border-width--base);
1372
+ background-color: var(--#{$table}--BorderColor);
1363
1373
  }
1364
1374
  }
1365
1375
 
@@ -41,7 +41,7 @@
41
41
 
42
42
  .pf-v6-c-title {
43
43
  font-family: var(--pf-v6-c-title--FontFamily);
44
- overflow-wrap: break-word;
44
+ overflow-wrap: anywhere;
45
45
  }
46
46
  .pf-v6-c-title.pf-m-4xl {
47
47
  font-size: var(--pf-v6-c-title--m-4xl--FontSize);
@@ -71,7 +71,7 @@
71
71
 
72
72
  .#{$title} {
73
73
  font-family: var(--#{$title}--FontFamily);
74
- overflow-wrap: break-word;
74
+ overflow-wrap: anywhere;
75
75
 
76
76
  &.pf-m-4xl {
77
77
  font-size: var(--#{$title}--m-4xl--FontSize);
@@ -98,7 +98,7 @@
98
98
  font-size: var(--pf-v6-c-tooltip__content--FontSize);
99
99
  color: var(--pf-v6-c-tooltip__content--Color);
100
100
  text-align: center;
101
- overflow-wrap: break-word;
101
+ overflow-wrap: anywhere;
102
102
  background-color: var(--pf-v6-c-tooltip__content--BackgroundColor);
103
103
  border-radius: var(--pf-v6-c-tooltip__content--BorderRadius);
104
104
  }
@@ -129,7 +129,7 @@
129
129
  font-size: var(--#{$tooltip}__content--FontSize);
130
130
  color: var(--#{$tooltip}__content--Color);
131
131
  text-align: center;
132
- overflow-wrap: break-word;
132
+ overflow-wrap: anywhere;
133
133
  background-color: var(--#{$tooltip}__content--BackgroundColor);
134
134
  border-radius: var(--#{$tooltip}__content--BorderRadius);
135
135
 
@@ -259,7 +259,7 @@
259
259
  align-items: baseline;
260
260
  margin-block-end: var(--pf-v6-c-wizard__toggle-list-item--MarginBlockEnd);
261
261
  text-align: start;
262
- overflow-wrap: break-word;
262
+ overflow-wrap: anywhere;
263
263
  }
264
264
  .pf-v6-c-wizard__toggle-list-item:not(:last-child) {
265
265
  margin-inline-end: var(--pf-v6-c-wizard__toggle-list-item--not-last-child--MarginInlineEnd);
@@ -395,7 +395,7 @@
395
395
  padding-inline: 0;
396
396
  color: var(--pf-v6-c-wizard__nav-link--Color);
397
397
  text-align: start;
398
- overflow-wrap: break-word;
398
+ overflow-wrap: anywhere;
399
399
  text-decoration-line: var(--pf-v6-c-wizard__nav-link--TextDecoration);
400
400
  counter-increment: wizard-nav-count;
401
401
  background-color: transparent;
@@ -514,7 +514,7 @@
514
514
  flex-direction: column;
515
515
  overflow-x: hidden;
516
516
  overflow-y: auto;
517
- overflow-wrap: break-word;
517
+ overflow-wrap: anywhere;
518
518
  }
519
519
 
520
520
  .pf-v6-c-wizard__main-body {
@@ -325,7 +325,7 @@
325
325
  align-items: baseline;
326
326
  margin-block-end: var(--#{$wizard}__toggle-list-item--MarginBlockEnd);
327
327
  text-align: start;
328
- overflow-wrap: break-word;
328
+ overflow-wrap: anywhere;
329
329
 
330
330
  &:not(:last-child) {
331
331
  margin-inline-end: var(--#{$wizard}__toggle-list-item--not-last-child--MarginInlineEnd);
@@ -478,7 +478,7 @@
478
478
  padding-inline: 0;
479
479
  color: var(--#{$wizard}__nav-link--Color);
480
480
  text-align: start; // needed for when the item is a button
481
- overflow-wrap: break-word;
481
+ overflow-wrap: anywhere;
482
482
  text-decoration-line: var(--#{$wizard}__nav-link--TextDecoration);
483
483
  counter-increment: wizard-nav-count;
484
484
  background-color: transparent;
@@ -614,7 +614,7 @@
614
614
  flex-direction: column;
615
615
  overflow-x: hidden;
616
616
  overflow-y: auto;
617
- overflow-wrap: break-word;
617
+ overflow-wrap: anywhere;
618
618
  }
619
619
 
620
620
  .#{$wizard}__main-body {