@patternfly/patternfly 6.0.0-alpha.3 → 6.0.0-alpha.5

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 (46) hide show
  1. package/base/_globals.scss +0 -2
  2. package/base/patternfly-globals.css +0 -1
  3. package/base/patternfly-variables.css +15 -0
  4. package/base/tokens/_tokens-font.scss +29 -0
  5. package/components/Content/content.css +67 -67
  6. package/components/Content/content.scss +68 -68
  7. package/components/MenuToggle/menu-toggle.css +57 -73
  8. package/components/MenuToggle/menu-toggle.scss +60 -82
  9. package/components/Table/table.css +90 -89
  10. package/components/Table/table.scss +92 -95
  11. package/components/Toolbar/toolbar.css +0 -1
  12. package/components/Toolbar/toolbar.scss +0 -1
  13. package/docs/components/MenuToggle/examples/MenuToggle.md +42 -42
  14. package/docs/demos/AboutModal/examples/AboutModal.md +1 -1
  15. package/docs/demos/Alert/examples/Alert.md +3 -3
  16. package/docs/demos/BackToTop/examples/BackToTop.md +1 -1
  17. package/docs/demos/Banner/examples/Banner.md +2 -2
  18. package/docs/demos/CardView/examples/CardView.md +1 -1
  19. package/docs/demos/ContextSelector/examples/ContextSelector.md +4 -4
  20. package/docs/demos/Dashboard/examples/Dashboard.md +1 -1
  21. package/docs/demos/DataList/examples/DataList.md +4 -4
  22. package/docs/demos/DescriptionList/examples/DescriptionList.md +3 -3
  23. package/docs/demos/Drawer/examples/Drawer.md +5 -5
  24. package/docs/demos/JumpLinks/examples/JumpLinks.md +6 -6
  25. package/docs/demos/Masthead/examples/Masthead.md +4 -4
  26. package/docs/demos/Modal/examples/Modal.md +6 -6
  27. package/docs/demos/Nav/examples/Nav.md +8 -8
  28. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +5 -5
  29. package/docs/demos/Page/examples/Page.md +9 -9
  30. package/docs/demos/Page/examples/Penta.md +672 -0
  31. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +7 -7
  32. package/docs/demos/Skeleton/examples/Skeleton.md +1 -1
  33. package/docs/demos/Table/examples/Table.md +15 -15
  34. package/docs/demos/Tabs/examples/Tabs.md +6 -6
  35. package/docs/demos/Toolbar/examples/Toolbar.md +2 -2
  36. package/docs/demos/Wizard/examples/Wizard.md +9 -9
  37. package/package.json +1 -1
  38. package/patternfly-base-no-globals-theme-dark-unversioned.css +15 -0
  39. package/patternfly-base-no-globals.css +15 -0
  40. package/patternfly-base-theme-dark-unversioned.css +15 -1
  41. package/patternfly-base.css +15 -1
  42. package/patternfly-no-globals.css +229 -230
  43. package/patternfly-theme-dark-unversioned.css +229 -231
  44. package/patternfly.css +229 -231
  45. package/patternfly.min.css +1 -1
  46. package/patternfly.min.css.map +1 -1
@@ -1,50 +1,52 @@
1
1
  // @debug $menu-toggle; // check your variable names located in src/patternfly/sass-utilities/component-namespaces.scss
2
2
 
3
3
  .#{$menu-toggle} {
4
- --#{$menu-toggle}--BorderRadius: 0;
5
- --#{$menu-toggle}--PaddingTop: var(--#{$pf-global}--spacer--form-element);
6
- --#{$menu-toggle}--PaddingRight: var(--#{$pf-global}--spacer--sm);
7
- --#{$menu-toggle}--PaddingBottom: var(--#{$pf-global}--spacer--form-element);
8
- --#{$menu-toggle}--PaddingLeft: var(--#{$pf-global}--spacer--sm);
9
- --#{$menu-toggle}--FontSize: var(--#{$pf-global}--FontSize--md);
10
- --#{$menu-toggle}--Color: var(--#{$pf-global}--Color--100);
11
- --#{$menu-toggle}--LineHeight: var(--#{$pf-global}--LineHeight--md);
12
- --#{$menu-toggle}--BackgroundColor: transparent;
4
+ --#{$menu-toggle}--BorderRadius: var(--pf-t--global--border--radius--small);
5
+ --#{$menu-toggle}--PaddingTop: var(--pf-t--global--spacer--sm); // TODO semantic spacer for form elements?
6
+ --#{$menu-toggle}--PaddingRight: var(--pf-t--global--spacer--sm);
7
+ --#{$menu-toggle}--PaddingBottom: var(--pf-t--global--spacer--sm); // TODO semantic spacer?
8
+ --#{$menu-toggle}--PaddingLeft: var(--pf-t--global--spacer--sm);
9
+ --#{$menu-toggle}--FontSize: var(--pf-t--global--font--size--body--md);
10
+ --#{$menu-toggle}--Color: var(--pf-t--global--text--color--regular);
11
+ --#{$menu-toggle}--LineHeight: var(--pf-t--global--font--line-height--body);
12
+ --#{$menu-toggle}--BackgroundColor: var(--pf-t--global--background--color--control--default);
13
+ --#{$menu-toggle}--BorderWidth: var(--pf-t--global--border--width--control--default);
14
+ --#{$menu-toggle}--BorderColor: var(--pf-t--global--border--color--default);
15
+ --#{$menu-toggle}--hover--BorderWidth: var(--pf-t--global--border--width--control--hover);
16
+ --#{$menu-toggle}--hover--BorderColor: var(--pf-t--global--border--color--hover);
17
+ --#{$menu-toggle}--active--BorderWidth: var(--pf-t--global--border--width--control--active);
18
+ --#{$menu-toggle}--active--BorderColor: var(--pf-t--global--border--color--active);
13
19
 
14
20
  // Border base
15
- --#{$menu-toggle}--before--BorderTopWidth: var(--#{$pf-global}--BorderWidth--sm);
16
- --#{$menu-toggle}--before--BorderRightWidth: var(--#{$pf-global}--BorderWidth--sm);
17
- --#{$menu-toggle}--before--BorderBottomWidth: 0;
18
- --#{$menu-toggle}--before--BorderLeftWidth: var(--#{$pf-global}--BorderWidth--sm);
19
- --#{$menu-toggle}--before--BorderTopColor: var(--#{$pf-global}--BorderColor--300);
20
- --#{$menu-toggle}--before--BorderRightColor: var(--#{$pf-global}--BorderColor--300);
21
- --#{$menu-toggle}--before--BorderBottomColor: transparent;
22
- --#{$menu-toggle}--before--BorderLeftColor: var(--#{$pf-global}--BorderColor--300);
23
-
24
- // Border accent
25
- --#{$menu-toggle}--after--BorderBottomWidth: var(--#{$pf-global}--BorderWidth--sm);
26
- --#{$menu-toggle}--after--BorderBottomColor: var(--#{$pf-global}--BorderColor--200);
21
+ --#{$menu-toggle}--before--BorderTopWidth: var(--pf-t--global--border--width--control--default);
22
+ --#{$menu-toggle}--before--BorderRightWidth: var(--pf-t--global--border--width--control--default);
23
+ --#{$menu-toggle}--before--BorderBottomWidth: var(--pf-t--global--border--width--control--default);
24
+ --#{$menu-toggle}--before--BorderLeftWidth: var(--pf-t--global--border--width--control--default);
25
+ --#{$menu-toggle}--before--BorderTopColor: var(--pf-t--global--border--color--default);
26
+ --#{$menu-toggle}--before--BorderRightColor: var(--pf-t--global--border--color--default);
27
+ --#{$menu-toggle}--before--BorderBottomColor: var(--pf-t--global--border--color--default);
28
+ --#{$menu-toggle}--before--BorderLeftColor: var(--pf-t--global--border--color--default);
27
29
 
