@patternfly/patternfly 6.0.0-alpha.102 → 6.0.0-alpha.104

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 (40) hide show
  1. package/components/Check/check.css +2 -2
  2. package/components/Check/check.scss +2 -2
  3. package/components/Drawer/drawer.css +5 -4
  4. package/components/Drawer/drawer.scss +7 -6
  5. package/components/Page/page.css +24 -23
  6. package/components/Page/page.scss +24 -23
  7. package/components/Table/table.css +0 -37
  8. package/components/Table/table.scss +0 -49
  9. package/docs/components/Drawer/examples/Drawer.md +2 -1
  10. package/docs/components/Page/deprecated/PageHeader.md +113 -99
  11. package/docs/components/Page/examples/Page.md +114 -100
  12. package/docs/demos/AboutModal/examples/AboutModal.md +81 -79
  13. package/docs/demos/Alert/examples/Alert.md +551 -524
  14. package/docs/demos/BackToTop/examples/BackToTop.md +211 -209
  15. package/docs/demos/Banner/examples/Banner.md +420 -412
  16. package/docs/demos/CardView/examples/CardView.md +1302 -1297
  17. package/docs/demos/ContextSelector/examples/ContextSelector.md +536 -523
  18. package/docs/demos/Dashboard/examples/Dashboard.md +1344 -1314
  19. package/docs/demos/DataList/examples/DataList.md +3006 -2958
  20. package/docs/demos/DescriptionList/examples/DescriptionList.md +532 -518
  21. package/docs/demos/Drawer/examples/Drawer.md +544 -528
  22. package/docs/demos/JumpLinks/examples/JumpLinks.md +915 -897
  23. package/docs/demos/Masthead/examples/Masthead.md +729 -711
  24. package/docs/demos/Modal/examples/Modal.md +486 -474
  25. package/docs/demos/Nav/examples/Nav.md +528 -510
  26. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +440 -435
  27. package/docs/demos/Page/examples/Page.md +1656 -1633
  28. package/docs/demos/Page/examples/Penta.md +632 -577
  29. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +5222 -5080
  30. package/docs/demos/Skeleton/examples/Skeleton.md +177 -175
  31. package/docs/demos/Table/examples/Table.md +14137 -13972
  32. package/docs/demos/Tabs/examples/Tabs.md +2206 -2138
  33. package/docs/demos/Toolbar/examples/Toolbar.md +1322 -1269
  34. package/docs/demos/Wizard/examples/Wizard.md +1571 -1553
  35. package/package.json +1 -1
  36. package/patternfly-no-globals.css +31 -66
  37. package/patternfly-theme-dark-unversioned.css +31 -66
  38. package/patternfly.css +31 -66
  39. package/patternfly.min.css +1 -1
  40. package/patternfly.min.css.map +1 -1
