@patternfly/patternfly 6.3.0-prerelease.27 → 6.3.0-prerelease.28
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/components/Accordion/accordion.css +1 -1
- package/components/Accordion/accordion.scss +1 -1
- package/components/DualListSelector/dual-list-selector.css +1 -1
- package/components/DualListSelector/dual-list-selector.scss +1 -1
- package/components/ExpandableSection/expandable-section.css +1 -1
- package/components/ExpandableSection/expandable-section.scss +1 -1
- package/components/Form/form.css +1 -1
- package/components/Form/form.scss +1 -1
- package/components/Nav/nav.css +1 -1
- package/components/Nav/nav.scss +1 -1
- package/components/Table/table.css +52 -25
- package/components/Table/table.scss +73 -22
- package/components/TreeView/tree-view.css +1 -1
- package/components/TreeView/tree-view.scss +1 -1
- package/components/_index.css +58 -31
- package/docs/components/Table/examples/Table.md +8586 -5760
- package/docs/demos/Card/examples/Card.md +1 -1
- package/docs/demos/Table/examples/Table.md +2 -2
- package/package.json +1 -1
- package/patternfly-no-globals.css +58 -31
- package/patternfly.css +58 -31
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -202,7 +202,7 @@
|
|
|
202
202
|
overflow-y: auto;
|
|
203
203
|
}
|
|
204
204
|
.pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content {
|
|
205
|
-
max-height:
|
|
205
|
+
max-height: 99999px;
|
|
206
206
|
margin-block-end: var(--pf-v6-c-accordion__expandable-content--MarginBlockEnd);
|
|
207
207
|
visibility: revert;
|
|
208
208
|
transition-delay: 0s;
|
|
@@ -185,7 +185,7 @@
|
|
|
185
185
|
--pf-v6-c-dual-list-selector__item-toggle-icon--Rotate: var(--pf-v6-c-dual-list-selector__list-item--m-expanded__item-toggle-icon--Rotate);
|
|
186
186
|
}
|
|
187
187
|
.pf-v6-c-dual-list-selector.pf-m-animate-expand .pf-v6-c-dual-list-selector__list-item.pf-m-expanded > .pf-v6-c-dual-list-selector__list {
|
|
188
|
-
max-height:
|
|
188
|
+
max-height: 99999px;
|
|
189
189
|
visibility: revert;
|
|
190
190
|
opacity: var(--pf-v6-c-dual-list-selector--m-expanded__list--Opacity);
|
|
191
191
|
transition-delay: 0s;
|
|
@@ -238,7 +238,7 @@ $pf-v6-c-dual-list-selector__item--MaxNesting: 10;
|
|
|
238
238
|
|
|
239
239
|
> .#{$dual-list-selector}__list {
|
|
240
240
|
.#{$dual-list-selector}.pf-m-animate-expand & {
|
|
241
|
-
max-height:
|
|
241
|
+
max-height: 99999px;
|
|
242
242
|
visibility: revert;
|
|
243
243
|
opacity: var(--#{$dual-list-selector}--m-expanded__list--Opacity);
|
|
244
244
|
transition-delay: 0s;
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
--pf-v6-c-expandable-section__content--Opacity: var(--pf-v6-c-expandable-section--m-expanded__content--Opacity);
|
|
63
63
|
--pf-v6-c-expandable-section__content--TranslateY: var(--pf-v6-c-expandable-section--m-expanded__content--TranslateY);
|
|
64
64
|
--pf-v6-c-expandable-section__content--Visibility: auto;
|
|
65
|
-
--pf-v6-c-expandable-section__content--MaxHeight:
|
|
65
|
+
--pf-v6-c-expandable-section__content--MaxHeight: 99999px;
|
|
66
66
|
--pf-v6-c-expandable-section__content--TransitionDelay--hide: 0s;
|
|
67
67
|
gap: var(--pf-v6-c-expandable-section--Gap);
|
|
68
68
|
}
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
--#{$expandable-section}__content--Opacity: var(--#{$expandable-section}--m-expanded__content--Opacity);
|
|
76
76
|
--#{$expandable-section}__content--TranslateY: var(--#{$expandable-section}--m-expanded__content--TranslateY);
|
|
77
77
|
--#{$expandable-section}__content--Visibility: auto;
|
|
78
|
-
--#{$expandable-section}__content--MaxHeight:
|
|
78
|
+
--#{$expandable-section}__content--MaxHeight: 99999px;
|
|
79
79
|
--#{$expandable-section}__content--TransitionDelay--hide: 0s;
|
|
80
80
|
|
|
81
81
|
gap: var(--pf-v6-c-expandable-section--Gap);
|
package/components/Form/form.css
CHANGED
|
@@ -448,7 +448,7 @@
|
|
|
448
448
|
--pf-v6-c-form__field-group-toggle-icon--Rotate: var(--pf-v6-c-form__field-group--m-expanded__toggle-icon--Rotate);
|
|
449
449
|
}
|
|
450
450
|
.pf-v6-c-form__field-group.pf-m-expanded.pf-m-expandable > .pf-v6-c-form__field-group-body {
|
|
451
|
-
max-height:
|
|
451
|
+
max-height: 99999px;
|
|
452
452
|
padding-block-start: var(--pf-v6-c-form__field-group-body--PaddingBlockStart);
|
|
453
453
|
padding-block-end: var(--pf-v6-c-form__field-group-body--PaddingBlockEnd);
|
|
454
454
|
visibility: visible;
|
|
@@ -405,7 +405,7 @@ $pf-v6-c-form--m-horizontal--breakpoint-map: build-breakpoint-map("sm", "md", "l
|
|
|
405
405
|
}
|
|
406
406
|
|
|
407
407
|
&.pf-m-expandable > .#{$form}__field-group-body { // TODO - remove .pf-m-expandable in a breaking change, it shouldn't be needed. Only needed now so that these styles are an opt-in behind .pf-m-expandable
|
|
408
|
-
max-height:
|
|
408
|
+
max-height: 99999px;
|
|
409
409
|
padding-block-start: var(--#{$form}__field-group-body--PaddingBlockStart);
|
|
410
410
|
padding-block-end: var(--#{$form}__field-group-body--PaddingBlockEnd);
|
|
411
411
|
visibility: visible;
|
package/components/Nav/nav.css
CHANGED
|
@@ -164,7 +164,7 @@
|
|
|
164
164
|
|
|
165
165
|
.pf-v6-c-nav__subnav {
|
|
166
166
|
--pf-v6-c-nav__list--RowGap: var(--pf-v6-c-nav__subnav--RowGap);
|
|
167
|
-
max-height:
|
|
167
|
+
max-height: 99999px;
|
|
168
168
|
padding-block-start: var(--pf-v6-c-nav__subnav--PaddingBlockStart);
|
|
169
169
|
padding-block-end: var(--pf-v6-c-nav__subnav--PaddingBlockEnd);
|
|
170
170
|
padding-inline-start: var(--pf-v6-c-nav__subnav--PaddingInlineStart);
|
package/components/Nav/nav.scss
CHANGED
|
@@ -209,7 +209,7 @@
|
|
|
209
209
|
.#{$nav}__subnav {
|
|
210
210
|
--#{$nav}__list--RowGap: var(--#{$nav}__subnav--RowGap); // this value is passed to --#{$nav}__item--RowGap--row-offset and updates clickable area based on value passed
|
|
211
211
|
|
|
212
|
-
max-height:
|
|
212
|
+
max-height: 99999px;
|
|
213
213
|
padding-block-start: var(--#{$nav}__subnav--PaddingBlockStart);
|
|
214
214
|
padding-block-end: var(--#{$nav}__subnav--PaddingBlockEnd);
|
|
215
215
|
padding-inline-start: var(--#{$nav}__subnav--PaddingInlineStart); // indent nested lists
|
|
@@ -78,8 +78,6 @@
|
|
|
78
78
|
--pf-v6-c-table__expandable-row--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
79
79
|
--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide: 0s;
|
|
80
80
|
--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
81
|
-
--pf-v6-c-table__expandable-row--TransitionDuration--slide: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide);
|
|
82
|
-
--pf-v6-c-table__expandable-row--TransitionDuration--fade: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade);
|
|
83
81
|
--pf-v6-c-table__expandable-row--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
84
82
|
--pf-v6-c-table__expandable-row--Opacity: 0;
|
|
85
83
|
--pf-v6-c-table__tbody--m-expanded__expandable-row--Opacity: 1;
|
|
@@ -416,6 +414,39 @@
|
|
|
416
414
|
.pf-v6-c-table .pf-v6-c-button .pf-v6-c-table__sort-indicator {
|
|
417
415
|
--pf-v6-c-table__sort-indicator--MarginInlineStart: 0;
|
|
418
416
|
}
|
|
417
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row {
|
|
418
|
+
display: revert;
|
|
419
|
+
visibility: hidden;
|
|
420
|
+
opacity: var(--pf-v6-c-table__expandable-row--Opacity);
|
|
421
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade);
|
|
422
|
+
transition-timing-function: var(--pf-v6-c-table__expandable-row--TransitionTimingFunction);
|
|
423
|
+
transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide), 0s;
|
|
424
|
+
transition-property: opacity, translate, visibility;
|
|
425
|
+
translate: 0 var(--pf-v6-c-table__expandable-row--TranslateY);
|
|
426
|
+
}
|
|
427
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row[hidden] {
|
|
428
|
+
display: revert;
|
|
429
|
+
}
|
|
430
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row.pf-m-expanded {
|
|
431
|
+
visibility: visible;
|
|
432
|
+
opacity: var(--pf-v6-c-table__tbody--m-expanded__expandable-row--Opacity);
|
|
433
|
+
transition-delay: 0s;
|
|
434
|
+
transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--expand--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--expand--slide), 0s, 0s;
|
|
435
|
+
translate: 0 var(--pf-v6-c-table__tbody--m-expanded__expandable-row--TranslateY);
|
|
436
|
+
}
|
|
437
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row.pf-m-expanded > :is(.pf-v6-c-table__td, .pf-v6-c-table__th) > .pf-v6-c-table__expandable-row-content {
|
|
438
|
+
max-height: 99999px;
|
|
439
|
+
}
|
|
440
|
+
.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),
|
|
441
|
+
.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) > .pf-v6-c-table__expandable-row-content {
|
|
442
|
+
padding: 0;
|
|
443
|
+
overflow: hidden;
|
|
444
|
+
transition-delay: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade);
|
|
445
|
+
transition-property: padding, max-height, overflow;
|
|
446
|
+
}
|
|
447
|
+
.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) > .pf-v6-c-table__expandable-row-content {
|
|
448
|
+
max-height: 0;
|
|
449
|
+
}
|
|
419
450
|
|
|
420
451
|
[class*=pf-v6-c-table].pf-m-truncate {
|
|
421
452
|
--pf-v6-c-table--cell--MinWidth: var(--pf-v6-c-table--m-truncate--cell--MinWidth);
|
|
@@ -720,28 +751,26 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
720
751
|
.pf-v6-c-table__expandable-row {
|
|
721
752
|
position: relative;
|
|
722
753
|
border-block-end: 0 solid transparent;
|
|
723
|
-
opacity: var(--pf-v6-c-table__expandable-row--Opacity);
|
|
724
|
-
transition-timing-function: var(--pf-v6-c-table__expandable-row--TransitionTimingFunction);
|
|
725
|
-
transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--slide), var(--pf-v6-c-table__expandable-row--TransitionDuration--fade);
|
|
726
|
-
transition-property: opacity, translate, display;
|
|
727
|
-
transition-behavior: allow-discrete;
|
|
728
|
-
translate: 0 var(--pf-v6-c-table__expandable-row--TranslateY);
|
|
729
754
|
}
|
|
730
|
-
|
|
731
|
-
|
|
755
|
+
.pf-v6-c-table__expandable-row > .pf-v6-c-table__th,
|
|
756
|
+
.pf-v6-c-table__expandable-row > .pf-v6-c-table__td {
|
|
732
757
|
padding-block-start: 0;
|
|
733
758
|
}
|
|
734
|
-
|
|
735
|
-
.pf-v6-c-
|
|
736
|
-
|
|
759
|
+
.pf-v6-c-table__control-row ~ .pf-v6-c-table__expandable-row > .pf-v6-c-table__th,
|
|
760
|
+
.pf-v6-c-table__control-row ~ .pf-v6-c-table__expandable-row > .pf-v6-c-table__td {
|
|
761
|
+
padding-block-start: var(--pf-v6-c-table--cell--PaddingBlockStart);
|
|
762
|
+
}
|
|
763
|
+
.pf-v6-c-table__expandable-row .pf-v6-c-table__td.pf-m-no-padding,
|
|
764
|
+
.pf-v6-c-table__expandable-row .pf-v6-c-table__th.pf-m-no-padding {
|
|
737
765
|
padding-block-start: 0;
|
|
738
766
|
padding-block-end: 0;
|
|
739
767
|
padding-inline-start: 0;
|
|
740
768
|
padding-inline-end: 0;
|
|
741
769
|
}
|
|
742
|
-
.pf-v6-c-table__expandable-row
|
|
743
|
-
.pf-v6-c-table__expandable-row
|
|
770
|
+
.pf-v6-c-table__expandable-row .pf-v6-c-table__td.pf-m-no-padding .pf-v6-c-table__expandable-row-content,
|
|
771
|
+
.pf-v6-c-table__expandable-row .pf-v6-c-table__th.pf-m-no-padding .pf-v6-c-table__expandable-row-content {
|
|
744
772
|
padding: 0;
|
|
773
|
+
border-radius: 0;
|
|
745
774
|
}
|
|
746
775
|
.pf-v6-c-table__expandable-row .pf-v6-c-table__expandable-row-content {
|
|
747
776
|
padding-block-start: var(--pf-v6-c-table__expandable-row-content--PaddingBlockStart);
|
|
@@ -751,18 +780,12 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
751
780
|
background-color: var(--pf-v6-c-table__expandable-row-content--BackgroundColor);
|
|
752
781
|
border-radius: var(--pf-v6-c-table__expandable-row-content--BorderRadius);
|
|
753
782
|
}
|
|
783
|
+
.pf-v6-c-table__expandable-row .pf-v6-c-table__expandable-row-content.pf-m-no-background {
|
|
784
|
+
background-color: transparent;
|
|
785
|
+
}
|
|
754
786
|
.pf-v6-c-table__expandable-row.pf-m-expanded {
|
|
755
787
|
border-block-end-color: var(--pf-v6-c-table__expandable-row--m-expanded--BorderBlockEndColor);
|
|
756
788
|
border-block-end-width: var(--pf-v6-c-table--border-width--base);
|
|
757
|
-
opacity: var(--pf-v6-c-table__tbody--m-expanded__expandable-row--Opacity);
|
|
758
|
-
transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--expand--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--expand--slide), var(--pf-v6-c-table__expandable-row--TransitionDuration--expand--fade);
|
|
759
|
-
translate: 0 var(--pf-v6-c-table__tbody--m-expanded__expandable-row--TranslateY);
|
|
760
|
-
}
|
|
761
|
-
@starting-style {
|
|
762
|
-
.pf-v6-c-table__expandable-row.pf-m-expanded {
|
|
763
|
-
opacity: var(--pf-v6-c-table__expandable-row--Opacity);
|
|
764
|
-
translate: 0 var(--pf-v6-c-table__expandable-row--TranslateY);
|
|
765
|
-
}
|
|
766
789
|
}
|
|
767
790
|
.pf-v6-c-table__expandable-row:not(.pf-m-expanded) {
|
|
768
791
|
display: none;
|
|
@@ -771,6 +794,10 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
771
794
|
border-block-end: 0;
|
|
772
795
|
}
|
|
773
796
|
|
|
797
|
+
.pf-v6-c-table__tr:has(~ .pf-v6-c-table__expandable-row) {
|
|
798
|
+
border-block-end: 0;
|
|
799
|
+
}
|
|
800
|
+
|
|
774
801
|
.pf-v6-c-table.pf-m-compact {
|
|
775
802
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-compact--cell--PaddingBlockStart);
|
|
776
803
|
--pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table--m-compact--cell--PaddingBlockEnd);
|
|
@@ -826,7 +853,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
826
853
|
}
|
|
827
854
|
.pf-v6-c-table.pf-m-expandable .pf-v6-c-table__tbody.pf-m-expanded .pf-v6-c-table__control-row {
|
|
828
855
|
background-color: var(--pf-v6-c-table__control-row--BackgroundColor);
|
|
829
|
-
border-block-end:
|
|
856
|
+
border-block-end: 0;
|
|
830
857
|
}
|
|
831
858
|
|
|
832
859
|
.pf-v6-c-table__tr {
|
|
@@ -123,8 +123,6 @@
|
|
|
123
123
|
--#{$table}__expandable-row--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
124
124
|
--#{$table}__expandable-row--TransitionDuration--collapse--slide: 0s;
|
|
125
125
|
--#{$table}__expandable-row--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
126
|
-
--#{$table}__expandable-row--TransitionDuration--slide: var(--#{$table}__expandable-row--TransitionDuration--collapse--slide);
|
|
127
|
-
--#{$table}__expandable-row--TransitionDuration--fade: var(--#{$table}__expandable-row--TransitionDuration--collapse--fade);
|
|
128
126
|
--#{$table}__expandable-row--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
129
127
|
--#{$table}__expandable-row--Opacity: 0;
|
|
130
128
|
--#{$table}__tbody--m-expanded__expandable-row--Opacity: 1;
|
|
@@ -581,6 +579,57 @@
|
|
|
581
579
|
.#{$button} .#{$table}__sort-indicator {
|
|
582
580
|
--#{$table}__sort-indicator--MarginInlineStart: 0;
|
|
583
581
|
}
|
|
582
|
+
|
|
583
|
+
// stylelint-disable max-nesting-depth, selector-max-class
|
|
584
|
+
&.pf-m-animate-expand {
|
|
585
|
+
> .#{$table}__tbody {
|
|
586
|
+
> .#{$table}__expandable-row {
|
|
587
|
+
display: revert;
|
|
588
|
+
visibility: hidden;
|
|
589
|
+
opacity: var(--#{$table}__expandable-row--Opacity);
|
|
590
|
+
transition-delay: 0s, 0s, var(--#{$table}__expandable-row--TransitionDuration--collapse--fade);
|
|
591
|
+
transition-timing-function: var(--#{$table}__expandable-row--TransitionTimingFunction);
|
|
592
|
+
transition-duration: var(--#{$table}__expandable-row--TransitionDuration--collapse--fade), var(--#{$table}__expandable-row--TransitionDuration--collapse--slide), 0s;
|
|
593
|
+
transition-property: opacity, translate, visibility;
|
|
594
|
+
translate: 0 var(--#{$table}__expandable-row--TranslateY);
|
|
595
|
+
|
|
596
|
+
&[hidden] {
|
|
597
|
+
display: revert;
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
&.pf-m-expanded {
|
|
601
|
+
visibility: visible;
|
|
602
|
+
opacity: var(--#{$table}__tbody--m-expanded__expandable-row--Opacity);
|
|
603
|
+
transition-delay: 0s;
|
|
604
|
+
transition-duration: var(--#{$table}__expandable-row--TransitionDuration--expand--fade), var(--#{$table}__expandable-row--TransitionDuration--expand--slide), 0s, 0s;
|
|
605
|
+
translate: 0 var(--#{$table}__tbody--m-expanded__expandable-row--TranslateY);
|
|
606
|
+
|
|
607
|
+
> :is(.#{$table}__td, .#{$table}__th) {
|
|
608
|
+
> .#{$table}__expandable-row-content {
|
|
609
|
+
max-height: 99999px;
|
|
610
|
+
}
|
|
611
|
+
}
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
&:not(.pf-m-expanded) {
|
|
615
|
+
> :is(.#{$table}__td, .#{$table}__th) {
|
|
616
|
+
&,
|
|
617
|
+
> .#{$table}__expandable-row-content {
|
|
618
|
+
padding: 0;
|
|
619
|
+
overflow: hidden;
|
|
620
|
+
transition-delay: var(--#{$table}__expandable-row--TransitionDuration--collapse--fade);
|
|
621
|
+
transition-property: padding, max-height, overflow;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
> .#{$table}__expandable-row-content {
|
|
625
|
+
max-height: 0;
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
}
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
}
|
|
632
|
+
// stylelint-enable max-nesting-depth, selector-max-class
|
|
584
633
|
}
|
|
585
634
|
|
|
586
635
|
// - Table truncate - Table wrap - Table nowrap - Table fit content - Table wrap - Table break word
|
|
@@ -972,22 +1021,23 @@
|
|
|
972
1021
|
.#{$table}__expandable-row {
|
|
973
1022
|
position: relative;
|
|
974
1023
|
border-block-end: 0 solid transparent;
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
1024
|
+
|
|
1025
|
+
// Remove top padding from regular expandable
|
|
1026
|
+
> .#{$table}__th,
|
|
1027
|
+
> .#{$table}__td {
|
|
1028
|
+
padding-block-start: 0;
|
|
1029
|
+
}
|
|
1030
|
+
|
|
1031
|
+
// Add padding back to compound expandable
|
|
1032
|
+
.#{$table}__control-row ~ & {
|
|
983
1033
|
> .#{$table}__th,
|
|
984
1034
|
> .#{$table}__td {
|
|
985
|
-
padding-block-start:
|
|
1035
|
+
padding-block-start: var(--#{$table}--cell--PaddingBlockStart);
|
|
986
1036
|
}
|
|
987
1037
|
}
|
|
988
1038
|
|
|
989
|
-
|
|
990
|
-
|
|
1039
|
+
.#{$table}__td,
|
|
1040
|
+
.#{$table}__th {
|
|
991
1041
|
&.pf-m-no-padding {
|
|
992
1042
|
padding-block-start: 0;
|
|
993
1043
|
padding-block-end: 0;
|
|
@@ -996,6 +1046,7 @@
|
|
|
996
1046
|
|
|
997
1047
|
.#{$table}__expandable-row-content {
|
|
998
1048
|
padding: 0;
|
|
1049
|
+
border-radius: 0;
|
|
999
1050
|
}
|
|
1000
1051
|
}
|
|
1001
1052
|
}
|
|
@@ -1008,20 +1059,16 @@
|
|
|
1008
1059
|
padding-inline-end: var(--#{$table}__expandable-row-content--PaddingInlineEnd);
|
|
1009
1060
|
background-color: var(--#{$table}__expandable-row-content--BackgroundColor);
|
|
1010
1061
|
border-radius: var(--#{$table}__expandable-row-content--BorderRadius);
|
|
1062
|
+
|
|
1063
|
+
&.pf-m-no-background {
|
|
1064
|
+
background-color: transparent;
|
|
1065
|
+
}
|
|
1011
1066
|
}
|
|
1012
1067
|
|
|
1013
1068
|
// - Table expandable row content expanded
|
|
1014
1069
|
&.pf-m-expanded {
|
|
1015
1070
|
border-block-end-color: var(--#{$table}__expandable-row--m-expanded--BorderBlockEndColor);
|
|
1016
1071
|
border-block-end-width: var(--#{$table}--border-width--base);
|
|
1017
|
-
opacity: var(--#{$table}__tbody--m-expanded__expandable-row--Opacity);
|
|
1018
|
-
transition-duration: var(--#{$table}__expandable-row--TransitionDuration--expand--fade), var(--#{$table}__expandable-row--TransitionDuration--expand--slide), var(--#{$table}__expandable-row--TransitionDuration--expand--fade);
|
|
1019
|
-
translate: 0 var(--#{$table}__tbody--m-expanded__expandable-row--TranslateY);
|
|
1020
|
-
|
|
1021
|
-
@starting-style {
|
|
1022
|
-
opacity: var(--#{$table}__expandable-row--Opacity);
|
|
1023
|
-
translate: 0 var(--#{$table}__expandable-row--TranslateY);
|
|
1024
|
-
}
|
|
1025
1072
|
}
|
|
1026
1073
|
|
|
1027
1074
|
&:not(.pf-m-expanded) {
|
|
@@ -1034,6 +1081,10 @@
|
|
|
1034
1081
|
}
|
|
1035
1082
|
}
|
|
1036
1083
|
|
|
1084
|
+
.#{$table}__tr:has(~ .#{$table}__expandable-row) {
|
|
1085
|
+
border-block-end: 0;
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1037
1088
|
// - Table compact
|
|
1038
1089
|
.#{$table}.pf-m-compact {
|
|
1039
1090
|
--#{$table}--cell--PaddingBlockStart: var(--#{$table}--m-compact--cell--PaddingBlockStart);
|
|
@@ -1118,7 +1169,7 @@
|
|
|
1118
1169
|
// - Table tbody table control row
|
|
1119
1170
|
.#{$table}__control-row {
|
|
1120
1171
|
background-color: var(--#{$table}__control-row--BackgroundColor);
|
|
1121
|
-
border-block-end:
|
|
1172
|
+
border-block-end: 0;
|
|
1122
1173
|
}
|
|
1123
1174
|
}
|
|
1124
1175
|
}
|
|
@@ -265,7 +265,7 @@
|
|
|
265
265
|
--pf-v6-c-tree-view__node-toggle-icon--Rotate: var(--pf-v6-c-tree-view__list-item--m-expanded__node-toggle-icon--Rotate);
|
|
266
266
|
}
|
|
267
267
|
.pf-v6-c-tree-view__list-item.pf-m-expanded > .pf-v6-c-tree-view__list {
|
|
268
|
-
max-height:
|
|
268
|
+
max-height: 99999px;
|
|
269
269
|
visibility: revert;
|
|
270
270
|
opacity: var(--pf-v6-c-tree-view--m-expanded__list--Opacity);
|
|
271
271
|
transition-delay: 0s;
|
|
@@ -377,7 +377,7 @@ $pf-v6-c-tree-view--MaxNesting: 10 !default;
|
|
|
377
377
|
--#{$tree-view}__node-toggle-icon--Rotate: var(--#{$tree-view}__list-item--m-expanded__node-toggle-icon--Rotate);
|
|
378
378
|
|
|
379
379
|
> .#{$tree-view}__list {
|
|
380
|
-
max-height:
|
|
380
|
+
max-height: 99999px;
|
|
381
381
|
visibility: revert;
|
|
382
382
|
opacity: var(--#{$tree-view}--m-expanded__list--Opacity);
|
|
383
383
|
transition-delay: 0s;
|
package/components/_index.css
CHANGED
|
@@ -395,7 +395,7 @@
|
|
|
395
395
|
overflow-y: auto;
|
|
396
396
|
}
|
|
397
397
|
.pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content {
|
|
398
|
-
max-height:
|
|
398
|
+
max-height: 99999px;
|
|
399
399
|
margin-block-end: var(--pf-v6-c-accordion__expandable-content--MarginBlockEnd);
|
|
400
400
|
visibility: revert;
|
|
401
401
|
transition-delay: 0s;
|
|
@@ -5018,7 +5018,7 @@ ul) {
|
|
|
5018
5018
|
--pf-v6-c-dual-list-selector__item-toggle-icon--Rotate: var(--pf-v6-c-dual-list-selector__list-item--m-expanded__item-toggle-icon--Rotate);
|
|
5019
5019
|
}
|
|
5020
5020
|
.pf-v6-c-dual-list-selector.pf-m-animate-expand .pf-v6-c-dual-list-selector__list-item.pf-m-expanded > .pf-v6-c-dual-list-selector__list {
|
|
5021
|
-
max-height:
|
|
5021
|
+
max-height: 99999px;
|
|
5022
5022
|
visibility: revert;
|
|
5023
5023
|
opacity: var(--pf-v6-c-dual-list-selector--m-expanded__list--Opacity);
|
|
5024
5024
|
transition-delay: 0s;
|
|
@@ -6613,7 +6613,7 @@ ul) {
|
|
|
6613
6613
|
--pf-v6-c-expandable-section__content--Opacity: var(--pf-v6-c-expandable-section--m-expanded__content--Opacity);
|
|
6614
6614
|
--pf-v6-c-expandable-section__content--TranslateY: var(--pf-v6-c-expandable-section--m-expanded__content--TranslateY);
|
|
6615
6615
|
--pf-v6-c-expandable-section__content--Visibility: auto;
|
|
6616
|
-
--pf-v6-c-expandable-section__content--MaxHeight:
|
|
6616
|
+
--pf-v6-c-expandable-section__content--MaxHeight: 99999px;
|
|
6617
6617
|
--pf-v6-c-expandable-section__content--TransitionDelay--hide: 0s;
|
|
6618
6618
|
gap: var(--pf-v6-c-expandable-section--Gap);
|
|
6619
6619
|
}
|
|
@@ -7183,7 +7183,7 @@ ul) {
|
|
|
7183
7183
|
--pf-v6-c-form__field-group-toggle-icon--Rotate: var(--pf-v6-c-form__field-group--m-expanded__toggle-icon--Rotate);
|
|
7184
7184
|
}
|
|
7185
7185
|
.pf-v6-c-form__field-group.pf-m-expanded.pf-m-expandable > .pf-v6-c-form__field-group-body {
|
|
7186
|
-
max-height:
|
|
7186
|
+
max-height: 99999px;
|
|
7187
7187
|
padding-block-start: var(--pf-v6-c-form__field-group-body--PaddingBlockStart);
|
|
7188
7188
|
padding-block-end: var(--pf-v6-c-form__field-group-body--PaddingBlockEnd);
|
|
7189
7189
|
visibility: visible;
|
|
@@ -11682,7 +11682,7 @@ ul.pf-v6-c-list {
|
|
|
11682
11682
|
|
|
11683
11683
|
.pf-v6-c-nav__subnav {
|
|
11684
11684
|
--pf-v6-c-nav__list--RowGap: var(--pf-v6-c-nav__subnav--RowGap);
|
|
11685
|
-
max-height:
|
|
11685
|
+
max-height: 99999px;
|
|
11686
11686
|
padding-block-start: var(--pf-v6-c-nav__subnav--PaddingBlockStart);
|
|
11687
11687
|
padding-block-end: var(--pf-v6-c-nav__subnav--PaddingBlockEnd);
|
|
11688
11688
|
padding-inline-start: var(--pf-v6-c-nav__subnav--PaddingInlineStart);
|
|
@@ -17168,8 +17168,6 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
17168
17168
|
--pf-v6-c-table__expandable-row--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
17169
17169
|
--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide: 0s;
|
|
17170
17170
|
--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
17171
|
-
--pf-v6-c-table__expandable-row--TransitionDuration--slide: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide);
|
|
17172
|
-
--pf-v6-c-table__expandable-row--TransitionDuration--fade: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade);
|
|
17173
17171
|
--pf-v6-c-table__expandable-row--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
17174
17172
|
--pf-v6-c-table__expandable-row--Opacity: 0;
|
|
17175
17173
|
--pf-v6-c-table__tbody--m-expanded__expandable-row--Opacity: 1;
|
|
@@ -17506,6 +17504,39 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
|
17506
17504
|
.pf-v6-c-table .pf-v6-c-button .pf-v6-c-table__sort-indicator {
|
|
17507
17505
|
--pf-v6-c-table__sort-indicator--MarginInlineStart: 0;
|
|
17508
17506
|
}
|
|
17507
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row {
|
|
17508
|
+
display: revert;
|
|
17509
|
+
visibility: hidden;
|
|
17510
|
+
opacity: var(--pf-v6-c-table__expandable-row--Opacity);
|
|
17511
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade);
|
|
17512
|
+
transition-timing-function: var(--pf-v6-c-table__expandable-row--TransitionTimingFunction);
|
|
17513
|
+
transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--slide), 0s;
|
|
17514
|
+
transition-property: opacity, translate, visibility;
|
|
17515
|
+
translate: 0 var(--pf-v6-c-table__expandable-row--TranslateY);
|
|
17516
|
+
}
|
|
17517
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row[hidden] {
|
|
17518
|
+
display: revert;
|
|
17519
|
+
}
|
|
17520
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row.pf-m-expanded {
|
|
17521
|
+
visibility: visible;
|
|
17522
|
+
opacity: var(--pf-v6-c-table__tbody--m-expanded__expandable-row--Opacity);
|
|
17523
|
+
transition-delay: 0s;
|
|
17524
|
+
transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--expand--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--expand--slide), 0s, 0s;
|
|
17525
|
+
translate: 0 var(--pf-v6-c-table__tbody--m-expanded__expandable-row--TranslateY);
|
|
17526
|
+
}
|
|
17527
|
+
.pf-v6-c-table.pf-m-animate-expand > .pf-v6-c-table__tbody > .pf-v6-c-table__expandable-row.pf-m-expanded > :is(.pf-v6-c-table__td, .pf-v6-c-table__th) > .pf-v6-c-table__expandable-row-content {
|
|
17528
|
+
max-height: 99999px;
|
|
17529
|
+
}
|
|
17530
|
+
.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),
|
|
17531
|
+
.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) > .pf-v6-c-table__expandable-row-content {
|
|
17532
|
+
padding: 0;
|
|
17533
|
+
overflow: hidden;
|
|
17534
|
+
transition-delay: var(--pf-v6-c-table__expandable-row--TransitionDuration--collapse--fade);
|
|
17535
|
+
transition-property: padding, max-height, overflow;
|
|
17536
|
+
}
|
|
17537
|
+
.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) > .pf-v6-c-table__expandable-row-content {
|
|
17538
|
+
max-height: 0;
|
|
17539
|
+
}
|
|
17509
17540
|
|
|
17510
17541
|
[class*=pf-v6-c-table].pf-m-truncate {
|
|
17511
17542
|
--pf-v6-c-table--cell--MinWidth: var(--pf-v6-c-table--m-truncate--cell--MinWidth);
|
|
@@ -17810,28 +17841,26 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
17810
17841
|
.pf-v6-c-table__expandable-row {
|
|
17811
17842
|
position: relative;
|
|
17812
17843
|
border-block-end: 0 solid transparent;
|
|
17813
|
-
opacity: var(--pf-v6-c-table__expandable-row--Opacity);
|
|
17814
|
-
transition-timing-function: var(--pf-v6-c-table__expandable-row--TransitionTimingFunction);
|
|
17815
|
-
transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--slide), var(--pf-v6-c-table__expandable-row--TransitionDuration--fade);
|
|
17816
|
-
transition-property: opacity, translate, display;
|
|
17817
|
-
transition-behavior: allow-discrete;
|
|
17818
|
-
translate: 0 var(--pf-v6-c-table__expandable-row--TranslateY);
|
|
17819
17844
|
}
|
|
17820
|
-
|
|
17821
|
-
|
|
17845
|
+
.pf-v6-c-table__expandable-row > .pf-v6-c-table__th,
|
|
17846
|
+
.pf-v6-c-table__expandable-row > .pf-v6-c-table__td {
|
|
17822
17847
|
padding-block-start: 0;
|
|
17823
17848
|
}
|
|
17824
|
-
|
|
17825
|
-
.pf-v6-c-
|
|
17826
|
-
|
|
17849
|
+
.pf-v6-c-table__control-row ~ .pf-v6-c-table__expandable-row > .pf-v6-c-table__th,
|
|
17850
|
+
.pf-v6-c-table__control-row ~ .pf-v6-c-table__expandable-row > .pf-v6-c-table__td {
|
|
17851
|
+
padding-block-start: var(--pf-v6-c-table--cell--PaddingBlockStart);
|
|
17852
|
+
}
|
|
17853
|
+
.pf-v6-c-table__expandable-row .pf-v6-c-table__td.pf-m-no-padding,
|
|
17854
|
+
.pf-v6-c-table__expandable-row .pf-v6-c-table__th.pf-m-no-padding {
|
|
17827
17855
|
padding-block-start: 0;
|
|
17828
17856
|
padding-block-end: 0;
|
|
17829
17857
|
padding-inline-start: 0;
|
|
17830
17858
|
padding-inline-end: 0;
|
|
17831
17859
|
}
|
|
17832
|
-
.pf-v6-c-table__expandable-row
|
|
17833
|
-
.pf-v6-c-table__expandable-row
|
|
17860
|
+
.pf-v6-c-table__expandable-row .pf-v6-c-table__td.pf-m-no-padding .pf-v6-c-table__expandable-row-content,
|
|
17861
|
+
.pf-v6-c-table__expandable-row .pf-v6-c-table__th.pf-m-no-padding .pf-v6-c-table__expandable-row-content {
|
|
17834
17862
|
padding: 0;
|
|
17863
|
+
border-radius: 0;
|
|
17835
17864
|
}
|
|
17836
17865
|
.pf-v6-c-table__expandable-row .pf-v6-c-table__expandable-row-content {
|
|
17837
17866
|
padding-block-start: var(--pf-v6-c-table__expandable-row-content--PaddingBlockStart);
|
|
@@ -17841,18 +17870,12 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
17841
17870
|
background-color: var(--pf-v6-c-table__expandable-row-content--BackgroundColor);
|
|
17842
17871
|
border-radius: var(--pf-v6-c-table__expandable-row-content--BorderRadius);
|
|
17843
17872
|
}
|
|
17873
|
+
.pf-v6-c-table__expandable-row .pf-v6-c-table__expandable-row-content.pf-m-no-background {
|
|
17874
|
+
background-color: transparent;
|
|
17875
|
+
}
|
|
17844
17876
|
.pf-v6-c-table__expandable-row.pf-m-expanded {
|
|
17845
17877
|
border-block-end-color: var(--pf-v6-c-table__expandable-row--m-expanded--BorderBlockEndColor);
|
|
17846
17878
|
border-block-end-width: var(--pf-v6-c-table--border-width--base);
|
|
17847
|
-
opacity: var(--pf-v6-c-table__tbody--m-expanded__expandable-row--Opacity);
|
|
17848
|
-
transition-duration: var(--pf-v6-c-table__expandable-row--TransitionDuration--expand--fade), var(--pf-v6-c-table__expandable-row--TransitionDuration--expand--slide), var(--pf-v6-c-table__expandable-row--TransitionDuration--expand--fade);
|
|
17849
|
-
translate: 0 var(--pf-v6-c-table__tbody--m-expanded__expandable-row--TranslateY);
|
|
17850
|
-
}
|
|
17851
|
-
@starting-style {
|
|
17852
|
-
.pf-v6-c-table__expandable-row.pf-m-expanded {
|
|
17853
|
-
opacity: var(--pf-v6-c-table__expandable-row--Opacity);
|
|
17854
|
-
translate: 0 var(--pf-v6-c-table__expandable-row--TranslateY);
|
|
17855
|
-
}
|
|
17856
17879
|
}
|
|
17857
17880
|
.pf-v6-c-table__expandable-row:not(.pf-m-expanded) {
|
|
17858
17881
|
display: none;
|
|
@@ -17861,6 +17884,10 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
17861
17884
|
border-block-end: 0;
|
|
17862
17885
|
}
|
|
17863
17886
|
|
|
17887
|
+
.pf-v6-c-table__tr:has(~ .pf-v6-c-table__expandable-row) {
|
|
17888
|
+
border-block-end: 0;
|
|
17889
|
+
}
|
|
17890
|
+
|
|
17864
17891
|
.pf-v6-c-table.pf-m-compact {
|
|
17865
17892
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-compact--cell--PaddingBlockStart);
|
|
17866
17893
|
--pf-v6-c-table--cell--PaddingBlockEnd: var(--pf-v6-c-table--m-compact--cell--PaddingBlockEnd);
|
|
@@ -17916,7 +17943,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
17916
17943
|
}
|
|
17917
17944
|
.pf-v6-c-table.pf-m-expandable .pf-v6-c-table__tbody.pf-m-expanded .pf-v6-c-table__control-row {
|
|
17918
17945
|
background-color: var(--pf-v6-c-table__control-row--BackgroundColor);
|
|
17919
|
-
border-block-end:
|
|
17946
|
+
border-block-end: 0;
|
|
17920
17947
|
}
|
|
17921
17948
|
|
|
17922
17949
|
.pf-v6-c-table__tr {
|
|
@@ -22745,7 +22772,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22745
22772
|
--pf-v6-c-tree-view__node-toggle-icon--Rotate: var(--pf-v6-c-tree-view__list-item--m-expanded__node-toggle-icon--Rotate);
|
|
22746
22773
|
}
|
|
22747
22774
|
.pf-v6-c-tree-view__list-item.pf-m-expanded > .pf-v6-c-tree-view__list {
|
|
22748
|
-
max-height:
|
|
22775
|
+
max-height: 99999px;
|
|
22749
22776
|
visibility: revert;
|
|
22750
22777
|
opacity: var(--pf-v6-c-tree-view--m-expanded__list--Opacity);
|
|
22751
22778
|
transition-delay: 0s;
|