@patternfly/react-styles 6.3.0-prerelease.11 → 6.3.0-prerelease.13

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [6.3.0-prerelease.13](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.3.0-prerelease.12...@patternfly/react-styles@6.3.0-prerelease.13) (2025-07-18)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **Button:** Bump core version to fix button animation ([#11928](https://github.com/patternfly/patternfly-react/issues/11928)) ([dc6e358](https://github.com/patternfly/patternfly-react/commit/dc6e358e8b9cd81f9be0a1a21d4fc0cae4ca21d8))
11
+
12
+ # [6.3.0-prerelease.12](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.3.0-prerelease.11...@patternfly/react-styles@6.3.0-prerelease.12) (2025-07-17)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **Tables:** updated animations to beta ([#11927](https://github.com/patternfly/patternfly-react/issues/11927)) ([cca6678](https://github.com/patternfly/patternfly-react/commit/cca667858c24bb9d7cb39e0c781ff3c8466f7ef6))
17
+
6
18
  # [6.3.0-prerelease.11](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.3.0-prerelease.10...@patternfly/react-styles@6.3.0-prerelease.11) (2025-07-11)
7
19
 
8
20
  ### Bug Fixes
@@ -327,7 +327,7 @@
327
327
  cursor: pointer;
328
328
  -webkit-user-select: none;
329
329
  user-select: none;
330
- background: var(--pf-v6-c-button--BackgroundColor) radial-gradient(circle, transparent 1%, color-mix(in srgb, currentcolor 15%, transparent) 1%) center/15000% 15000%;
330
+ background: var(--pf-v6-c-button--BackgroundColor) radial-gradient(circle, transparent 1%, color-mix(in srgb, currentcolor 15%, transparent) 2%) center/15000% 15000%;
331
331
  border: 0;
332
332
  border-start-start-radius: var(--pf-v6-c-button--BorderStartStartRadius, var(--pf-v6-c-button--BorderRadius));
333
333
  border-start-end-radius: var(--pf-v6-c-button--BorderStartEndRadius, var(--pf-v6-c-button--BorderRadius));
@@ -101,6 +101,9 @@
101
101
  .pf-m-grid.pf-v6-c-table.pf-m-animate-expand {
102
102
  --pf-v6-c-table__expandable-row--Display: block;
103
103
  }
104
+ .pf-m-grid.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
105
+ content: none;
106
+ }
104
107
  .pf-m-grid.pf-v6-c-table.pf-m-expandable {
105
108
  --pf-v6-c-table__tr--BorderBlockEndWidth: 0;
106
109
  }
@@ -112,7 +115,7 @@
112
115
  --pf-v6-c-table__expandable-row--after--BorderInlineStartWidth: 0;
113
116
  --pf-v6-c-table__expandable-row--after--BorderColor: transparent;
114
117
  }
115
- .pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) {
118
+ .pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) {
116
119
  display: grid;
117
120
  grid-template-columns: 1fr;
118
121
  height: auto;
@@ -123,13 +126,13 @@
123
126
  padding-block-end: var(--pf-v6-c-table__tr--responsive--PaddingBlockEnd);
124
127
  padding-inline-start: var(--pf-v6-c-table__tr--responsive--PaddingInlineStart);
125
128
  }
126
- .pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) > :where(th, td) {
129
+ .pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td) {
127
130
  padding-block-start: var(--pf-v6-c-table--cell--responsive--PaddingBlockStart);
128
131
  padding-inline-end: var(--pf-v6-c-table--cell--responsive--PaddingInlineEnd);
129
132
  padding-block-end: var(--pf-v6-c-table--cell--responsive--PaddingBlockEnd);
130
133
  padding-inline-start: var(--pf-v6-c-table--cell--responsive--PaddingInlineStart);
131
134
  }
132
- .pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) > :where(th, td):first-child {
135
+ .pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child {
133
136
  --pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart);
134
137
  }