@@ -2,7 +2,7 @@
2
2
  .pf-v6-c-check {
3
3
  --pf-v6-c-check--GridGap: var(--pf-t--global--spacer--sm) var(--pf-t--global--spacer--sm);
4
4
  --pf-v6-c-check--AccentColor: var(--pf-t--global--color--brand--default);
5
- --pf-v6-c-check--Height: calc(var(--pf-v6-c-check__label--FontSize) * var(--pf-v6-c-check__label--LineHeight));
5
+ --pf-v6-c-check--MinHeight: calc(var(--pf-v6-c-check__label--FontSize) * var(--pf-v6-c-check__label--LineHeight));
6
6
  --pf-v6-c-check__label--disabled--Color: var(--pf-t--global--text--color--disabled);
7
7
  --pf-v6-c-check__label--Color: var(--pf-t--global--text--color--regular);
8
8
  --pf-v6-c-check__label--FontWeight: var(--pf-t--global--font--weight--body);
@@ -25,7 +25,7 @@
25
25
  .pf-v6-c-check.pf-m-standalone {
26
26
  display: inline-grid;
27
27
  grid-template-columns: auto;
28
- height: var(--pf-v6-c-check--Height);
28
+ min-height: var(--pf-v6-c-check--MinHeight);
29
29
  }
30
30
  .pf-v6-c-check.pf-m-standalone .pf-v6-c-check__input {
31
31
  align-self: center;
@@ -4,7 +4,7 @@
4
4
  .#{$check} {
5
5
  --#{$check}--GridGap: var(--pf-t--global--spacer--sm) var(--pf-t--global--spacer--sm);
6
6
  --#{$check}--AccentColor: var(--pf-t--global--color--brand--default);
7
- --#{$check}--Height: calc(var(--#{$check}__label--FontSize) * var(--#{$check}__label--LineHeight));
7
+ --#{$check}--MinHeight: calc(var(--#{$check}__label--FontSize) * var(--#{$check}__label--LineHeight));
8
8
 
9
9
  // TODO: update to `--#{$check}--FontSize` `--#{$check}--LineHeight`
10
10
  --#{$check}__label--disabled--Color: var(--pf-t--global--text--color--disabled);
@@ -34,7 +34,7 @@
34
34
  &.pf-m-standalone {
35
35
  display: inline-grid;
36
36
  grid-template-columns: auto;
37
- height: var(--#{$check}--Height);
37
+ min-height: var(--#{$check}--MinHeight);
38
38
 
39
39
  .#{$check}__input {
40
40
  align-self: center;
@@ -3,7 +3,8 @@
3
3
  --pf-v6-c-drawer__section--BackgroundColor: var(--pf-t--global--background--color--primary--default);
4
4
  --pf-v6-c-drawer__section--m-secondary--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
5
5
  --pf-v6-c-drawer__content--FlexBasis: 100%;
6
- --pf-v6-c-drawer__content--BackgroundColor: var(--pf-t--global--background--color--primary--default);
6
+ --pf-v6-c-drawer__content--BackgroundColor: transparent;
7
+ --pf-v6-c-drawer__content--m-primary--BackgroundColor: var(--pf-t--global--background--color--primary--default);
7
8
  --pf-v6-c-drawer__content--m-secondary--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
8
9
  --pf-v6-c-drawer__content--ZIndex: var(--pf-t--global--Zindex--xs);
9
10
  --pf-v6-c-drawer__panel--MinWidth: 50%;
@@ -204,12 +205,12 @@
204
205
  order: 0;
205
206
  background-color: var(--pf-v6-c-drawer__content--BackgroundColor);
206
207
  }
208
+ .pf-v6-c-drawer__content.pf-m-primary {
209
+ --pf-v6-c-drawer__content--BackgroundColor: var(--pf-v6-c-drawer__content--m-primary--BackgroundColor);
210
+ }
207
211
  .pf-v6-c-drawer__content.pf-m-secondary {
208
212
  --pf-v6-c-drawer__content--BackgroundColor: var(--pf-v6-c-drawer__content--m-secondary--BackgroundColor);
209
213
  }
210
- .pf-v6-c-drawer__content.pf-m-no-background {
211
- --pf-v6-c-drawer__content--BackgroundColor: transparent;
212
- }
213
214
  .pf-v6-c-drawer__content > .pf-v6-c-drawer__body {
214
215
  padding-block-start: var(--pf-v6-c-drawer__content__body--PaddingTop);
215
216
  padding-block-end: var(--pf-v6-c-drawer__content__body--PaddingBottom);
@@ -11,7 +11,8 @@ $pf-v5-c-drawer__panel--list--width: (25, 33, 50, 66, 75, 100);
11
11
 
12
12
  // Content
13
13
  --#{$drawer}__content--FlexBasis: 100%;
14
- --#{$drawer}__content--BackgroundColor: var(--pf-t--global--background--color--primary--default);
14
+ --#{$drawer}__content--BackgroundColor: transparent;
15
+ --#{$drawer}__content--m-primary--BackgroundColor: var(--pf-t--global--background--color--primary--default);
15
16
  --#{$drawer}__content--m-secondary--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
16
17
  --#{$drawer}__content--ZIndex: var(--pf-t--global--Zindex--xs);
17
18
 
@@ -266,14 +267,14 @@ $pf-v5-c-drawer__panel--list--width: (25, 33, 50, 66, 75, 100);
266
267
  order: 0;
267
268
  background-color: var(--#{$drawer}__content--BackgroundColor);
268
269
 
269
- &.pf-m-secondary {
270
- --#{$drawer}__content--BackgroundColor: var(--#{$drawer}__content--m-secondary--BackgroundColor);
270
+ &.pf-m-primary {
271
+ --#{$drawer}__content--BackgroundColor: var(--#{$drawer}__content--m-primary--BackgroundColor);
271
272
  }
272
273
 
273
- &.pf-m-no-background {
274
- --#{$drawer}__content--BackgroundColor: transparent;
274
+ &.pf-m-secondary {
275
+ --#{$drawer}__content--BackgroundColor: var(--#{$drawer}__content--m-secondary--BackgroundColor);
275
276
  }
276
-
277
+
277
278
  > .#{$drawer}__body {
278
279
  padding-block-start: var(--#{$drawer}__content__body--PaddingTop);
279
280
  padding-block-end: var(--#{$drawer}__content__body--PaddingBottom);
@@ -121,19 +121,19 @@
121
121
  --pf-v6-c-page__sidebar-body--m-menu--BorderTopColor: var(--pf-t--global--border--color--default);
122
122
  --pf-v6-c-page__sidebar-body--m-menu--BorderTopWidth: var(--pf-t--global--border--width--button--default);
123
123
  --pf-v6-c-page__sidebar-body--m-menu--c-context-selector--BorderBottomColor: var(--pf-t--global--border--color--default);
124
- --pf-v6-c-page__main--ZIndex: var(--pf-v6-global--ZIndex--xs);
125
- --pf-v6-c-page__main--MaxHeight: calc(100% - var(--pf-t--global--spacer--lg));
126
- --pf-v6-c-page__main--BackgroundColor: var(--pf-t--global--background--color--primary--default);
127
- --pf-v6-c-page__main--MarginInlineStart: var(--pf-t--global--spacer--lg);
128
- --pf-v6-c-page__main--MarginInlineEnd: var(--pf-t--global--spacer--lg);
129
- --pf-v6-c-page__main--BorderRadius: var(--pf-t--global--border--radius--large);
130
- --pf-v6-c-page__main--BorderWidth: var(--pf-t--global--spacer--sm);
131
- --pf-v6-c-page__main--BorderColor: var(--pf-v6-c-page__main--BackgroundColor);
124
+ --pf-v6-c-page__main-container--ZIndex: var(--pf-v6-global--ZIndex--xs);
125
+ --pf-v6-c-page__main-container--MaxHeight: calc(100% - var(--pf-t--global--spacer--lg));
126
+ --pf-v6-c-page__main-container--BackgroundColor: var(--pf-t--global--background--color--primary--default);
127
+ --pf-v6-c-page__main-container--MarginInlineStart: var(--pf-t--global--spacer--lg);
128
+ --pf-v6-c-page__main-container--MarginInlineEnd: var(--pf-t--global--spacer--lg);
129
+ --pf-v6-c-page__main-container--BorderRadius: var(--pf-t--global--border--radius--large);
130
+ --pf-v6-c-page__main-container--BorderWidth: var(--pf-t--global--spacer--sm);
131
+ --pf-v6-c-page__main-container--BorderColor: var(--pf-v6-c-page__main-container--BackgroundColor);
132
132
  --pf-v6-c-page__main-section--MarginTop: var(--pf-t--global--spacer--md);
133
133
  --pf-v6-c-page__main-section--PaddingTop: var(--pf-t--global--spacer--lg);
134
134
  --pf-v6-c-page__main-section--PaddingRight: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main--BorderWidth));
135
135
  --pf-v6-c-page__main-section--PaddingBottom: 0;
136
- --pf-v6-c-page__main-section--PaddingLeft: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main--BorderWidth));
136
+ --pf-v6-c-page__main-section--PaddingLeft: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
137
137
  --pf-v6-c-page__main-breadcrumb--main-section--PaddingTop: var(--pf-t--global--spacer--md);
138
138
  --pf-v6-c-page__main-section--BackgroundColor: var(--pf-t--global--background--color--primary--default);
139
139
  --pf-v6-c-page__main-section--m-secondary--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
@@ -161,9 +161,9 @@
161
161
  --pf-v6-c-page__main-subnav--PaddingInlineStart: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main--BorderWidth));
162
162
  --pf-v6-c-page__main-subnav--PaddingInlineEnd: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main--BorderWidth));
163
163
  --pf-v6-c-page__main-breadcrumb--PaddingTop: var(--pf-t--global--spacer--md);
164
- --pf-v6-c-page__main-breadcrumb--PaddingRight: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main--BorderWidth));
164
+ --pf-v6-c-page__main-breadcrumb--PaddingRight: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
165
165
  --pf-v6-c-page__main-breadcrumb--PaddingBottom: 0;