28
30
  // Hover
29
31
  --#{$menu-toggle}--hover--BackgroundColor: transparent;
30
- --#{$menu-toggle}--hover--after--BorderBottomWidth: var(--#{$pf-global}--BorderWidth--sm);
31
- --#{$menu-toggle}--hover--after--BorderBottomColor: var(--#{$pf-global}--active-color--100);
32
+ --#{$menu-toggle}--hover--after--BorderBottomWidth: var(--pf-t--global--border--width--control--hover);
33
+ --#{$menu-toggle}--hover--after--BorderBottomColor: var(--pf-t--global--border--color--hover);
32
34
 
33
35
  // Focus
34
36
  --#{$menu-toggle}--focus--BackgroundColor: transparent;
35
- --#{$menu-toggle}--focus--after--BorderBottomWidth: var(--#{$pf-global}--BorderWidth--md);
36
- --#{$menu-toggle}--focus--after--BorderBottomColor: var(--#{$pf-global}--active-color--100);
37
+ --#{$menu-toggle}--focus--after--BorderBottomWidth: var(--pf-t--global--border--width--control--active);
38
+ --#{$menu-toggle}--focus--after--BorderBottomColor: var(--pf-t--global--border--color--active);
37
39
 
38
40
  // Active
39
41
  --#{$menu-toggle}--active--BackgroundColor: transparent;
40
- --#{$menu-toggle}--active--after--BorderBottomWidth: var(--#{$pf-global}--BorderWidth--md);
41
- --#{$menu-toggle}--active--after--BorderBottomColor: var(--#{$pf-global}--active-color--100);
42
+ --#{$menu-toggle}--active--after--BorderBottomWidth: var(--pf-t--global--border--width--control--active);
43
+ --#{$menu-toggle}--active--after--BorderBottomColor: var(--pf-t--global--border--color--active);
42
44
 
43
45
  // Expanded
44
46
  --#{$menu-toggle}--m-expanded--Color: var(--#{$pf-global}--Color--100);
45
47
  --#{$menu-toggle}--m-expanded--BackgroundColor: transparent;
46
- --#{$menu-toggle}--m-expanded--after--BorderBottomWidth: var(--#{$pf-global}--BorderWidth--md);
47
- --#{$menu-toggle}--m-expanded--after--BorderBottomColor: var(--#{$pf-global}--active-color--100);
48
+ --#{$menu-toggle}--m-expanded--after--BorderBottomWidth: var(--pf-t--global--border--width--control--active);
49
+ --#{$menu-toggle}--m-expanded--after--BorderBottomColor: var(--pf-t--global--border--color--active);
48
50
 
49
51
  // Disabled
50
52
  --#{$menu-toggle}--disabled--Color: var(--#{$pf-global}--disabled-color--100);
@@ -86,21 +88,20 @@
86
88
  --#{$menu-toggle}--m-plain--disabled--Color: var(--#{$pf-global}--disabled-color--200);
87
89
  --#{$menu-toggle}--m-plain--m-expanded--Color: var(--#{$pf-global}--Color--100);
88
90
 
89
-
90
91
  // Icon
91
- --#{$menu-toggle}__icon--MarginRight: var(--#{$pf-global}--spacer--sm);
92
+ --#{$menu-toggle}__icon--MarginRight: var(--pf-t--global--spacer--sm);
92
93
 
93
94
  // Count
94
- --#{$menu-toggle}__count--MarginLeft: var(--#{$pf-global}--spacer--sm);
95
+ --#{$menu-toggle}__count--MarginLeft: var(--pf-t--global--spacer--sm);
95
96
 
96
97
  // Controls -- update element/vars to "control" in breaking change
97
- --#{$menu-toggle}__controls--PaddingLeft: var(--#{$pf-global}--spacer--md);
98
+ --#{$menu-toggle}__controls--PaddingLeft: var(--pf-t--global--spacer--sm);
98
99
  --#{$menu-toggle}__controls--MarginLeft: auto;
99
100
  --#{$menu-toggle}__controls--MarginRight: 0;
100
101
 
101
102
  // Toggle icon
102
- --#{$menu-toggle}__toggle-icon--MarginRight: var(--#{$pf-global}--spacer--sm);
103
- --#{$menu-toggle}--m-plain__toggle-icon--Color: var(--#{$pf-global}--Color--200);
103
+ --#{$menu-toggle}__toggle-icon--MarginRight: var(--pf-t--global--spacer--sm);
104
+ --#{$menu-toggle}--m-plain__toggle-icon--Color: var(--pf-t--global--icon--color--regular);
104
105
  --#{$menu-toggle}--m-plain--hover__toggle-icon--Color: var(--#{$pf-global}--Color--100);
105
106
  --#{$menu-toggle}--m-plain--active__toggle-icon--Color: var(--#{$pf-global}--Color--100);
106
107
  --#{$menu-toggle}--m-plain--focus__toggle-icon--Color: var(--#{$pf-global}--Color--100);
@@ -109,7 +110,6 @@
109
110
  // Full height
110
111
  --#{$menu-toggle}--m-full-height--PaddingRight: var(--#{$pf-global}--spacer--lg);
111
112
  --#{$menu-toggle}--m-full-height--PaddingLeft: var(--#{$pf-global}--spacer--lg);
112
- --#{$menu-toggle}--m-full-height__toggle--before--BorderTopWidth: 0;
113
113
  --#{$menu-toggle}--m-full-height__toggle--after--BorderBottomWidth: var(--#{$pf-global}--BorderWidth--sm);
114
114
  --#{$menu-toggle}--m-full-height--m-expanded--after--BorderBottomWidth: var(--#{$pf-global}--BorderWidth--xl);
115
115
  --#{$menu-toggle}--m-full-height--hover--after--BorderBottomWidth: var(--#{$pf-global}--BorderWidth--xl);
@@ -123,7 +123,7 @@
123
123
  --#{$menu-toggle}--m-split-button--child--BackgroundColor: var(--#{$pf-global}--BackgroundColor--100);
124
124
  --#{$menu-toggle}--m-split-button--child--disabled--Color: var(--#{$pf-global}--disabled-color--100);
125
125
  --#{$menu-toggle}--m-split-button--child--disabled--BackgroundColor: var(--#{$pf-global}--disabled-color--300);
126
- --#{$menu-toggle}--m-split-button--first-child--PaddingRight: var(--#{$pf-global}--spacer--sm);
126
+ --#{$menu-toggle}--m-split-button--first-child--PaddingRight: var(--pf-t--global--spacer--sm);
127
127
  --#{$menu-toggle}--m-split-button--last-child--PaddingLeft: 0;