135
138
  .pf-m-grid.pf-v6-c-table.pf-m-compact {
@@ -167,7 +170,7 @@
167
170
  position: revert;
168
171
  font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
169
172
  text-align: start;
170
- content: var(--pf-v6-c-table--cell--responsive--label, attr(data-label));
173
+ content: attr(data-label);
171
174
  }
172
175
  .pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr) > :where(th, td):first-child {
173
176
  --pf-v6-c-table--cell--PaddingInlineStart: 0;
@@ -211,7 +214,7 @@
211
214
  width: auto;
212
215
  background-color: transparent;
213
216
  }
214
- .pf-m-grid.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) {
217
+ .pf-m-grid.pf-v6-c-table .pf-v6-c-table__expandable-row {
215
218
  --pf-v6-c-table--cell--responsive--PaddingBlockStart: 0;
216
219
  --pf-v6-c-table--cell--responsive--PaddingInlineEnd: 0;
217
220
  --pf-v6-c-table--cell--responsive--PaddingBlockEnd: 0;
@@ -223,24 +226,24 @@
223
226
  overflow-y: auto;
224
227
  border-block-end: none;
225
228
  }
226
- .pf-m-grid.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) > :where(th, td) {
229
+ .pf-m-grid.pf-v6-c-table .pf-v6-c-table__expandable-row > :where(th, td) {
227
230
  position: static;
228
231
  display: block;
229
232
  }
230
- .pf-m-grid.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)).pf-m-expanded {
233
+ .pf-m-grid.pf-v6-c-table .pf-v6-c-table__expandable-row.pf-m-expanded {
231
234
  border-block-start-color: var(--pf-v6-c-table--BorderColor);
232
235
  }
233
- .pf-m-grid.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) > :first-child:not(.pf-v6-c-table__check)::after {
236
+ .pf-m-grid.pf-v6-c-table .pf-v6-c-table__expandable-row > :first-child:not(.pf-v6-c-table__check)::after {
234
237
  content: none;
235
238
  }
236
- .pf-m-grid.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) th:where(.pf-v6-c-table__th).pf-m-no-padding .pf-v6-c-table__expandable-row-content,
237
- .pf-m-grid.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) td:where(.pf-v6-c-table__td).pf-m-no-padding .pf-v6-c-table__expandable-row-content {
239
+ .pf-m-grid.pf-v6-c-table .pf-v6-c-table__expandable-row th:where(.pf-v6-c-table__th).pf-m-no-padding .pf-v6-c-table__expandable-row-content,
240
+ .pf-m-grid.pf-v6-c-table .pf-v6-c-table__expandable-row td:where(.pf-v6-c-table__td).pf-m-no-padding .pf-v6-c-table__expandable-row-content {
238
241
  padding: 0;
239
242
  }
240
- .pf-m-grid.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)):not(.pf-m-expanded) {
243
+ .pf-m-grid.pf-v6-c-table .pf-v6-c-table__expandable-row:not(.pf-m-expanded) {
241
244
  display: none;
242
245
  }
243
- .pf-m-grid.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) .pf-v6-c-table__expandable-row-content {
246
+ .pf-m-grid.pf-v6-c-table .pf-v6-c-table__expandable-row .pf-v6-c-table__expandable-row-content {
244
247
  padding-inline-end: var(--pf-v6-c-table__expandable-row-content--responsive--PaddingInlineEnd);
245
248
  padding-inline-start: var(--pf-v6-c-table__expandable-row-content--responsive--PaddingInlineStart);
246
249
  }
@@ -278,10 +281,10 @@
278
281
  width: var(--pf-v6-c-table__tr--m-selected--after--BorderInlineStartWidth);
279
282
  background-color: var(--pf-v6-c-table__tr--m-selected--after--BorderInlineStartColor);
280
283
  }