166
- --pf-v6-c-page__main-breadcrumb--PaddingLeft: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main--BorderWidth));
166
+ --pf-v6-c-page__main-breadcrumb--PaddingLeft: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
167
167
  --pf-v6-c-page__main-breadcrumb--BackgroundColor: var(--pf-t--global--background--color--primary--default);
168
168
  --pf-v6-c-page__main-tabs--PaddingTop: 0;
169
169
  --pf-v6-c-page__main-tabs--PaddingRight: 0;
@@ -209,7 +209,7 @@
209
209
  }
210
210
  @media (min-width: 1200px) {
211
211
  .pf-v6-c-page {
212
- grid-template-areas: "header header" "nav main";
212
+ grid-template-areas: "header header" "sidebar main";
213
213
  grid-template-columns: max-content 1fr;
214
214
  }
215
215
  }
@@ -321,7 +321,7 @@
321
321
  z-index: var(--pf-v6-c-page__sidebar--ZIndex);
322
322
  display: flex;
323
323
  flex-direction: column;
324
- grid-area: nav;
324
+ grid-area: sidebar;
325
325
  grid-row-start: 2;
326
326
  grid-column-start: 1;
327
327
  width: var(--pf-v6-c-page__sidebar--Width);
@@ -633,26 +633,27 @@
633
633
  }
634
634
  }
635
635
 
636
- .pf-v6-c-page__main {
636
+ .pf-v6-c-page__main-container {
637
637
  align-self: start;
638
- max-height: var(--pf-v6-c-page__main--MaxHeight);
638
+ max-height: var(--pf-v6-c-page__main-container--MaxHeight);
639
639
  margin-block-start: 0;
640
- margin-inline-start: var(--pf-v6-c-page__main--MarginInlineStart);
641
- margin-inline-end: var(--pf-v6-c-page__main--MarginInlineEnd);
642
- background: var(--pf-v6-c-page__main--BackgroundColor);
643
- border: var(--pf-v6-c-page__main--BorderWidth) solid var(--pf-v6-c-page__main--BorderColor);
644
- border-radius: var(--pf-v6-c-page__main--BorderRadius);
640
+ margin-inline-start: var(--pf-v6-c-page__main-container--MarginInlineStart);
641
+ margin-inline-end: var(--pf-v6-c-page__main-container--MarginInlineEnd);
642
+ overflow: auto;
643
+ background: var(--pf-v6-c-page__main-container--BackgroundColor);
644
+ border: var(--pf-v6-c-page__main-container--BorderWidth) solid var(--pf-v6-c-page__main-container--BorderColor);
645
+ border-radius: var(--pf-v6-c-page__main-container--BorderRadius);
645
646
  }
646
647
 
647
- .pf-v6-c-page__main,
648
+ .pf-v6-c-page__main-container,
648
649
  .pf-v6-c-page__drawer {
649
- z-index: var(--pf-v6-c-page__main--ZIndex);
650
+ z-index: var(--pf-v6-c-page__main-container--ZIndex);
650
651
  grid-area: main;
651
652
  overflow-x: hidden;
652
653
  overflow-y: auto;
653
654
  -webkit-overflow-scrolling: touch;
654
655
  }
655
- .pf-v6-c-page__main:focus,
656
+ .pf-v6-c-page__main-container:focus,
656
657
  .pf-v6-c-page__drawer:focus {
657
658
  outline: 0;
658
659
  }
@@ -104,22 +104,22 @@ $pf-page-v5--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
104
104
  --#{$page}__sidebar--TranslateX: var(--#{$page}__sidebar--xl--TranslateX);
105
105
  }
106
106
 
107
- // Main
108
- --#{$page}__main--ZIndex: var(--#{$pf-global}--ZIndex--xs);
109
- --#{$page}__main--MaxHeight: calc(100% - var(--pf-t--global--spacer--lg));
110
- --#{$page}__main--BackgroundColor: var(--pf-t--global--background--color--primary--default);
111
- --#{$page}__main--MarginInlineStart: var(--pf-t--global--spacer--lg);
112
- --#{$page}__main--MarginInlineEnd: var(--pf-t--global--spacer--lg);
113
- --#{$page}__main--BorderRadius: var(--pf-t--global--border--radius--large);
114
- --#{$page}__main--BorderWidth: var(--pf-t--global--spacer--sm); // TODO Change to be a page outline token
115
- --#{$page}__main--BorderColor: var(--#{$page}__main--BackgroundColor); // TODO Border should match the background to blend in - change to be a page outline token
107
+ // Container for the main content area (grid area)
108
+ --#{$page}__main-container--ZIndex: var(--#{$pf-global}--ZIndex--xs);
109
+ --#{$page}__main-container--MaxHeight: calc(100% - var(--pf-t--global--spacer--lg));
110
+ --#{$page}__main-container--BackgroundColor: var(--pf-t--global--background--color--primary--default);
111
+ --#{$page}__main-container--MarginInlineStart: var(--pf-t--global--spacer--lg);
112
+ --#{$page}__main-container--MarginInlineEnd: var(--pf-t--global--spacer--lg);
113
+ --#{$page}__main-container--BorderRadius: var(--pf-t--global--border--radius--large);
114
+ --#{$page}__main-container--BorderWidth: var(--pf-t--global--spacer--sm); // TODO Change to be a page outline token
115
+ --#{$page}__main-container--BorderColor: var(--#{$page}__main-container--BackgroundColor); // TODO Border should match the background to blend in - change to be a page outline token
116
116
 
117
117
  // Main section
118
118
  --#{$page}__main-section--MarginTop: var(--pf-t--global--spacer--md);
119
119
  --#{$page}__main-section--PaddingTop: var(--pf-t--global--spacer--lg);