128
128
 
129
129
  // Split button, action
@@ -154,15 +154,15 @@
154
154
  // Split button, controls, check
155
155
  --#{$menu-toggle}__button--BackgroundColor: transparent;
156
156
  --#{$menu-toggle}__button--AlignSelf: baseline;
157
- --#{$menu-toggle}__button--PaddingLeft: var(--#{$pf-global}--spacer--sm);
158
- --#{$menu-toggle}__button--PaddingRight: var(--#{$pf-global}--spacer--sm);
159
- --#{$menu-toggle}__button__controls--MarginRight: var(--#{$pf-global}--spacer--sm);
160
- --#{$menu-toggle}__button__controls--MarginLeft: var(--#{$pf-global}--spacer--sm);
157
+ --#{$menu-toggle}__button--PaddingLeft: var(--pf-t--global--spacer--sm);
158
+ --#{$menu-toggle}__button--PaddingRight: var(--pf-t--global--spacer--sm);
159
+ --#{$menu-toggle}__button__controls--MarginRight: var(--pf-t--global--spacer--sm);
160
+ --#{$menu-toggle}__button__controls--MarginLeft: var(--pf-t--global--spacer--sm);
161
161
 
162
162
  // Typeahead
163
- --#{$menu-toggle}--m-typeahead__controls--MarginRight: var(--#{$pf-global}--spacer--sm);
164
- --#{$menu-toggle}--m-typeahead__controls--MarginLeft: var(--#{$pf-global}--spacer--sm);
165
- --#{$menu-toggle}--m-typeahead--c-text-input-group__utilities--c-button--PaddingRight: var(--#{$pf-global}--spacer--sm);
163
+ --#{$menu-toggle}--m-typeahead__controls--MarginRight: var(--pf-t--global--spacer--sm);
164
+ --#{$menu-toggle}--m-typeahead__controls--MarginLeft: var(--pf-t--global--spacer--sm);
165
+ --#{$menu-toggle}--m-typeahead--c-text-input-group__utilities--c-button--PaddingRight: var(--pf-t--global--spacer--sm);
166
166
  --#{$menu-toggle}--m-typeahead__button--AlignSelf: center;
167
167
 
168
168
  position: relative;
@@ -176,10 +176,13 @@
176
176
  cursor: pointer;