281
- .pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__toggle,
282
- .pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__check,
283
- .pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__favorite,
284
- .pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__action {
284
+ .pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__toggle,
285
+ .pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__check,
286
+ .pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__favorite,
287
+ .pf-m-grid.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__action {
285
288
  width: auto;
286
289
  padding: 0;
287
290
  }
@@ -407,6 +410,9 @@
407
410
  .pf-m-grid-md.pf-v6-c-table.pf-m-animate-expand {
408
411
  --pf-v6-c-table__expandable-row--Display: block;
409
412
  }
413
+ .pf-m-grid-md.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
414
+ content: none;
415
+ }
410
416
  .pf-m-grid-md.pf-v6-c-table.pf-m-expandable {
411
417
  --pf-v6-c-table__tr--BorderBlockEndWidth: 0;
412
418
  }
@@ -418,7 +424,7 @@
418
424
  --pf-v6-c-table__expandable-row--after--BorderInlineStartWidth: 0;
419
425
  --pf-v6-c-table__expandable-row--after--BorderColor: transparent;
420
426
  }
421
- .pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) {
427
+ .pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) {
422
428
  display: grid;
423
429
  grid-template-columns: 1fr;
424
430
  height: auto;
@@ -429,13 +435,13 @@
429
435
  padding-block-end: var(--pf-v6-c-table__tr--responsive--PaddingBlockEnd);
430
436
  padding-inline-start: var(--pf-v6-c-table__tr--responsive--PaddingInlineStart);
431
437
  }
432
- .pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) > :where(th, td) {
438
+ .pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td) {
433
439
  padding-block-start: var(--pf-v6-c-table--cell--responsive--PaddingBlockStart);
434
440
  padding-inline-end: var(--pf-v6-c-table--cell--responsive--PaddingInlineEnd);
435
441
  padding-block-end: var(--pf-v6-c-table--cell--responsive--PaddingBlockEnd);
436
442
  padding-inline-start: var(--pf-v6-c-table--cell--responsive--PaddingInlineStart);
437
443
  }
438
- .pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) > :where(th, td):first-child {
444
+ .pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child {
439
445
  --pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart);
440
446
  }
441
447
  .pf-m-grid-md.pf-v6-c-table.pf-m-compact {
@@ -473,7 +479,7 @@
473
479
  position: revert;
474
480
  font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
475
481
  text-align: start;
476
- content: var(--pf-v6-c-table--cell--responsive--label, attr(data-label));
482
+ content: attr(data-label);
477
483
  }
478
484
  .pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr) > :where(th, td):first-child {
479
485
  --pf-v6-c-table--cell--PaddingInlineStart: 0;
@@ -517,7 +523,7 @@
517
523
  width: auto;
518
524
  background-color: transparent;
519
525
  }
520
- .pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) {
526
+ .pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__expandable-row {
521
527
  --pf-v6-c-table--cell--responsive--PaddingBlockStart: 0;
522
528
  --pf-v6-c-table--cell--responsive--PaddingInlineEnd: 0;
523
529
  --pf-v6-c-table--cell--responsive--PaddingBlockEnd: 0;
@@ -529,24 +535,24 @@
529
535
  overflow-y: auto;
530
536
  border-block-end: none;
531
537
  }
532
- .pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) > :where(th, td) {
538
+ .pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__expandable-row > :where(th, td) {
533
539
  position: static;
534
540
  display: block;
535
541
  }
536
- .pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)).pf-m-expanded {
542
+ .pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__expandable-row.pf-m-expanded {
537
543
  border-block-start-color: var(--pf-v6-c-table--BorderColor);
538
544
  }
539
- .pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) > :first-child:not(.pf-v6-c-table__check)::after {
545
+ .pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__expandable-row > :first-child:not(.pf-v6-c-table__check)::after {
540
546
  content: none;
541
547
  }
542
- .pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) th:where(.pf-v6-c-table__th).pf-m-no-padding .pf-v6-c-table__expandable-row-content,
543
- .pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) td:where(.pf-v6-c-table__td).pf-m-no-padding .pf-v6-c-table__expandable-row-content {
548
+ .pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__expandable-row th:where(.pf-v6-c-table__th).pf-m-no-padding .pf-v6-c-table__expandable-row-content,
549
+ .pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__expandable-row td:where(.pf-v6-c-table__td).pf-m-no-padding .pf-v6-c-table__expandable-row-content {
544
550
  padding: 0;
545
551
  }
546
- .pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)):not(.pf-m-expanded) {
552
+ .pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__expandable-row:not(.pf-m-expanded) {
547
553
  display: none;
548
554
  }
549
- .pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) .pf-v6-c-table__expandable-row-content {
555
+ .pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__expandable-row .pf-v6-c-table__expandable-row-content {
550
556
  padding-inline-end: var(--pf-v6-c-table__expandable-row-content--responsive--PaddingInlineEnd);
551
557
  padding-inline-start: var(--pf-v6-c-table__expandable-row-content--responsive--PaddingInlineStart);
552
558
  }
@@ -584,10 +590,10 @@
584
590
  width: var(--pf-v6-c-table__tr--m-selected--after--BorderInlineStartWidth);
585
591
  background-color: var(--pf-v6-c-table__tr--m-selected--after--BorderInlineStartColor);
586
592
  }