120
120
  --#{$page}__main-section--PaddingRight: calc(var(--pf-t--global--spacer--lg) - var(--#{$page}__main--BorderWidth)); // subtract the border of the main section - TODO, see if we can remove the need for this calc(), or possibly move it down to the property definition so a user can theme this without a calc()
121
121
  --#{$page}__main-section--PaddingBottom: 0;
122
- --#{$page}__main-section--PaddingLeft: calc(var(--pf-t--global--spacer--lg) - var(--#{$page}__main--BorderWidth)); // subtract the border of the main section
122
+ --#{$page}__main-section--PaddingLeft: calc(var(--pf-t--global--spacer--lg) - var(--#{$page}__main-container--BorderWidth)); // subtract the border of the main section
123
123
  --#{$page}__main-breadcrumb--main-section--PaddingTop: var(--pf-t--global--spacer--md);
124
124
  --#{$page}__main-section--BackgroundColor: var(--pf-t--global--background--color--primary--default);
125
125
  --#{$page}__main-section--m-secondary--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
@@ -159,9 +159,9 @@ $pf-page-v5--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
159
159
 
160
160
  // Main section breadcrumb
161
161
  --#{$page}__main-breadcrumb--PaddingTop: var(--pf-t--global--spacer--md);
162
- --#{$page}__main-breadcrumb--PaddingRight: calc(var(--pf-t--global--spacer--lg) - var(--#{$page}__main--BorderWidth)); // subtract the border of the main section
162
+ --#{$page}__main-breadcrumb--PaddingRight: calc(var(--pf-t--global--spacer--lg) - var(--#{$page}__main-container--BorderWidth)); // subtract the border of the main section
163
163
  --#{$page}__main-breadcrumb--PaddingBottom: 0;
164
- --#{$page}__main-breadcrumb--PaddingLeft: calc(var(--pf-t--global--spacer--lg) - var(--#{$page}__main--BorderWidth)); // subtract the border of the main section
164
+ --#{$page}__main-breadcrumb--PaddingLeft: calc(var(--pf-t--global--spacer--lg) - var(--#{$page}__main-container--BorderWidth)); // subtract the border of the main section
165
165
  --#{$page}__main-breadcrumb--BackgroundColor: var(--pf-t--global--background--color--primary--default);
166
166
 
167
167
  // Main section tabs
@@ -192,7 +192,7 @@ $pf-page-v5--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
192
192
  @media (min-width: $pf-v5-global--breakpoint--xl) {
193
193
  grid-template-areas:
194
194
  "header header"
195
- "nav main";
195
+ "sidebar main";
196
196
  grid-template-columns: max-content 1fr;
197
197
  }
198
198
  }