177
177
  background-color: var(--#{$menu-toggle}--BackgroundColor);
178
178
  border: 0;
179
- border-radius: var(--#{$menu-toggle}--BorderRadius);
180
179
 
181
- &::before,
182
- &::after {
180
+ &,
181
+ &::before {
182
+ border-radius: var(--#{$menu-toggle}--BorderRadius);
183
+ }
184
+
185
+ &::before {
183
186
  position: absolute;
184
187
  top: 0;
185
188
  right: 0;
@@ -187,16 +190,11 @@
187
190
  left: 0;
188
191
  pointer-events: none;
189
192
  content: "";
190
- }
191
-
192
- &::before {
193
- border-color: var(--#{$menu-toggle}--before--BorderTopColor) var(--#{$menu-toggle}--before--BorderRightColor) var(--#{$menu-toggle}--before--BorderBottomColor) var(--#{$menu-toggle}--before--BorderLeftColor);
194
- border-style: solid;
195
- border-width: var(--#{$menu-toggle}--before--BorderTopWidth) var(--#{$menu-toggle}--before--BorderRightWidth) var(--#{$menu-toggle}--before--BorderBottomWidth) var(--#{$menu-toggle}--before--BorderLeftWidth);
193
+ border: var(--#{$menu-toggle}--BorderWidth) solid var(--#{$menu-toggle}--BorderColor);
196
194
  }
197
195
 
198
196
  &::after {
199
- border-bottom: var(--#{$menu-toggle}--after--BorderBottomWidth) solid var(--#{$menu-toggle}--after--BorderBottomColor);
197
+ border-bottom: var(--#{$menu-toggle}--after--BorderWidth) solid var(--#{$menu-toggle}--after--BorderColor);
200
198
  }
201
199
 
202
200
  &.pf-m-primary {
@@ -254,17 +252,12 @@
254
252
  }
255
253
  }
256
254
 
257
- &.pf-m-plain {
258
- --#{$menu-toggle}__toggle-icon--Color: var(--#{$menu-toggle}--m-plain__toggle-icon--Color);
259
-
260
- &:not(.pf-m-text) {
255
+ &.pf-m-plain:not(.pf-m-text) {
261
256
  --#{$menu-toggle}--PaddingRight: var(--#{$menu-toggle}--m-plain--PaddingRight);
262
257
  --#{$menu-toggle}--PaddingLeft: var(--#{$menu-toggle}--m-plain--PaddingLeft);
263
258
  --#{$menu-toggle}--disabled--BackgroundColor: transparent;
264
259
 
265
260
  display: inline-block;
266
- color: var(--#{$menu-toggle}--m-plain--Color);
267
- }
268
261
  }
269
262
 
270
263
  &.pf-m-full-height {
@@ -282,29 +275,15 @@
282
275
  }
283
276
 
284
277
  &:hover {
285
- --#{$menu-toggle}--BackgroundColor: var(--#{$menu-toggle}--hover--BackgroundColor);
286
- --#{$menu-toggle}--after--BorderBottomWidth: var(--#{$menu-toggle}--hover--after--BorderBottomWidth);
287
- --#{$menu-toggle}--after--BorderBottomColor: var(--#{$menu-toggle}--hover--after--BorderBottomColor);
288
- --#{$menu-toggle}--m-plain__toggle-icon--Color: var(--#{$menu-toggle}--m-plain--hover__toggle-icon--Color);
289
- --#{$menu-toggle}--m-plain--Color: var(--#{$menu-toggle}--m-plain--hover--Color);
290
- }
278
+ --#{$menu-toggle}--BorderColor: var(--#{$menu-toggle}--hover--BorderColor);
279
+ --#{$menu-toggle}--BorderWidth: var(--#{$menu-toggle}--hover--BorderWidth);
280
+ }
291
281
 
292
282
  &:focus,
293
- &:focus-within {
294
- --#{$menu-toggle}--BackgroundColor: var(--#{$menu-toggle}--focus--BackgroundColor);
295
- --#{$menu-toggle}--after--BorderBottomWidth: var(--#{$menu-toggle}--focus--after--BorderBottomWidth);
296
- --#{$menu-toggle}--after--BorderBottomColor: var(--#{$menu-toggle}--focus--after--BorderBottomColor);
297
- --#{$menu-toggle}--m-plain__toggle-icon--Color: var(--#{$menu-toggle}--m-plain--focus__toggle-icon--Color);
298
- --#{$menu-toggle}--m-plain--Color: var(--#{$menu-toggle}--m-plain--focus--Color);
299
- }
300
-
301
283
  &:active {
302
- --#{$menu-toggle}--BackgroundColor: var(--#{$menu-toggle}--active--BackgroundColor);
303
- --#{$menu-toggle}--after--BorderBottomWidth: var(--#{$menu-toggle}--active--after--BorderBottomWidth);
304
- --#{$menu-toggle}--after--BorderBottomColor: var(--#{$menu-toggle}--active--after--BorderBottomColor);
305
- --#{$menu-toggle}--m-plain__toggle-icon--Color: var(--#{$menu-toggle}--m-plain--active__toggle-icon--Color);
306
- --#{$menu-toggle}--m-plain--Color: var(--#{$menu-toggle}--m-plain--active--Color);
307
- }
284
+ --#{$menu-toggle}--BorderColor: var(--#{$menu-toggle}--active--BorderColor);
285
+ --#{$menu-toggle}--BorderWidth: var(--#{$menu-toggle}--active--BorderWidth);
286
+ }
308
287
 
309
288
  &.pf-m-expanded {
310
289
  --#{$menu-toggle}--Color: var(--#{$menu-toggle}--m-expanded--Color);
@@ -325,7 +304,6 @@
325
304
  }
326
305
 
327
306
  &.pf-m-primary,
328
- &.pf-m-plain,
329
307
  &:disabled {
330
308
  &::before,
331
309
  &::after {
@@ -553,7 +531,7 @@
553
531
 
554
532
  .#{$menu-toggle}__toggle-icon {
555
533
  margin-right: var(--#{$menu-toggle}__toggle-icon--MarginRight);
556
- color: var(--#{$menu-toggle}__toggle-icon--Color, inherit);
534
+ color: var(--#{$menu-toggle}__toggle-icon--Color);
557
535
  }
558
536
 
559
537
  // stylelint-disable no-invalid-position-at-import-rule
@@ -60,26 +60,26 @@
60
60
  }
61
61
 
62
62
  .pf-v5-c-table {
63
- --pf-v5-c-table--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
64
- --pf-v5-c-table--BorderColor: var(--pf-v5-global--BorderColor--100);
65
- --pf-v5-c-table--border-width--base: var(--pf-v5-global--BorderWidth--sm);
66
- --pf-v5-c-table__caption--FontSize: var(--pf-v5-global--FontSize--sm);
67
- --pf-v5-c-table__caption--Color: var(--pf-v5-global--Color--200);
63
+ --pf-v5-c-table--BackgroundColor: var(--pf-t--global--background--color--primary--default);
64
+ --pf-v5-c-table--BorderColor: var(--pf-t--global--border--color--default);
65
+ --pf-v5-c-table--border-width--base: var(--pf-t--global--border--width--divider--default);
66
+ --pf-v5-c-table__caption--FontSize: var(--pf-t--global--font--size--body);
67
+ --pf-v5-c-table__caption--Color: var(--pf-t--global--text--color--subtle);
68
68
  --pf-v5-c-table__caption--PaddingTop: var(--pf-v5-global--spacer--md);
69
69
  --pf-v5-c-table__caption--PaddingRight: var(--pf-v5-global--spacer--lg);
70
70
  --pf-v5-c-table__caption--PaddingBottom: var(--pf-v5-global--spacer--md);
71
71
  --pf-v5-c-table__caption--PaddingLeft: var(--pf-v5-global--spacer--lg);
72
72
  --pf-v5-c-table__caption--xl--PaddingRight: var(--pf-v5-global--spacer--md);
73
73
  --pf-v5-c-table__caption--xl--PaddingLeft: var(--pf-v5-global--spacer--md);
74
- --pf-v5-c-table__thead--cell--FontSize: var(--pf-v5-global--FontSize--sm);
75
- --pf-v5-c-table__thead--cell--FontWeight: var(--pf-v5-global--FontWeight--bold);
76
- --pf-v5-c-table__tbody--cell--PaddingTop: var(--pf-v5-global--spacer--lg);
77
- --pf-v5-c-table__tbody--cell--PaddingBottom: var(--pf-v5-global--spacer--lg);
74
+ --pf-v5-c-table__thead--cell--FontSize: var(--pf-t--global--font--size--body);
75
+ --pf-v5-c-table__thead--cell--FontWeight: var(--pf-t--global--font--weight--body--bold);
76
+ --pf-v5-c-table__tbody--cell--PaddingTop: var(--pf-t--global--spacer--md);
77
+ --pf-v5-c-table__tbody--cell--PaddingBottom: var(--pf-t--global--spacer--md);
78
78
  --pf-v5-c-table__tr--BoxShadow--top--base: 0 -0.1875rem 0.25rem -0.125rem rgba(3,3,3,.08);
79
79
  --pf-v5-c-table--cell--Padding--base: var(--pf-v5-global--spacer--md);
80
- --pf-v5-c-table--cell--FontSize: var(--pf-v5-global--FontSize--md);
81
- --pf-v5-c-table--cell--FontWeight: var(--pf-v5-global--FontWeight--normal);
82
- --pf-v5-c-table--cell--Color: var(--pf-v5-global--Color--100);
80
+ --pf-v5-c-table--cell--FontSize: var(--pf-t--global--font--size--body);
81
+ --pf-v5-c-table--cell--FontWeight: var(--pf-t--global--font--weight--body);
82
+ --pf-v5-c-table--cell--Color: var(--pf-t--global--text--color--regular);
83
83
  --pf-v5-c-table--cell--PaddingTop: var(--pf-v5-c-table--cell--Padding--base);
84
84
  --pf-v5-c-table--cell--PaddingRight: var(--pf-v5-c-table--cell--Padding--base);
85
85
  --pf-v5-c-table--cell--PaddingBottom: var(--pf-v5-c-table--cell--Padding--base);
@@ -96,10 +96,10 @@
96
96
  --pf-v5-c-table--cell--TextOverflow: clip;
97
97
  --pf-v5-c-table--cell--WhiteSpace: normal;
98
98
  --pf-v5-c-table--cell--WordBreak: normal;
99
- --pf-v5-c-table--cell--m-border-right--before--BorderRightWidth: var(--pf-v5-global--BorderWidth--sm);
100
- --pf-v5-c-table--cell--m-border-right--before--BorderRightColor: var(--pf-v5-global--BorderColor--100);
101
- --pf-v5-c-table--cell--m-border-left--before--BorderLeftWidth: var(--pf-v5-global--BorderWidth--sm);
102
- --pf-v5-c-table--cell--m-border-left--before--BorderLeftColor: var(--pf-v5-global--BorderColor--100);
99
+ --pf-v5-c-table--cell--m-border-right--before--BorderRightWidth: var(--pf-t--global--border--width--divider--default);
100
+ --pf-v5-c-table--cell--m-border-right--before--BorderRightColor: var(--pf-t--global--border--color--default);
101
+ --pf-v5-c-table--cell--m-border-left--before--BorderLeftWidth: var(--pf-t--global--border--width--divider--default);
102
+ --pf-v5-c-table--cell--m-border-left--before--BorderLeftColor: var(--pf-t--global--border--color--default);
103
103
  --pf-v5-c-table--cell--m-help--MinWidth: 11ch;
104
104
  --pf-v5-c-table--m-truncate--cell--MaxWidth: 1px;
105
105
  --pf-v5-c-table--m-truncate--cell--MinWidth: calc(5ch + var(--pf-v5-c-table--cell--PaddingRight) + var(--pf-v5-c-table--cell--PaddingLeft));
@@ -110,33 +110,33 @@
110
110
  --pf-v5-c-table__toggle--c-button__toggle-icon--Transition: .2s ease-in 0s;
111
111
  --pf-v5-c-table__toggle--c-button--m-expanded__toggle-icon--Rotate: 360deg;
112
112
  --pf-v5-c-table__button--BackgroundColor: transparent;
113
- --pf-v5-c-table__button--Color: var(--pf-v5-global--Color--100);
114
- --pf-v5-c-table__button--hover--Color: var(--pf-v5-global--Color--100);
115
- --pf-v5-c-table__button--focus--Color: var(--pf-v5-global--Color--100);
116
- --pf-v5-c-table__button--active--Color: var(--pf-v5-global--Color--100);
113
+ --pf-v5-c-table__button--Color: var(--pf-t--global--text--color--regular);
114
+ --pf-v5-c-table__button--hover--Color: var(--pf-t--global--text--color--regular);
115
+ --pf-v5-c-table__button--focus--Color: var(--pf-t--global--text--color--regular);
116
+ --pf-v5-c-table__button--active--Color: var(--pf-t--global--text--color--regular);
117
117
  --pf-v5-c-table__button--OutlineOffset: calc(var(--pf-v5-global--BorderWidth--lg) * -1);
118
118
  --pf-v5-c-table--m-compact__toggle--PaddingTop: 0;
119
119
  --pf-v5-c-table--m-compact__toggle--PaddingBottom: 0;
120
120
  --pf-v5-c-table__check--input--MarginTop: 0.25rem;
121
- --pf-v5-c-table__check--input--FontSize: var(--pf-v5-global--FontSize--md);
122
- --pf-v5-c-table--cell--m-favorite--Color: var(--pf-v5-global--Color--light-300);
123
- --pf-v5-c-table__favorite--c-button--Color: var(--pf-v5-global--Color--light-300);
124
- --pf-v5-c-table__favorite--c-button--FontSize: var(--pf-v5-global--FontSize--sm);
121
+ --pf-v5-c-table__check--input--FontSize: var(--pf-t--global--font--size--body);
122
+ --pf-v5-c-table--cell--m-favorite--Color: var(--pf-t--global--text--color--subtle);
123
+ --pf-v5-c-table__favorite--c-button--Color: var(--pf-t--global--text--color--subtle);
124
+ --pf-v5-c-table__favorite--c-button--FontSize: var(--pf-t--global--font--size--body);
125
125
  --pf-v5-c-table__favorite--c-button--MarginTop: calc(var(--pf-v5-global--spacer--form-element) * -1);
126
126
  --pf-v5-c-table__favorite--c-button--MarginRight: calc(var(--pf-v5-global--spacer--md) * -1);
127
127
  --pf-v5-c-table__favorite--c-button--MarginBottom: calc(var(--pf-v5-global--spacer--form-element) * -1);
128
128
  --pf-v5-c-table__favorite--c-button--MarginLeft: calc(var(--pf-v5-global--spacer--md) * -1);
129
129
  --pf-v5-c-table__favorite--m-favorited--c-button--Color: var(--pf-v5-global--palette--gold-400);
130
- --pf-v5-c-table__sort--m-favorite__button__text--Color: var(--pf-v5-global--Color--200);
131
- --pf-v5-c-table__sort--m-favorite__button--hover__text--Color: var(--pf-v5-global--Color--100);
132
- --pf-v5-c-table__sort--m-favorite__button--focus__text--Color: var(--pf-v5-global--Color--100);
133
- --pf-v5-c-table__sort--m-favorite__button--active__text--Color: var(--pf-v5-global--Color--100);
130
+ --pf-v5-c-table__sort--m-favorite__button__text--Color: var(--pf-t--global--text--color--subtle);
131
+ --pf-v5-c-table__sort--m-favorite__button--hover__text--Color: var(--pf-t--global--text--color--regular);
132
+ --pf-v5-c-table__sort--m-favorite__button--focus__text--Color: var(--pf-t--global--text--color--regular);
133
+ --pf-v5-c-table__sort--m-favorite__button--active__text--Color: var(--pf-t--global--text--color--regular);
134
134
  --pf-v5-c-table__draggable--c-button--MarginTop: calc(var(--pf-v5-global--spacer--form-element) * -1);
135
135
  --pf-v5-c-table__draggable--c-button--MarginRight: calc(var(--pf-v5-global--spacer--md) * -1);
136
136
  --pf-v5-c-table__draggable--c-button--MarginBottom: calc(var(--pf-v5-global--spacer--form-element) * -1);
137
137
  --pf-v5-c-table__draggable--c-button--MarginLeft: calc(var(--pf-v5-global--spacer--md) * -1);
138
138
  --pf-v5-c-table__tr--m-ghost-row--Opacity: .4;
139
- --pf-v5-c-table__tr--m-ghost-row--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
139
+ --pf-v5-c-table__tr--m-ghost-row--BackgroundColor: var(--pf-t--global--background--color--primary--default);
140
140
  --pf-v5-c-table__action--PaddingTop: 0;
141
141
  --pf-v5-c-table__action--PaddingRight: 0;
142
142
  --pf-v5-c-table__action--PaddingBottom: 0;
@@ -154,7 +154,7 @@
154
154
  --pf-v5-c-table__expandable-row--after--Bottom: calc(var(--pf-v5-c-table--border-width--base) * -1);
155
155
  --pf-v5-c-table__expandable-row--after--border-width--base: var(--pf-v5-global--BorderWidth--lg);
156
156
  --pf-v5-c-table__expandable-row--after--BorderLeftWidth: 0;
157
- --pf-v5-c-table__expandable-row--after--BorderColor: var(--pf-v5-global--active-color--100);
157
+ --pf-v5-c-table__expandable-row--after--BorderColor: var(--pf-t--global--border--color--active);
158
158
  --pf-v5-c-table__icon-inline--MarginRight: var(--pf-v5-global--spacer--sm);
159
159
  --pf-v5-c-table__sort--MinWidth: calc(6ch + var(--pf-v5-c-table--cell--PaddingRight) + var(--pf-v5-c-table--cell--PaddingLeft) + var(--pf-v5-c-table__sort-indicator--MarginLeft));
160
160
  --pf-v5-c-table__sort__button--PaddingTop: var(--pf-v5-global--spacer--form-element);
@@ -164,19 +164,19 @@
164
164
  --pf-v5-c-table__sort__button--MarginTop: calc(var(--pf-v5-c-table__sort__button--PaddingTop) * -1);
165
165
  --pf-v5-c-table__sort__button--MarginBottom: calc(var(--pf-v5-c-table__sort__button--PaddingBottom) * -1);
166
166
  --pf-v5-c-table__sort__button--MarginLeft: calc(var(--pf-v5-c-table__sort__button--PaddingLeft) * -1);
167
- --pf-v5-c-table__sort__button--Color: var(--pf-v5-global--Color--100);
168
- --pf-v5-c-table__sort--m-selected__button--Color: var(--pf-v5-global--active-color--100);
167
+ --pf-v5-c-table__sort__button--Color: var(--pf-t--global--text--color--regular);
168
+ --pf-v5-c-table__sort--m-selected__button--Color: var(--pf-t--global--border--color--active);
169
169
  --pf-v5-c-table__sort--m-help--MinWidth: 15ch;
170
170
  --pf-v5-c-table__sort__button__text--Color: currentcolor;
171
171
  --pf-v5-c-table__sort__button--hover__text--Color: currentcolor;
172
172
  --pf-v5-c-table__sort__button--focus__text--Color: currentcolor;
173
173
  --pf-v5-c-table__sort__button--active__text--Color: currentcolor;
174
- --pf-v5-c-table__sort-indicator--Color: var(--pf-v5-global--disabled-color--200);
174
+ --pf-v5-c-table__sort-indicator--Color: var(--pf-t--global--icon--color--subtle);
175
175
  --pf-v5-c-table__sort-indicator--MarginLeft: var(--pf-v5-global--spacer--md);
176
- --pf-v5-c-table__sort--m-selected__sort-indicator--Color: var(--pf-v5-global--active-color--100);
177
- --pf-v5-c-table__sort__button--hover__sort-indicator--Color: var(--pf-v5-global--Color--100);
178
- --pf-v5-c-table__sort__button--active__sort-indicator--Color: var(--pf-v5-global--Color--100);
179
- --pf-v5-c-table__sort__button--focus__sort-indicator--Color: var(--pf-v5-global--Color--100);
176
+ --pf-v5-c-table__sort--m-selected__sort-indicator--Color: var(--pf-t--global--border--color--active);
177
+ --pf-v5-c-table__sort__button--hover__sort-indicator--Color: var(--pf-t--global--text--color--regular);
178
+ --pf-v5-c-table__sort__button--active__sort-indicator--Color: var(--pf-t--global--text--color--regular);
179
+ --pf-v5-c-table__sort__button--focus__sort-indicator--Color: var(--pf-t--global--text--color--regular);
180
180
  --pf-v5-c-table__th--m-help--MinWidth: 11ch;
181
181
  --pf-v5-c-table__column-help--MarginLeft: var(--pf-v5-global--spacer--xs);
182
182
  --pf-v5-c-table__column-help--TranslateY: 0.125rem;
@@ -184,18 +184,18 @@
184
184
  --pf-v5-c-table__column-help--c-button--MarginBottom: calc(var(--pf-v5-global--spacer--form-element) * -1);
185
185
  --pf-v5-c-table__column-help--c-button--PaddingRight: var(--pf-v5-global--spacer--sm);
186
186
  --pf-v5-c-table__column-help--c-button--PaddingLeft: var(--pf-v5-global--spacer--sm);
187
- --pf-v5-c-table__compound-expansion-toggle__button--Color: var(--pf-v5-global--active-color--100);
188
- --pf-v5-c-table__compound-expansion-toggle__button--hover--Color: var(--pf-v5-global--link--Color--hover);
189
- --pf-v5-c-table__compound-expansion-toggle__button--focus--Color: var(--pf-v5-global--link--Color--hover);
190
- --pf-v5-c-table__compound-expansion-toggle__button--active--Color: var(--pf-v5-global--link--Color--hover);
191
- --pf-v5-c-table__compound-expansion-toggle__button--before--border-width--base: var(--pf-v5-global--BorderWidth--sm);
192
- --pf-v5-c-table__compound-expansion-toggle__button--before--BorderColor: var(--pf-v5-global--BorderColor--100);
187
+ --pf-v5-c-table__compound-expansion-toggle__button--Color: var(--pf-t--global--icon--color--brand--default);
188
+ --pf-v5-c-table__compound-expansion-toggle__button--hover--Color: var(--pf-t--global--icon--color--brand--hover);
189
+ --pf-v5-c-table__compound-expansion-toggle__button--focus--Color: var(--pf-t--global--icon--color--brand--hover);
190
+ --pf-v5-c-table__compound-expansion-toggle__button--active--Color: var(--pf-t--global--icon--color--brand--active);
191
+ --pf-v5-c-table__compound-expansion-toggle__button--before--border-width--base: var(--pf-t--global--border--width--button--default);
192
+ --pf-v5-c-table__compound-expansion-toggle__button--before--BorderColor: var(--pf-t--global--border--color--default);
193
193
  --pf-v5-c-table__compound-expansion-toggle__button--before--BorderRightWidth: 0;
194
194
  --pf-v5-c-table__compound-expansion-toggle__button--before--BorderLeftWidth: 0;
195
195
  --pf-v5-c-table__compound-expansion-toggle__button--before--Bottom: calc(var(--pf-v5-c-table__compound-expansion-toggle__button--before--border-width--base) * -1);
196
196
  --pf-v5-c-table__compound-expansion-toggle__button--before--Left: calc(var(--pf-v5-c-table__compound-expansion-toggle__button--before--border-width--base) * -1);
197
197
  --pf-v5-c-table__compound-expansion-toggle__button--after--border-width--base: var(--pf-v5-global--BorderWidth--lg);
198
- --pf-v5-c-table__compound-expansion-toggle__button--after--BorderColor: var(--pf-v5-global--primary-color--100);
198
+ --pf-v5-c-table__compound-expansion-toggle__button--after--BorderColor: var(--pf-t--global--border--color--active);
199
199
  --pf-v5-c-table__compound-expansion-toggle__button--after--BorderTopWidth: 0;
200
200
  --pf-v5-c-table__compound-expansion-toggle__button--after--Top: calc(var(--pf-v5-c-table__compound-expansion-toggle__button--before--border-width--base) * -1);
201
201
  --pf-v5-c-table__compound-expansion-toggle__button--after--Left: calc(var(--pf-v5-c-table__compound-expansion-toggle__button--before--border-width--base) * -1);
@@ -209,60 +209,61 @@
209
209
  --pf-v5-c-table--m-compact--cell--first-last-child--PaddingRight: var(--pf-v5-global--spacer--md);
210
210
  --pf-v5-c-table--m-compact--cell--first-last-child--xl--PaddingLeft: var(--pf-v5-global--spacer--lg);
211
211
  --pf-v5-c-table--m-compact--cell--first-last-child--xl--PaddingRight: var(--pf-v5-global--spacer--lg);
212
- --pf-v5-c-table--m-compact--FontSize: var(--pf-v5-global--FontSize--sm);
212
+ --pf-v5-c-table--m-compact--FontSize: var(--pf-t--global--font--size--body);
213
213
  --pf-v5-c-table--m-compact__expandable-row-content--PaddingTop: var(--pf-v5-global--spacer--lg);
214
214
  --pf-v5-c-table--m-compact__expandable-row-content--PaddingRight: var(--pf-v5-global--spacer--lg);
215
215
  --pf-v5-c-table--m-compact__expandable-row-content--PaddingBottom: var(--pf-v5-global--spacer--lg);
216
216
  --pf-v5-c-table--m-compact__expandable-row-content--PaddingLeft: var(--pf-v5-global--spacer--lg);
217
217
  --pf-v5-c-table--nested--first-last-child--PaddingRight: var(--pf-v5-c-table--m-compact--cell--first-last-child--PaddingLeft);
218
218
  --pf-v5-c-table--nested--first-last-child--PaddingLeft: var(--pf-v5-c-table--m-compact--cell--first-last-child--PaddingRight);
219
- --pf-v5-c-table__expandable-row--m-expanded--BorderBottomColor: var(--pf-v5-global--BorderColor--100);
219
+ --pf-v5-c-table__expandable-row--m-expanded--BorderBottomColor: var(--pf-t--global--border--color--default);
220
220
  --pf-v5-c-table__tr--m-clickable--BoxShadow--top: var(--pf-v5-c-table__tr--BoxShadow--top--base);
221
221
  --pf-v5-c-table__tr--m-clickable--BackgroundColor: transparent;
222
222
  --pf-v5-c-table__tr--m-clickable--BoxShadow: none;
223
+ --pf-v5-c-table__tr--m-clickable--BorderRadius: var(--pf-t--global--border--radius--small);
223
224
  --pf-v5-c-table__tr--m-clickable--OutlineOffset: calc(-1 * var(--pf-v5-global--spacer--xs));
224
- --pf-v5-c-table__tr--m-clickable--hover--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--BoxShadow--top), var(--pf-v5-global--BoxShadow--sm-bottom);
225
- --pf-v5-c-table__tr--m-clickable--hover--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
226
- --pf-v5-c-table__tr--m-clickable--focus--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--BoxShadow--top), var(--pf-v5-global--BoxShadow--sm-bottom);
227
- --pf-v5-c-table__tr--m-clickable--focus--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
228
- --pf-v5-c-table__tr--m-clickable--active--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--BoxShadow--top), var(--pf-v5-global--BoxShadow--sm-bottom);
229
- --pf-v5-c-table__tr--m-clickable--active--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
230
- --pf-v5-c-table__tr--m-clickable--m-selected--BoxShadow: var(--pf-v5-global--BoxShadow--sm-bottom) inset, var(--pf-v5-global--BoxShadow--sm-bottom);
225
+ --pf-v5-c-table__tr--m-clickable--hover--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
226
+ --pf-v5-c-table__tr--m-clickable--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
227
+ --pf-v5-c-table__tr--m-clickable--focus--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
228
+ --pf-v5-c-table__tr--m-clickable--focus--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
229
+ --pf-v5-c-table__tr--m-clickable--active--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
230
+ --pf-v5-c-table__tr--m-clickable--active--BackgroundColor: var(--pf-t--global--background--color--primary--selected);
231
+ --pf-v5-c-table__tr--m-clickable--m-selected--BoxShadow: var(--pf-t--global--box-shadow--sm--bottom) inset, var(--pf-t--global--box-shadow--sm--bottom);
231
232
  --pf-v5-c-table__tr--m-selected--BoxShadow--top: var(--pf-v5-c-table__tr--BoxShadow--top--base);
232
- --pf-v5-c-table__tr--m-selected--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
233
- --pf-v5-c-table__tr--m-selected--BoxShadow: var(--pf-v5-c-table__tr--m-selected--BoxShadow--top), var(--pf-v5-global--BoxShadow--sm-bottom);
234
- --pf-v5-c-table__tr--m-selected--OutlineOffset: calc(-1 * var(--pf-v5-global--spacer--xs));
233
+ --pf-v5-c-table__tr--m-selected--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
234
+ --pf-v5-c-table__tr--m-selected--BoxShadow: var(--pf-v5-c-table__tr--m-selected--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
235
+ --pf-v5-c-table__tr--m-selected--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
235
236
  --pf-v5-c-table__tr--m-selected--after--BorderLeftWidth: calc(2 * var(--pf-v5-c-table__expandable-row--after--border-width--base));
236
237
  --pf-v5-c-table__tr--m-selected--after--BorderLeftColor: var(--pf-v5-global--active-color--100);
237
- --pf-v5-c-table__tr--m-selected--m-selected--BoxShadow: var(--pf-v5-global--BoxShadow--sm-bottom);
238
- --pf-v5-c-table__tr--m-selected--hover__tr--m-selected--BoxShadow: var(--pf-v5-global--BoxShadow--sm-bottom) inset, var(--pf-v5-global--BoxShadow--sm-bottom);
239
- --pf-v5-c-table__tr--m-selected__tr--m-selected--hover--BoxShadow: var(--pf-v5-c-table__tr--m-selected--BoxShadow--top), var(--pf-v5-global--BoxShadow--sm-bottom);
238
+ --pf-v5-c-table__tr--m-selected--m-selected--BoxShadow: var(--pf-t--global--box-shadow--sm--bottom);
239
+ --pf-v5-c-table__tr--m-selected--hover__tr--m-selected--BoxShadow: var(--pf-t--global--box-shadow--sm--bottom) inset, var(--pf-t--global--box-shadow--sm--bottom);
240
+ --pf-v5-c-table__tr--m-selected__tr--m-selected--hover--BoxShadow: var(--pf-v5-c-table__tr--m-selected--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
240
241
  --pf-v5-c-table__tbody--m-clickable--BoxShadow--top: var(--pf-v5-c-table__tr--BoxShadow--top--base);
241
242
  --pf-v5-c-table__tbody--m-clickable--BoxShadow: none;
242
243
  --pf-v5-c-table__tbody--m-clickable--BackgroundColor: transparent;
243
244
  --pf-v5-c-table__tbody--m-clickable--OutlineOffset: calc(-1 * var(--pf-v5-global--spacer--xs));
244
- --pf-v5-c-table__tbody--m-clickable--hover--BoxShadow: var(--pf-v5-c-table__tbody--m-clickable--BoxShadow--top), var(--pf-v5-global--BoxShadow--sm-bottom);
245
- --pf-v5-c-table__tbody--m-clickable--hover--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
246
- --pf-v5-c-table__tbody--m-clickable--focus--BoxShadow: var(--pf-v5-c-table__tbody--m-clickable--BoxShadow--top), var(--pf-v5-global--BoxShadow--sm-bottom);
247
- --pf-v5-c-table__tbody--m-clickable--focus--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
248
- --pf-v5-c-table__tbody--m-clickable--active--BoxShadow: var(--pf-v5-c-table__tbody--m-clickable--BoxShadow--top), var(--pf-v5-global--BoxShadow--sm-bottom);
249
- --pf-v5-c-table__tbody--m-clickable--active--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
250
- --pf-v5-c-table__tbody--m-clickable--m-expanded--BorderColor: var(--pf-v5-global--active-color--400);
251
- --pf-v5-c-table__tbody--m-clickable--m-selected--hover__tr--BoxShadow: var(--pf-v5-global--BoxShadow--sm-bottom) inset, var(--pf-v5-global--BoxShadow--sm-bottom);
252
- --pf-v5-c-table__tbody--m-selected--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
245
+ --pf-v5-c-table__tbody--m-clickable--hover--BoxShadow: var(--pf-v5-c-table__tbody--m-clickable--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
246
+ --pf-v5-c-table__tbody--m-clickable--hover--BackgroundColor: var(--pf-t--global--background--color--primary--default);
247
+ --pf-v5-c-table__tbody--m-clickable--focus--BoxShadow: var(--pf-v5-c-table__tbody--m-clickable--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
248
+ --pf-v5-c-table__tbody--m-clickable--focus--BackgroundColor: var(--pf-t--global--background--color--primary--default);
249
+ --pf-v5-c-table__tbody--m-clickable--active--BoxShadow: var(--pf-v5-c-table__tbody--m-clickable--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
250
+ --pf-v5-c-table__tbody--m-clickable--active--BackgroundColor: var(--pf-t--global--background--color--primary--default);
251
+ --pf-v5-c-table__tbody--m-clickable--m-expanded--BorderColor: var(--pf-t--global--border--color--active);
252
+ --pf-v5-c-table__tbody--m-clickable--m-selected--hover__tr--BoxShadow: var(--pf-t--global--box-shadow--sm--bottom) inset, var(--pf-t--global--box-shadow--sm--bottom);
253
+ --pf-v5-c-table__tbody--m-selected--BackgroundColor: var(--pf-t--global--background--color--primary--default);
253
254
  --pf-v5-c-table__tbody--m-selected--BoxShadow--top: var(--pf-v5-c-table__tr--BoxShadow--top--base);
254
- --pf-v5-c-table__tbody--m-selected--BoxShadow: var(--pf-v5-c-table__tbody--m-selected--BoxShadow--top), var(--pf-v5-global--BoxShadow--sm-bottom);
255
+ --pf-v5-c-table__tbody--m-selected--BoxShadow: var(--pf-v5-c-table__tbody--m-selected--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
255
256
  --pf-v5-c-table__tbody--m-selected--OutlineOffset: calc(-1 * var(--pf-v5-global--spacer--xs));
256
257
  --pf-v5-c-table__tbody--m-selected--after--BorderLeftWidth: calc(2 * var(--pf-v5-c-table__expandable-row--after--border-width--base));
257
- --pf-v5-c-table__tbody--m-selected--after--BorderLeftColor: var(--pf-v5-global--active-color--100);
258
- --pf-v5-c-table__tbody--m-selected--m-selected--BoxShadow: var(--pf-v5-global--BoxShadow--sm-bottom);
259
- --pf-v5-c-table__tbody--m-selected--hover__tbody--m-selected--BoxShadow: var(--pf-v5-global--BoxShadow--sm-bottom) inset, var(--pf-v5-global--BoxShadow--sm-bottom);
260
- --pf-v5-c-table__tbody--m-selected__tbody--m-selected--hover--BoxShadow: var(--pf-v5-c-table__tr--m-selected--BoxShadow--top), var(--pf-v5-global--BoxShadow--sm-bottom);
258
+ --pf-v5-c-table__tbody--m-selected--after--BorderLeftColor: var(--pf-t--global--border--color--active);
259
+ --pf-v5-c-table__tbody--m-selected--m-selected--BoxShadow: var(--pf-t--global--box-shadow--sm--bottom);
260
+ --pf-v5-c-table__tbody--m-selected--hover__tbody--m-selected--BoxShadow: var(--pf-t--global--box-shadow--sm--bottom) inset, var(--pf-t--global--box-shadow--sm--bottom);
261
+ --pf-v5-c-table__tbody--m-selected__tbody--m-selected--hover--BoxShadow: var(--pf-v5-c-table__tr--m-selected--BoxShadow--top), var(--pf-t--global--box-shadow--sm--bottom);
261
262
  --pf-v5-c-table__thead--m-nested-column-header--button--OutlineOffset: -0.1875rem;
262
263
  --pf-v5-c-table__thead--m-nested-column-header__tr--PaddingTop: var(--pf-v5-global--spacer--xs);
263
264
  --pf-v5-c-table__thead--m-nested-column-header__tr--PaddingBottom: var(--pf-v5-global--spacer--xs);
264
- --pf-v5-c-table__subhead--Color: var(--pf-v5-global--Color--200);
265
- --pf-v5-c-table--m-striped__tr--BackgroundColor: var(--pf-v5-global--BackgroundColor--light-200);
265
+ --pf-v5-c-table__subhead--Color: var(--pf-t--global--text--color--subtle);
266
+ --pf-v5-c-table--m-striped__tr--BackgroundColor: var(--pf-t--global--background--color--primary--default);
266
267
  --pf-v5-c-table--m-sticky-header--cell--ZIndex: var(--pf-v5-global--ZIndex--xs);
267
268
  color: var(--pf-v5-global--Color--100);
268
269
  width: 100%;
@@ -511,27 +512,27 @@
511
512
  .pf-v5-c-table.pf-m-no-border-rows > tbody:where(.pf-v5-c-table__tbody) .pf-v5-c-table__control-row > .pf-v5-c-table__compound-expansion-toggle:first-child > ::before {
512
513
  border-left-width: 0;
513
514
  }
515
+ .pf-v5-c-table tr.pf-m-clickable:last-child {
516
+ border-bottom-color: transparent;
517
+ }
518
+ .pf-v5-c-table tr:where(.pf-v5-c-table__tr) {
519
+ position: relative;
520
+ }
521
+ .pf-v5-c-table tr:where(.pf-v5-c-table__tr)::before {
522
+ position: absolute;
523
+ inset: 0;
524
+ content: "";
525
+ background-color: var(--pf-v5-c-table__tr--m-clickable--BackgroundColor);
526
+ border-radius: var(--pf-v5-c-table__tr--m-clickable--BorderRadius);
527
+ }
514
528
  .pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable {
515
529
  cursor: pointer;
516
- background-color: var(--pf-v5-c-table__tr--m-clickable--BackgroundColor);
517
530
  outline-offset: var(--pf-v5-c-table__tr--m-clickable--OutlineOffset);
518
531
  box-shadow: var(--pf-v5-c-table__tr--m-clickable--BoxShadow);
519
532
  }
520
- .pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable:hover:not(.pf-m-selected) + tr:where(.pf-v5-c-table__tr).pf-m-selected, .pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable:focus:not(.pf-m-selected) + tr:where(.pf-v5-c-table__tr).pf-m-selected, .pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable:active:not(.pf-m-selected) + tr:where(.pf-v5-c-table__tr).pf-m-selected {
521
- box-shadow: var(--pf-v5-c-table__tr--m-clickable--m-selected--BoxShadow);
522
- }
523
- .pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable:hover {
524
- --pf-v5-c-table__tr--m-clickable--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--hover--BoxShadow);
533
+ .pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable:hover, .pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable:focus, .pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable:active {
525
534
  --pf-v5-c-table__tr--m-clickable--BackgroundColor: var(--pf-v5-c-table__tr--m-clickable--hover--BackgroundColor);
526
535
  }
527
- .pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable:focus {
528
- --pf-v5-c-table__tr--m-clickable--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--focus--BoxShadow);
529
- --pf-v5-c-table__tr--m-clickable--BackgroundColor: var(--pf-v5-c-table__tr--m-clickable--focus--BackgroundColor);
530
- }
531
- .pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-clickable:active {
532
- --pf-v5-c-table__tr--m-clickable--BoxShadow: var(--pf-v5-c-table__tr--m-clickable--active--BoxShadow);
533
- --pf-v5-c-table__tr--m-clickable--BackgroundColor: var(--pf-v5-c-table__tr--m-clickable--active--BackgroundColor);
534
- }
535
536
  .pf-v5-c-table tr:where(.pf-v5-c-table__tr).pf-m-selected {
536
537
  --pf-v5-c-table__expandable-row--after--BorderLeftWidth: var(--pf-v5-c-table__tr--m-selected--after--BorderLeftWidth);
537
538
  --pf-v5-c-table__expandable-row--after--BorderColor: var(--pf-v5-c-table__tr--m-selected--after--BorderLeftColor);