587
- .pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__toggle,
588
- .pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__check,
589
- .pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__favorite,
590
- .pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__action {
593
+ .pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__toggle,
594
+ .pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__check,
595
+ .pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__favorite,
596
+ .pf-m-grid-md.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__action {
591
597
  width: auto;
592
598
  padding: 0;
593
599
  }
@@ -716,6 +722,9 @@
716
722
  .pf-m-grid-lg.pf-v6-c-table.pf-m-animate-expand {
717
723
  --pf-v6-c-table__expandable-row--Display: block;
718
724
  }
725
+ .pf-m-grid-lg.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
726
+ content: none;
727
+ }
719
728
  .pf-m-grid-lg.pf-v6-c-table.pf-m-expandable {
720
729
  --pf-v6-c-table__tr--BorderBlockEndWidth: 0;
721
730
  }
@@ -727,7 +736,7 @@
727
736
  --pf-v6-c-table__expandable-row--after--BorderInlineStartWidth: 0;
728
737
  --pf-v6-c-table__expandable-row--after--BorderColor: transparent;
729
738
  }
730
- .pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) {
739
+ .pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) {
731
740
  display: grid;
732
741
  grid-template-columns: 1fr;
733
742
  height: auto;
@@ -738,13 +747,13 @@
738
747
  padding-block-end: var(--pf-v6-c-table__tr--responsive--PaddingBlockEnd);
739
748
  padding-inline-start: var(--pf-v6-c-table__tr--responsive--PaddingInlineStart);
740
749
  }
741
- .pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) > :where(th, td) {
750
+ .pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td) {
742
751
  padding-block-start: var(--pf-v6-c-table--cell--responsive--PaddingBlockStart);
743
752
  padding-inline-end: var(--pf-v6-c-table--cell--responsive--PaddingInlineEnd);
744
753
  padding-block-end: var(--pf-v6-c-table--cell--responsive--PaddingBlockEnd);
745
754
  padding-inline-start: var(--pf-v6-c-table--cell--responsive--PaddingInlineStart);
746
755
  }
747
- .pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) > :where(th, td):first-child {
756
+ .pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child {
748
757
  --pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart);
749
758
  }
750
759
  .pf-m-grid-lg.pf-v6-c-table.pf-m-compact {
@@ -782,7 +791,7 @@
782
791
  position: revert;
783
792
  font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
784
793
  text-align: start;
785
- content: var(--pf-v6-c-table--cell--responsive--label, attr(data-label));
794
+ content: attr(data-label);
786
795
  }
787
796
  .pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr) > :where(th, td):first-child {
788
797
  --pf-v6-c-table--cell--PaddingInlineStart: 0;
@@ -826,7 +835,7 @@
826
835
  width: auto;
827
836
  background-color: transparent;
828
837
  }