@@ -316,7 +316,7 @@ $pf-page-v5--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
316
316
  z-index: var(--#{$page}__sidebar--ZIndex);
317
317
  display: flex;
318
318
  flex-direction: column;
319
- grid-area: nav;
319
+ grid-area: sidebar;
320
320
  grid-row-start: 2;
321
321
  grid-column-start: 1;
322
322
  width: var(--#{$page}__sidebar--Width);
@@ -492,20 +492,21 @@ $pf-page-v5--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
492
492
  }
493
493
 
494
494
  // Main & Drawer
495
- .#{$page}__main {
495
+ .#{$page}__main-container {
496
496
  align-self: start;
497
- max-height: var(--#{$page}__main--MaxHeight);
497
+ max-height: var(--#{$page}__main-container--MaxHeight);
498
498
  margin-block-start: 0;
499
- margin-inline-start: var(--#{$page}__main--MarginInlineStart);
500
- margin-inline-end: var(--#{$page}__main--MarginInlineEnd);
501
- background: var(--#{$page}__main--BackgroundColor);
502
- border: var(--#{$page}__main--BorderWidth) solid var(--#{$page}__main--BorderColor);
503
- border-radius: var(--#{$page}__main--BorderRadius);
499
+ margin-inline-start: var(--#{$page}__main-container--MarginInlineStart);
500
+ margin-inline-end: var(--#{$page}__main-container--MarginInlineEnd);
501
+ overflow: auto;
502
+ background: var(--#{$page}__main-container--BackgroundColor);
503
+ border: var(--#{$page}__main-container--BorderWidth) solid var(--#{$page}__main-container--BorderColor);
504
+ border-radius: var(--#{$page}__main-container--BorderRadius);
504
505
  }
505
506
 
506
- .#{$page}__main,
507
+ .#{$page}__main-container,
507
508
  .#{$page}__drawer {
508
- z-index: var(--#{$page}__main--ZIndex);
509
+ z-index: var(--#{$page}__main-container--ZIndex);
509
510
  grid-area: main;
510
511
  overflow-x: hidden;
511
512
  overflow-y: auto;
@@ -110,63 +110,38 @@
110
110
  --pf-v6-c-table__button--BorderRadius: var(--pf-t--global--border--radius--small);
111
111
  --pf-v6-c-table__button--hover--Color: var(--pf-t--global--text--color--regular);
112
112
  --pf-v6-c-table__button--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
113
- --pf-v6-c-table--m-compact__toggle--PaddingTop: 0;
114
- --pf-v6-c-table--m-compact__toggle--PaddingBottom: 0;
115
113
  --pf-v6-c-table__check--PaddingLeft: var(--pf-t--global--spacer--sm);
116
114
  --pf-v6-c-table__check--PaddingRight: var(--pf-t--global--spacer--sm);
117
115
  --pf-v6-c-table__favorite--c-button--FontSize: var(--pf-t--global--font--size--body--default);
118
116
  --pf-v6-c-table--cell--m-favorite--Color: var(--pf-t--global--text--color--subtle);
119
117
  --pf-v6-c-table__favorite--m-favorited--c-button--Color: var(--pf-t--global--color--favorite--clicked);
120
- --pf-v6-c-table__favorite--m-favorited--c-button--hover--Color: var(--pf-t--global--color--favorite--clicked);
121
- --pf-v6-c-table__sort--m-favorite__button__text--Color: var(--pf-t--global--text--color--subtle);
122
- --pf-v6-c-table__sort--m-favorite__button--hover__text--Color: var(--pf-t--global--text--color--regular);
123
- --pf-v6-c-table__draggable--c-button--MarginTop: calc(var(--pf-v6-c-button--PaddingTop) * -1);
124
- --pf-v6-c-table__draggable--c-button--MarginRight: calc(var(--pf-v6-c-button--PaddingRight) * -1);
125
- --pf-v6-c-table__draggable--c-button--MarginBottom: calc(var(--pf-v6-c-button--PaddingBottom) * -1);
126
- --pf-v6-c-table__draggable--c-button--MarginLeft: calc(var(--pf-v6-c-button--PaddingLeft) * -1);
127
118
  --pf-v6-c-table__tr--m-ghost-row--Opacity: .4;
128
119
  --pf-v6-c-table__tr--m-ghost-row--BackgroundColor: var(--pf-t--global--background--color--primary--default);
129
120
  --pf-v6-c-table__action--PaddingTop: var(--pf-t--global--spacer--sm);
130
121
  --pf-v6-c-table__action--PaddingBottom: var(--pf-t--global--spacer--sm);
131
122
  --pf-v6-c-table__action--PaddingLeft: var(--pf-t--global--spacer--sm);
132
123
  --pf-v6-c-table__action--PaddingRight: var(--pf-t--global--spacer--sm);
133
- --pf-v6-c-table__inline-edit-action--PaddingTop: var(--pf-t--global--spacer--sm);
134
- --pf-v6-c-table__inline-edit-action--PaddingBottom: var(--pf-t--global--spacer--sm);
135
124
  --pf-v6-c-table__expandable-row--Transition: var(--pf-v6-global--Transition);
136
125
  --pf-v6-c-table__expandable-row-content--PaddingTop: var(--pf-t--global--spacer--md);
137
126
  --pf-v6-c-table__expandable-row-content--PaddingBottom: var(--pf-t--global--spacer--md);
138
127
  --pf-v6-c-table__expandable-row-content--PaddingLeft: var(--pf-t--global--spacer--md);
139
128
  --pf-v6-c-table__expandable-row-content--PaddingRight: var(--pf-t--global--spacer--md);
140
129
  --pf-v6-c-table__expandable-row-content--BorderRadius: var(--pf-t--global--border--radius--small);
141
- --pf-v6-c-table__expandable-row-content--Transition: var(--pf-v6-global--Transition);
142
130
  --pf-v6-c-table__control-row--BackgroundColor: var(--pf-t--global--background--color--primary--default);
143
131
  --pf-v6-c-table__control-row--BorderBottomWidth: var(--pf-t--global--border--width--divider--default);
144
132
  --pf-v6-c-table__control-row__tbody--BorderBottomColor: var(--pf-t--global--border--color--default);
145
133
  --pf-v6-c-table__icon-inline--MarginRight: var(--pf-t--global--spacer--sm);
146
134
  --pf-v6-c-table__sort--MinWidth: calc(6ch + var(--pf-v6-c-table--cell--PaddingRight) + var(--pf-v6-c-table--cell--PaddingLeft) + var(--pf-v6-c-table__sort-indicator--MarginLeft));
147
- --pf-v6-c-table__sort__button--PaddingTop: var(--pf-t--global--spacer--sm);
148
- --pf-v6-c-table__sort__button--PaddingBottom: var(--pf-t--global--spacer--sm);
149
- --pf-v6-c-table__sort__button--PaddingLeft: var(--pf-t--global--spacer--md);
150
- --pf-v6-c-table__sort__button--PaddingRight: var(--pf-t--global--spacer--md);
151
- --pf-v6-c-table__sort__button--MarginBottom: calc(var(--pf-v6-c-table__sort__button--PaddingBottom) * -1);
152
- --pf-v6-c-table__sort__button--MarginLeft: calc(var(--pf-v6-c-table__sort__button--PaddingLeft) * -1);
153
- --pf-v6-c-table__sort__button--Color: var(--pf-t--global--text--color--regular);
154
135
  --pf-v6-c-table__sort--m-selected__button--Color: var(--pf-t--global--color--brand--clicked);
155
136
  --pf-v6-c-table__sort--m-help--MinWidth: 15ch;
156
137
  --pf-v6-c-table__sort__button__text--Color: currentcolor;
157
138
  --pf-v6-c-table__sort__button--hover__text--Color: currentcolor;
158
- --pf-v6-c-table__sort--cell--PaddingLeft: var(--pf-t--global--spacer--xs);
159
- --pf-v6-c-table__sort--cell--PaddingRight: var(--pf-t--global--spacer--sm);
160
139
  --pf-v6-c-table__sort-indicator--Color: var(--pf-t--global--icon--color--subtle);
161
140
  --pf-v6-c-table__sort-indicator--MarginLeft: var(--pf-t--global--spacer--md);
162
141
  --pf-v6-c-table__sort--m-selected__sort-indicator--Color: var(--pf-t--global--color--brand--clicked);
163
142
  --pf-v6-c-table__sort__button--hover__sort-indicator--Color: var(--pf-t--global--text--color--regular);
164
143
  --pf-v6-c-table__th--m-help--MinWidth: 11ch;
165
144
  --pf-v6-c-table__column-help--MarginLeft: var(--pf-t--global--spacer--sm);
166
- --pf-v6-c-table__column-help--c-button--MarginTop: calc(var(--pf-v6-c-button--PaddingTop) * -1);
167
- --pf-v6-c-table__column-help--c-button--MarginBottom: calc(var(--pf-v6-c-button--PaddingBottom) * -1);
168
- --pf-v6-c-table__column-help--c-button--PaddingRight: var(--pf-t--global--spacer--sm);
169
- --pf-v6-c-table__column-help--c-button--PaddingLeft: var(--pf-t--global--spacer--sm);
170
145
  --pf-v6-c-table__compound-expansion-toggle__button--Color: var(--pf-t--global--icon--color--brand--default);
171
146
  --pf-v6-c-table__compound-expansion-toggle__button--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
172
147
  --pf-v6-c-table__compound-expansion-toggle__button--hover--Color: var(--pf-t--global--icon--color--brand--hover);
@@ -174,39 +149,30 @@
174
149
  --pf-v6-c-table__compound-expansion-toggle__button--expanded--BackgroundColor: var(--pf-t--global--background--color--action--plain--clicked);
175
150
  --pf-v6-c-table__compound-expansion-toggle__button--after--BorderColor: var(--pf-t--global--border--color--clicked);
176
151
  --pf-v6-c-table__compound-expansion-toggle__button--after--BorderTopWidth: 0;
177
- --pf-v6-c-table__compound-expansion-toggle__button--hover--BorderColor: var(--pf-t--global--border--color--hover);
178
152
  --pf-v6-c-table__compound-expansion-toggle__button--hover--after--BorderTopWidth: var(--pf-t--global--border--width--strong);
179
153
  --pf-v6-c-table__compound-expansion-toggle--m-expanded__button--after--BorderTopWidth: var(--pf-t--global--border--width--strong);
180
154
  --pf-v6-c-table--compound-expansion--m-expanded--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
181
155
  --pf-v6-c-table--m-compact__th--PaddingTop: calc(var(--pf-t--global--spacer--sm) + var(--pf-t--global--spacer--xs));
182
156
  --pf-v6-c-table--m-compact__th--PaddingBottom: var(--pf-t--global--spacer--sm);
183
157
  --pf-v6-c-table--m-compact--cell--PaddingTop: var(--pf-t--global--spacer--sm);
184
- --pf-v6-c-table--m-compact--cell--PaddingRight: var(--pf-t--global--spacer--sm);
185
158
  --pf-v6-c-table--m-compact--cell--PaddingBottom: var(--pf-t--global--spacer--sm);
186
- --pf-v6-c-table--m-compact--cell--PaddingLeft: var(--pf-t--global--spacer--sm);
187
159
  --pf-v6-c-table--m-compact__action--PaddingTop: var(--pf-t--global--spacer--xs);
188
160
  --pf-v6-c-table--m-compact__action--PaddingBottom: var(--pf-t--global--spacer--xs);
189
- --pf-v6-c-table--m-expandable__tbody--BorderBottomWidth: var(--pf-t--global--border--width--divider--default);
190
- --pf-v6-c-table--m-expandable__tbody--BorderBottomColor: var(--pf-t--global--border--color--default);
191
161
  --pf-v6-c-table__expandable-row--m-expanded--BorderBottomColor: var(--pf-t--global--border--color--default);
192
162
  --pf-v6-c-table__tr--m-clickable--BackgroundColor: transparent;
193
163
  --pf-v6-c-table__tr--m-clickable--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
194
164
  --pf-v6-c-table__tr--m-clickable--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
195
- --pf-v6-c-table__tr--m-clickable--m-expanded--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
196
165
  --pf-v6-c-table__tr--m-selected--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
197
166
  --pf-v6-c-table__tr--m-selected--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
198
167
  --pf-v6-c-table__tbody--m-clickable--BackgroundColor: transparent;
199
168
  --pf-v6-c-table__tbody--m-clickable--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
200
169
  --pf-v6-c-table__tbody--m-clickable--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
201
170
  --pf-v6-c-table__tbody--m-clickable--m-expanded--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
202
- --pf-v6-c-table__tbody--m-clickable--m-expanded--BorderColor: var(--pf-t--global--border--color--clicked);
203
171
  --pf-v6-c-table__tbody--m-selected--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
204
172
  --pf-v6-c-table__tbody--m-selected--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
205
173
  --pf-v6-c-table__thead--m-nested-column-header--button--OutlineOffset: -0.1875rem;
206
174
  --pf-v6-c-table__thead--m-nested-column-header__tr--PaddingTop: var(--pf-t--global--spacer--xs);
207
175
  --pf-v6-c-table__thead--m-nested-column-header__tr--PaddingBottom: var(--pf-t--global--spacer--md);
208
- --pf-v6-c-table__subhead--PaddingLeft: var(--pf-t--global--spacer--sm);
209
- --pf-v6-c-table__subhead--PaddingRight: var(--pf-t--global--spacer--sm);
210
176
  --pf-v6-c-table__subhead--Color: var(--pf-t--global--text--color--subtle);
211
177
  --pf-v6-c-table__nested-column-header__button--PaddingLeft: calc(var(--pf-v6-c-table__button--PaddingLeft) - var(--pf-t--global--spacer--sm));
212
178
  --pf-v6-c-table__nested-column-header__button--PaddingRight: calc(var(--pf-v6-c-table__button--PaddingRight) - var(--pf-t--global--spacer--xs));
@@ -695,7 +661,6 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
695
661
  }
696
662
  .pf-v6-c-table__sort.pf-m-selected .pf-v6-c-table__button {
697
663
  --pf-v6-c-table__sort-indicator--Color: var(--pf-v6-c-table__sort--m-selected__sort-indicator--Color);
698
- --pf-v6-c-table__sort__button__text--Color: var(--pf-v6-c-table__sort--m-selected__button__text--Color);
699
664
  color: var(--pf-v6-c-table__sort--m-selected__button--Color);
700
665
  }
701
666
  .pf-v6-c-table__sort.pf-m-help {
@@ -709,7 +674,6 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
709
674
  grid-column: 2;
710
675
  align-self: end;
711
676
  margin-inline-start: var(--pf-v6-c-table__sort-indicator--MarginLeft);
712
- font-size: var(--pf-v6-c-table__sort-indicator--FontSize);
713
677
  color: var(--pf-v6-c-table__sort-indicator--Color);
714
678
  pointer-events: none;
715
679
  }
@@ -742,7 +706,6 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
742
706
  padding-block-end: var(--pf-v6-c-table__expandable-row-content--PaddingBottom);
743
707
  padding-inline-start: var(--pf-v6-c-table__expandable-row-content--PaddingLeft);
744
708
  padding-inline-end: var(--pf-v6-c-table__expandable-row-content--PaddingRight);
745
- background-color: var(--pf-v6-c-table__expandable-row-content--BackgroundColor);
746
709
  border-radius: var(--pf-v6-c-table__expandable-row-content--BorderRadius);
747
710
  }
748
711
  .pf-v6-c-table__expandable-row.pf-m-expanded {
@@ -95,10 +95,6 @@
95
95
  --#{$table}__button--hover--Color: var(--pf-t--global--text--color--regular);
96
96
  --#{$table}__button--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
97
97
 
98
- // * Table compact
99
- --#{$table}--m-compact__toggle--PaddingTop: 0;
100
- --#{$table}--m-compact__toggle--PaddingBottom: 0;
101
-
102
98
  // * Table check
103
99
  --#{$table}__check--PaddingLeft: var(--pf-t--global--spacer--sm);
104
100
  --#{$table}__check--PaddingRight: var(--pf-t--global--spacer--sm);
@@ -107,15 +103,6 @@
107
103
  --#{$table}__favorite--c-button--FontSize: var(--pf-t--global--font--size--body--default);
108
104
  --#{$table}--cell--m-favorite--Color: var(--pf-t--global--text--color--subtle);
109
105
  --#{$table}__favorite--m-favorited--c-button--Color: var(--pf-t--global--color--favorite--clicked);
110
- --#{$table}__favorite--m-favorited--c-button--hover--Color: var(--pf-t--global--color--favorite--clicked);
111
- --#{$table}__sort--m-favorite__button__text--Color: var(--pf-t--global--text--color--subtle);
112
- --#{$table}__sort--m-favorite__button--hover__text--Color: var(--pf-t--global--text--color--regular);
113
-
114
- // * Table draggable button
115
- --#{$table}__draggable--c-button--MarginTop: calc(var(--#{$button}--PaddingTop) * -1);
116
- --#{$table}__draggable--c-button--MarginRight: calc(var(--#{$button}--PaddingRight) * -1);
117
- --#{$table}__draggable--c-button--MarginBottom: calc(var(--#{$button}--PaddingBottom) * -1);
118
- --#{$table}__draggable--c-button--MarginLeft: calc(var(--#{$button}--PaddingLeft) * -1);
119
106
 
120
107
  // * Table ghost row
121
108
  --#{$table}__tr--m-ghost-row--Opacity: .4;
@@ -127,10 +114,6 @@
127
114
  --#{$table}__action--PaddingLeft: var(--pf-t--global--spacer--sm);
128
115
  --#{$table}__action--PaddingRight: var(--pf-t--global--spacer--sm);
129
116
 
130
- // * Table inline edit action
131
- --#{$table}__inline-edit-action--PaddingTop: var(--pf-t--global--spacer--sm);
132
- --#{$table}__inline-edit-action--PaddingBottom: var(--pf-t--global--spacer--sm);
133
-
134
117
  // * Table expandable row
135
118
  --#{$table}__expandable-row--Transition: var(--#{$pf-global}--Transition); // TODO: update to token when available
136
119
 
@@ -140,7 +123,6 @@
140
123
  --#{$table}__expandable-row-content--PaddingLeft: var(--pf-t--global--spacer--md);
141
124
  --#{$table}__expandable-row-content--PaddingRight: var(--pf-t--global--spacer--md);
142
125
  --#{$table}__expandable-row-content--BorderRadius: var(--pf-t--global--border--radius--small);
143
- --#{$table}__expandable-row-content--Transition: var(--#{$pf-global}--Transition); // TODO: update to token when available
144
126
 
145
127
  // * Table control row
146
128
  --#{$table}__control-row--BackgroundColor: var(--pf-t--global--background--color--primary--default);
@@ -152,15 +134,6 @@
152
134
 
153
135
  // * Table sort cell
154
136
  --#{$table}__sort--MinWidth: calc(6ch + var(--#{$table}--cell--PaddingRight) + var(--#{$table}--cell--PaddingLeft) + var(--#{$table}__sort-indicator--MarginLeft));
155
-
156
- // * Table sort button
157
- --#{$table}__sort__button--PaddingTop: var(--pf-t--global--spacer--sm);
158
- --#{$table}__sort__button--PaddingBottom: var(--pf-t--global--spacer--sm);
159
- --#{$table}__sort__button--PaddingLeft: var(--pf-t--global--spacer--md);
160
- --#{$table}__sort__button--PaddingRight: var(--pf-t--global--spacer--md);
161
- --#{$table}__sort__button--MarginBottom: calc(var(--#{$table}__sort__button--PaddingBottom) * -1);
162
- --#{$table}__sort__button--MarginLeft: calc(var(--#{$table}__sort__button--PaddingLeft) * -1);
163
- --#{$table}__sort__button--Color: var(--pf-t--global--text--color--regular);
164
137
  --#{$table}__sort--m-selected__button--Color: var(--pf-t--global--color--brand--clicked);
165
138
  --#{$table}__sort--m-help--MinWidth: 15ch;
166
139
 
@@ -168,10 +141,6 @@
168
141
  --#{$table}__sort__button__text--Color: currentcolor;
169
142
  --#{$table}__sort__button--hover__text--Color: currentcolor;
170
143
 
171
- // * Table sort cell
172
- --#{$table}__sort--cell--PaddingLeft: var(--pf-t--global--spacer--xs);
173
- --#{$table}__sort--cell--PaddingRight: var(--pf-t--global--spacer--sm);
174
-
175
144
  // * Table sort indicator
176
145
  --#{$table}__sort-indicator--Color: var(--pf-t--global--icon--color--subtle);
177
146
  --#{$table}__sort-indicator--MarginLeft: var(--pf-t--global--spacer--md);
@@ -183,10 +152,6 @@
183
152
 
184
153
  // * Table header popover
185
154
  --#{$table}__column-help--MarginLeft: var(--pf-t--global--spacer--sm);
186
- --#{$table}__column-help--c-button--MarginTop: calc(var(--#{$button}--PaddingTop) * -1);
187
- --#{$table}__column-help--c-button--MarginBottom: calc(var(--#{$button}--PaddingBottom) * -1);
188
- --#{$table}__column-help--c-button--PaddingRight: var(--pf-t--global--spacer--sm);
189
- --#{$table}__column-help--c-button--PaddingLeft: var(--pf-t--global--spacer--sm);
190
155
 
191
156
  // * Table compound expansion toggle button
192
157
  --#{$table}__compound-expansion-toggle__button--Color: var(--pf-t--global--icon--color--brand--default);
@@ -198,7 +163,6 @@
198
163
  // * Table compound expansion toggle button after
199
164
  --#{$table}__compound-expansion-toggle__button--after--BorderColor: var(--pf-t--global--border--color--clicked);
200
165
  --#{$table}__compound-expansion-toggle__button--after--BorderTopWidth: 0;
201
- --#{$table}__compound-expansion-toggle__button--hover--BorderColor: var(--pf-t--global--border--color--hover);
202
166
  --#{$table}__compound-expansion-toggle__button--hover--after--BorderTopWidth: var(--pf-t--global--border--width--strong);
203
167
  --#{$table}__compound-expansion-toggle--m-expanded__button--after--BorderTopWidth: var(--pf-t--global--border--width--strong);
204
168
 
@@ -211,18 +175,12 @@
211
175
 
212
176
  // * Table compact cell
213
177
  --#{$table}--m-compact--cell--PaddingTop: var(--pf-t--global--spacer--sm);
214
- --#{$table}--m-compact--cell--PaddingRight: var(--pf-t--global--spacer--sm);
215
178
  --#{$table}--m-compact--cell--PaddingBottom: var(--pf-t--global--spacer--sm);
216
- --#{$table}--m-compact--cell--PaddingLeft: var(--pf-t--global--spacer--sm);
217
179
 
218
180
  // * Table compact action
219
181
  --#{$table}--m-compact__action--PaddingTop: var(--pf-t--global--spacer--xs);
220
182
  --#{$table}--m-compact__action--PaddingBottom: var(--pf-t--global--spacer--xs);
221
183
 
222
- // * Table expandable tbody
223
- --#{$table}--m-expandable__tbody--BorderBottomWidth: var(--pf-t--global--border--width--divider--default);
224
- --#{$table}--m-expandable__tbody--BorderBottomColor: var(--pf-t--global--border--color--default);
225
-
226
184
  // * Table expandable row expanded
227
185
  --#{$table}__expandable-row--m-expanded--BorderBottomColor: var(--pf-t--global--border--color--default);
228
186
 
@@ -230,7 +188,6 @@
230
188
  --#{$table}__tr--m-clickable--BackgroundColor: transparent;
231
189
  --#{$table}__tr--m-clickable--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
232
190
  --#{$table}__tr--m-clickable--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
233
- --#{$table}__tr--m-clickable--m-expanded--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
234
191
 
235
192
  // * Table tr selected
236
193
  --#{$table}__tr--m-selected--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
@@ -241,7 +198,6 @@
241
198
  --#{$table}__tbody--m-clickable--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
242
199
  --#{$table}__tbody--m-clickable--hover--BackgroundColor: var(--pf-t--global--background--color--primary--hover);
243
200
  --#{$table}__tbody--m-clickable--m-expanded--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
244
- --#{$table}__tbody--m-clickable--m-expanded--BorderColor: var(--pf-t--global--border--color--clicked);
245
201
 
246
202
  // * Table tbody selected
247
203
  --#{$table}__tbody--m-selected--BackgroundColor: var(--pf-t--global--background--color--primary--clicked);
@@ -253,8 +209,6 @@
253
209
  --#{$table}__thead--m-nested-column-header__tr--PaddingBottom: var(--pf-t--global--spacer--md);
254
210
 
255
211
  // * Table subhead
256
- --#{$table}__subhead--PaddingLeft: var(--pf-t--global--spacer--sm);
257
- --#{$table}__subhead--PaddingRight: var(--pf-t--global--spacer--sm);
258
212
  --#{$table}__subhead--Color: var(--pf-t--global--text--color--subtle);
259
213
 
260
214
  // * Table subhead button
@@ -942,7 +896,6 @@
942
896
 
943
897
  &.pf-m-selected .#{$table}__button {
944
898
  --#{$table}__sort-indicator--Color: var(--#{$table}__sort--m-selected__sort-indicator--Color);
945
- --#{$table}__sort__button__text--Color: var(--#{$table}__sort--m-selected__button__text--Color);
946
899
 
947
900
  // override state colors on text
948
901
  color: var(--#{$table}__sort--m-selected__button--Color);
@@ -964,7 +917,6 @@
964
917
  grid-column: 2;
965
918
  align-self: end;
966
919
  margin-inline-start: var(--#{$table}__sort-indicator--MarginLeft); // TODO: update this to gap
967
- font-size: var(--#{$table}__sort-indicator--FontSize);
968
920
  color: var(--#{$table}__sort-indicator--Color);
969
921
  pointer-events: none;
970
922
  }
@@ -1006,7 +958,6 @@
1006
958
  padding-block-end: var(--#{$table}__expandable-row-content--PaddingBottom);
1007
959
  padding-inline-start: var(--#{$table}__expandable-row-content--PaddingLeft);
1008
960
  padding-inline-end: var(--#{$table}__expandable-row-content--PaddingRight);
1009
- background-color: var(--#{$table}__expandable-row-content--BackgroundColor);
1010
961
  border-radius: var(--#{$table}__expandable-row-content--BorderRadius);
1011
962
  }
1012
963
 
@@ -775,7 +775,8 @@ cssPrefix: pf-v6-c-drawer
775
775
  | `.pf-m-no-border` | `.pf-v6-c-drawer__panel` | Modifies the drawer panel border treatment to disable all border treatment. |
776
776
  | `.pf-m-padding` | `.pf-v6-c-drawer__body` | Modifies the element to add padding. |
777
777
  | `.pf-m-no-padding` | `.pf-v6-c-drawer__body` | Modifies the element to remove padding. |
778
- | `.pf-m-no-background` | `.pf-v6-c-drawer__section`, `.pf-v6-c-drawer__content`, `.pf-v6-c-drawer__panel` | Modifies the drawer element background color to transparent. |
778
+ | `.pf-m-no-background` | `.pf-v6-c-drawer__section`, `.pf-v6-c-drawer__panel` | Modifies the drawer element background color to transparent. |
779
+ | `.pf-m-primary` | `.pf-v6-c-drawer__content` | Modifies the drawer content to use the primary background color. |
779
780
  | `.pf-m-secondary` | `.pf-v6-c-drawer__section`, `.pf-v6-c-drawer__content`, `.pf-v6-c-drawer__panel` | Modifies the drawer element to use the secondary background color. |
780
781
  | `.pf-m-width-{25, 33, 50, 66, 75, 100}{-on-[breakpoint]}` | `.pf-v6-c-drawer__panel` | Modifies the drawer panel width at optional [breakpoint](/developer-resources/global-css-variables#breakpoint-variables-and-class-suffixes). |
781
782
  | `.pf-m-resizable` | `.pf-v6-c-drawer__panel` | Modifies the drawer panel to be resizable. Intended for use with the `.pf-v6-c-drawer__splitter` element. |