829
- .pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) {
838
+ .pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__expandable-row {
830
839
  --pf-v6-c-table--cell--responsive--PaddingBlockStart: 0;
831
840
  --pf-v6-c-table--cell--responsive--PaddingInlineEnd: 0;
832
841
  --pf-v6-c-table--cell--responsive--PaddingBlockEnd: 0;
@@ -838,24 +847,24 @@
838
847
  overflow-y: auto;
839
848
  border-block-end: none;
840
849
  }
841
- .pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) > :where(th, td) {
850
+ .pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__expandable-row > :where(th, td) {
842
851
  position: static;
843
852
  display: block;
844
853
  }
845
- .pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)).pf-m-expanded {
854
+ .pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__expandable-row.pf-m-expanded {
846
855
  border-block-start-color: var(--pf-v6-c-table--BorderColor);
847
856
  }
848
- .pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) > :first-child:not(.pf-v6-c-table__check)::after {
857
+ .pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__expandable-row > :first-child:not(.pf-v6-c-table__check)::after {
849
858
  content: none;
850
859
  }
851
- .pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) th:where(.pf-v6-c-table__th).pf-m-no-padding .pf-v6-c-table__expandable-row-content,
852
- .pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) td:where(.pf-v6-c-table__td).pf-m-no-padding .pf-v6-c-table__expandable-row-content {
860
+ .pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__expandable-row th:where(.pf-v6-c-table__th).pf-m-no-padding .pf-v6-c-table__expandable-row-content,
861
+ .pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__expandable-row td:where(.pf-v6-c-table__td).pf-m-no-padding .pf-v6-c-table__expandable-row-content {
853
862
  padding: 0;
854
863
  }
855
- .pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)):not(.pf-m-expanded) {
864
+ .pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__expandable-row:not(.pf-m-expanded) {
856
865
  display: none;
857
866
  }
858
- .pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) .pf-v6-c-table__expandable-row-content {
867
+ .pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__expandable-row .pf-v6-c-table__expandable-row-content {
859
868
  padding-inline-end: var(--pf-v6-c-table__expandable-row-content--responsive--PaddingInlineEnd);
860
869
  padding-inline-start: var(--pf-v6-c-table__expandable-row-content--responsive--PaddingInlineStart);
861
870
  }
@@ -893,10 +902,10 @@
893
902
  width: var(--pf-v6-c-table__tr--m-selected--after--BorderInlineStartWidth);
894
903
  background-color: var(--pf-v6-c-table__tr--m-selected--after--BorderInlineStartColor);
895
904
  }
896
- .pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__toggle,
897
- .pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__check,
898
- .pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__favorite,
899
- .pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__action {
905
+ .pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__toggle,
906
+ .pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__check,
907
+ .pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__favorite,
908
+ .pf-m-grid-lg.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__action {
900
909
  width: auto;
901
910
  padding: 0;
902
911
  }
@@ -1025,6 +1034,9 @@
1025
1034
  .pf-m-grid-xl.pf-v6-c-table.pf-m-animate-expand {
1026
1035
  --pf-v6-c-table__expandable-row--Display: block;
1027
1036
  }
1037
+ .pf-m-grid-xl.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
1038
+ content: none;
1039
+ }
1028
1040
  .pf-m-grid-xl.pf-v6-c-table.pf-m-expandable {
1029
1041
  --pf-v6-c-table__tr--BorderBlockEndWidth: 0;
1030
1042
  }
@@ -1036,7 +1048,7 @@
1036
1048
  --pf-v6-c-table__expandable-row--after--BorderInlineStartWidth: 0;
1037
1049
  --pf-v6-c-table__expandable-row--after--BorderColor: transparent;
1038
1050
  }
1039
- .pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) {
1051
+ .pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) {
1040
1052
  display: grid;
1041
1053
  grid-template-columns: 1fr;
1042
1054
  height: auto;
@@ -1047,13 +1059,13 @@
1047
1059
  padding-block-end: var(--pf-v6-c-table__tr--responsive--PaddingBlockEnd);
1048
1060
  padding-inline-start: var(--pf-v6-c-table__tr--responsive--PaddingInlineStart);
1049
1061
  }
1050
- .pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) > :where(th, td) {
1062
+ .pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td) {
1051
1063
  padding-block-start: var(--pf-v6-c-table--cell--responsive--PaddingBlockStart);
1052
1064
  padding-inline-end: var(--pf-v6-c-table--cell--responsive--PaddingInlineEnd);
1053
1065
  padding-block-end: var(--pf-v6-c-table--cell--responsive--PaddingBlockEnd);
1054
1066
  padding-inline-start: var(--pf-v6-c-table--cell--responsive--PaddingInlineStart);
1055
1067
  }
1056
- .pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) > :where(th, td):first-child {
1068
+ .pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child {
1057
1069
  --pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart);
1058
1070
  }
1059
1071
  .pf-m-grid-xl.pf-v6-c-table.pf-m-compact {
@@ -1091,7 +1103,7 @@
1091
1103
  position: revert;
1092
1104
  font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
1093
1105
  text-align: start;
1094
- content: var(--pf-v6-c-table--cell--responsive--label, attr(data-label));
1106
+ content: attr(data-label);
1095
1107
  }
1096
1108
  .pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr) > :where(th, td):first-child {
1097
1109
  --pf-v6-c-table--cell--PaddingInlineStart: 0;
@@ -1135,7 +1147,7 @@
1135
1147
  width: auto;
1136
1148
  background-color: transparent;
1137
1149
  }
1138
- .pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) {
1150
+ .pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__expandable-row {
1139
1151
  --pf-v6-c-table--cell--responsive--PaddingBlockStart: 0;
1140
1152
  --pf-v6-c-table--cell--responsive--PaddingInlineEnd: 0;
1141
1153
  --pf-v6-c-table--cell--responsive--PaddingBlockEnd: 0;
@@ -1147,24 +1159,24 @@
1147
1159
  overflow-y: auto;
1148
1160
  border-block-end: none;
1149
1161
  }
1150
- .pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) > :where(th, td) {
1162
+ .pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__expandable-row > :where(th, td) {
1151
1163
  position: static;
1152
1164
  display: block;
1153
1165
  }
1154
- .pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)).pf-m-expanded {
1166
+ .pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__expandable-row.pf-m-expanded {
1155
1167
  border-block-start-color: var(--pf-v6-c-table--BorderColor);
1156
1168
  }
1157
- .pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) > :first-child:not(.pf-v6-c-table__check)::after {
1169
+ .pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__expandable-row > :first-child:not(.pf-v6-c-table__check)::after {
1158
1170
  content: none;
1159
1171
  }
1160
- .pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) th:where(.pf-v6-c-table__th).pf-m-no-padding .pf-v6-c-table__expandable-row-content,
1161
- .pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) td:where(.pf-v6-c-table__td).pf-m-no-padding .pf-v6-c-table__expandable-row-content {
1172
+ .pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__expandable-row th:where(.pf-v6-c-table__th).pf-m-no-padding .pf-v6-c-table__expandable-row-content,
1173
+ .pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__expandable-row td:where(.pf-v6-c-table__td).pf-m-no-padding .pf-v6-c-table__expandable-row-content {
1162
1174
  padding: 0;
1163
1175
  }
1164
- .pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)):not(.pf-m-expanded) {
1176
+ .pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__expandable-row:not(.pf-m-expanded) {
1165
1177
  display: none;
1166
1178
  }
1167
- .pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) .pf-v6-c-table__expandable-row-content {
1179
+ .pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__expandable-row .pf-v6-c-table__expandable-row-content {
1168
1180
  padding-inline-end: var(--pf-v6-c-table__expandable-row-content--responsive--PaddingInlineEnd);
1169
1181
  padding-inline-start: var(--pf-v6-c-table__expandable-row-content--responsive--PaddingInlineStart);
1170
1182
  }
@@ -1202,10 +1214,10 @@
1202
1214
  width: var(--pf-v6-c-table__tr--m-selected--after--BorderInlineStartWidth);
1203
1215
  background-color: var(--pf-v6-c-table__tr--m-selected--after--BorderInlineStartColor);
1204
1216
  }
1205
- .pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__toggle,
1206
- .pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__check,
1207
- .pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__favorite,
1208
- .pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__action {
1217
+ .pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__toggle,
1218
+ .pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__check,
1219
+ .pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__favorite,
1220
+ .pf-m-grid-xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__action {
1209
1221
  width: auto;
1210
1222
  padding: 0;
1211
1223
  }
@@ -1334,6 +1346,9 @@
1334
1346
  .pf-m-grid-2xl.pf-v6-c-table.pf-m-animate-expand {
1335
1347
  --pf-v6-c-table__expandable-row--Display: block;
1336
1348
  }
1349
+ .pf-m-grid-2xl.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row:not(.pf-m-expanded) > :is(.pf-v6-c-table__td, .pf-v6-c-table__th)[data-label]::before {
1350
+ content: none;
1351
+ }
1337
1352
  .pf-m-grid-2xl.pf-v6-c-table.pf-m-expandable {
1338
1353
  --pf-v6-c-table__tr--BorderBlockEndWidth: 0;
1339
1354
  }
@@ -1345,7 +1360,7 @@
1345
1360
  --pf-v6-c-table__expandable-row--after--BorderInlineStartWidth: 0;
1346
1361
  --pf-v6-c-table__expandable-row--after--BorderColor: transparent;
1347
1362
  }
1348
- .pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) {
1363
+ .pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) {
1349
1364
  display: grid;
1350
1365
  grid-template-columns: 1fr;
1351
1366
  height: auto;
@@ -1356,13 +1371,13 @@
1356
1371
  padding-block-end: var(--pf-v6-c-table__tr--responsive--PaddingBlockEnd);
1357
1372
  padding-inline-start: var(--pf-v6-c-table__tr--responsive--PaddingInlineStart);
1358
1373
  }
1359
- .pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) > :where(th, td) {
1374
+ .pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td) {
1360
1375
  padding-block-start: var(--pf-v6-c-table--cell--responsive--PaddingBlockStart);
1361
1376
  padding-inline-end: var(--pf-v6-c-table--cell--responsive--PaddingInlineEnd);
1362
1377
  padding-block-end: var(--pf-v6-c-table--cell--responsive--PaddingBlockEnd);
1363
1378
  padding-inline-start: var(--pf-v6-c-table--cell--responsive--PaddingInlineStart);
1364
1379
  }
1365
- .pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) > :where(th, td):first-child {
1380
+ .pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) > :where(th, td):first-child {
1366
1381
  --pf-v6-c-table--cell--responsive--PaddingBlockStart: var(--pf-v6-c-table--cell--first-child--responsive--PaddingBlockStart);
1367
1382
  }
1368
1383
  .pf-m-grid-2xl.pf-v6-c-table.pf-m-compact {
@@ -1400,7 +1415,7 @@
1400
1415
  position: revert;
1401
1416
  font-weight: var(--pf-v6-c-table--cell--responsive--th--FontWeight);
1402
1417
  text-align: start;
1403
- content: var(--pf-v6-c-table--cell--responsive--label, attr(data-label));
1418
+ content: attr(data-label);
1404
1419
  }
1405
1420
  .pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr) > :where(th, td):first-child {
1406
1421
  --pf-v6-c-table--cell--PaddingInlineStart: 0;
@@ -1444,7 +1459,7 @@
1444
1459
  width: auto;
1445
1460
  background-color: transparent;
1446
1461
  }
1447
- .pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) {
1462
+ .pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__expandable-row {
1448
1463
  --pf-v6-c-table--cell--responsive--PaddingBlockStart: 0;
1449
1464
  --pf-v6-c-table--cell--responsive--PaddingInlineEnd: 0;
1450
1465
  --pf-v6-c-table--cell--responsive--PaddingBlockEnd: 0;
@@ -1456,24 +1471,24 @@
1456
1471
  overflow-y: auto;
1457
1472
  border-block-end: none;
1458
1473
  }
1459
- .pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) > :where(th, td) {
1474
+ .pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__expandable-row > :where(th, td) {
1460
1475
  position: static;
1461
1476
  display: block;
1462
1477
  }
1463
- .pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)).pf-m-expanded {
1478
+ .pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__expandable-row.pf-m-expanded {
1464
1479
  border-block-start-color: var(--pf-v6-c-table--BorderColor);
1465
1480
  }
1466
- .pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) > :first-child:not(.pf-v6-c-table__check)::after {
1481
+ .pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__expandable-row > :first-child:not(.pf-v6-c-table__check)::after {
1467
1482
  content: none;
1468
1483
  }
1469
- .pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) th:where(.pf-v6-c-table__th).pf-m-no-padding .pf-v6-c-table__expandable-row-content,
1470
- .pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) td:where(.pf-v6-c-table__td).pf-m-no-padding .pf-v6-c-table__expandable-row-content {
1484
+ .pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__expandable-row th:where(.pf-v6-c-table__th).pf-m-no-padding .pf-v6-c-table__expandable-row-content,
1485
+ .pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__expandable-row td:where(.pf-v6-c-table__td).pf-m-no-padding .pf-v6-c-table__expandable-row-content {
1471
1486
  padding: 0;
1472
1487
  }
1473
- .pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)):not(.pf-m-expanded) {
1488
+ .pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__expandable-row:not(.pf-m-expanded) {
1474
1489
  display: none;
1475
1490
  }
1476
- .pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__expandable-row:where(:nth-child(n+2)) .pf-v6-c-table__expandable-row-content {
1491
+ .pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__expandable-row .pf-v6-c-table__expandable-row-content {
1477
1492
  padding-inline-end: var(--pf-v6-c-table__expandable-row-content--responsive--PaddingInlineEnd);
1478
1493
  padding-inline-start: var(--pf-v6-c-table__expandable-row-content--responsive--PaddingInlineStart);
1479
1494
  }
@@ -1511,10 +1526,10 @@
1511
1526
  width: var(--pf-v6-c-table__tr--m-selected--after--BorderInlineStartWidth);
1512
1527
  background-color: var(--pf-v6-c-table__tr--m-selected--after--BorderInlineStartColor);
1513
1528
  }
1514
- .pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__toggle,
1515
- .pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__check,
1516
- .pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__favorite,
1517
- .pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row:where(:nth-child(n+2))) .pf-v6-c-table__action {
1529
+ .pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__toggle,
1530
+ .pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__check,
1531
+ .pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__favorite,
1532
+ .pf-m-grid-2xl.pf-v6-c-table tr:where(.pf-v6-c-table__tr):not(.pf-v6-c-table__expandable-row) .pf-v6-c-table__action {
1518
1533
  width: auto;
1519
1534
  padding: 0;
1520
1535
  }
@@ -4,8 +4,8 @@ declare const _default: {
4
4
  "modifiers": {
5
5
  "grid": "pf-m-grid",
6
6
  "animateExpand": "pf-m-animate-expand",
7
- "expandable": "pf-m-expandable",
8
7
  "expanded": "pf-m-expanded",
8
+ "expandable": "pf-m-expandable",
9
9
  "selected": "pf-m-selected",
10
10
  "compact": "pf-m-compact",
11
11
  "action": "pf-m-action",
@@ -6,8 +6,8 @@ exports.default = {
6
6
  "modifiers": {
7
7
  "grid": "pf-m-grid",
8
8
  "animateExpand": "pf-m-animate-expand",
9
- "expandable": "pf-m-expandable",
10
9
  "expanded": "pf-m-expanded",
10
+ "expandable": "pf-m-expandable",
11
11
  "selected": "pf-m-selected",
12
12
  "compact": "pf-m-compact",
13
13
  "action": "pf-m-action",
@@ -4,8 +4,8 @@ export default {
4
4
  "modifiers": {
5
5
  "grid": "pf-m-grid",
6
6
  "animateExpand": "pf-m-animate-expand",
7
- "expandable": "pf-m-expandable",
8
7
  "expanded": "pf-m-expanded",
8
+ "expandable": "pf-m-expandable",
9
9
  "selected": "pf-m-selected",
10
10
  "compact": "pf-m-compact",
11
11
  "action": "pf-m-action",