@patternfly/patternfly 6.3.0-prerelease.27 → 6.3.0-prerelease.29
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/Button/button.css +20 -9
- package/components/Button/button.scss +16 -5
- 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/Page/page.css +8 -8
- 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 +86 -48
- 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 +86 -48
- package/patternfly.css +86 -48
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/mixins.scss +4 -4
|
@@ -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;
|
|
@@ -23,12 +23,16 @@
|
|
|
23
23
|
--pf-v6-c-button--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
|
|
24
24
|
--pf-v6-c-button--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--accelerate);
|
|
25
25
|
--pf-v6-c-button--TransitionProperty: color, background, border-width, border-color;
|
|
26
|
+
--pf-v6-c-button--ScaleX: 1;
|
|
27
|
+
--pf-v6-c-button--ScaleY: 1;
|
|
26
28
|
--pf-v6-c-button--hover--BackgroundColor: transparent;
|
|
27
29
|
--pf-v6-c-button--hover--BorderColor: transparent;
|
|
28
30
|
--pf-v6-c-button--hover--BorderWidth: var(--pf-t--global--border--width--action--hover);
|
|
29
31
|
--pf-v6-c-button--hover--TextDecorationLine: none;
|
|
30
32
|
--pf-v6-c-button--hover--TextDecorationStyle: none;
|
|
31
33
|
--pf-v6-c-button--hover--TextDecorationColor: currentcolor;
|
|
34
|
+
--pf-v6-c-button--hover--ScaleX: 1;
|
|
35
|
+
--pf-v6-c-button--hover--ScaleY: 1;
|
|
32
36
|
--pf-v6-c-button--m-clicked--BackgroundColor: transparent;
|
|
33
37
|
--pf-v6-c-button--m-clicked--BorderColor: transparent;
|
|
34
38
|
--pf-v6-c-button--m-clicked--BorderWidth: var(--pf-t--global--border--width--action--clicked);
|
|
@@ -243,11 +247,14 @@
|
|
|
243
247
|
--pf-v6-c-button__icon--TransitionDuration: 0s;
|
|
244
248
|
--pf-v6-c-button__icon--TransitionProperty: none;
|
|
245
249
|
--pf-v6-c-button__icon--Rotate: 0deg;
|
|
246
|
-
--pf-v6-c-button__icon--Scale: 1;
|
|
247
250
|
--pf-v6-c-button--hover__icon--TransitionTimingFunction: auto;
|
|
248
251
|
--pf-v6-c-button--hover__icon--TransitionDuration: 0s;
|
|
249
252
|
--pf-v6-c-button--hover__icon--TransitionProperty: none;
|
|
250
253
|
--pf-v6-c-button--hover__icon--Rotate: 0deg;
|
|
254
|
+
--pf-v6-c-button__icon--ScaleX: 1;
|
|
255
|
+
--pf-v6-c-button__icon--ScaleY: 1;
|
|
256
|
+
--pf-v6-c-button--hover__icon--ScaleX: 1;
|
|
257
|
+
--pf-v6-c-button--hover__icon--ScaleY: 1;
|
|
251
258
|
--pf-v6-c-button--m-favorite__icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
252
259
|
--pf-v6-c-button--m-favorite__icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
253
260
|
--pf-v6-c-button--m-favorited__icon--Color: var(--pf-t--global--color--favorite--default);
|
|
@@ -294,7 +301,7 @@
|
|
|
294
301
|
--pf-v6-c-button--hamburger-icon--top--collapse--path: path("M5,1 L9,1");
|
|
295
302
|
--pf-v6-c-button--hamburger-icon--arrow--collapse--path: path("M3,7 L1,5 L3,3");
|
|
296
303
|
--pf-v6-c-button--hamburger-icon--bottom--collapse--path: path("M9,9 L5,9");
|
|
297
|
-
--pf-v6-c-button--m-hamburger__icon--m-expand--
|
|
304
|
+
--pf-v6-c-button--m-hamburger__icon--m-expand--ScaleX: -1;
|
|
298
305
|
}
|
|
299
306
|
|
|
300
307
|
.pf-v6-c-button {
|
|
@@ -330,7 +337,7 @@
|
|
|
330
337
|
transition-timing-function: var(--pf-v6-c-button--TransitionTimingFunction);
|
|
331
338
|
transition-duration: var(--pf-v6-c-button--TransitionDuration);
|
|
332
339
|
transition-property: var(--pf-v6-c-button--TransitionProperty);
|
|
333
|
-
scale: var(--pf-v6-c-button--
|
|
340
|
+
scale: var(--pf-v6-c-button--ScaleX) var(--pf-v6-c-button--ScaleY);
|
|
334
341
|
}
|
|
335
342
|
.pf-v6-c-button::after {
|
|
336
343
|
position: absolute;
|
|
@@ -633,30 +640,34 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
633
640
|
--pf-v6-c-button--hamburger-icon--arrow--path: var(--pf-v6-c-button--hamburger-icon--arrow--collapse--path);
|
|
634
641
|
--pf-v6-c-button--hamburger-icon--bottom--path: var(--pf-v6-c-button--hamburger-icon--bottom--collapse--path);
|
|
635
642
|
--pf-v6-c-button__icon--TransitionDelay: 0s;
|
|
636
|
-
--pf-v6-c-button__icon--
|
|
643
|
+
--pf-v6-c-button__icon--ScaleX: var(--pf-v6-c-button--m-hamburger__icon--m-expand--ScaleX);
|
|
637
644
|
--pf-v6-c-button--hover__icon--TransitionDelay: 0s;
|
|
638
|
-
--pf-v6-c-button--hover__icon--
|
|
645
|
+
--pf-v6-c-button--hover__icon--ScaleX: var(--pf-v6-c-button--m-hamburger__icon--m-expand--ScaleX);
|
|
639
646
|
}
|
|
640
647
|
.pf-v6-c-button.pf-m-hamburger.pf-m-collapse {
|
|
641
648
|
--pf-v6-c-button--hamburger-icon--top--path: var(--pf-v6-c-button--hamburger-icon--top--collapse--path);
|
|
642
649
|
--pf-v6-c-button--hamburger-icon--arrow--path: var(--pf-v6-c-button--hamburger-icon--arrow--collapse--path);
|
|
643
650
|
--pf-v6-c-button--hamburger-icon--bottom--path: var(--pf-v6-c-button--hamburger-icon--bottom--collapse--path);
|
|
644
651
|
--pf-v6-c-button__icon--TransitionDelay: 0s;
|
|
645
|
-
--pf-v6-c-button__icon--
|
|
652
|
+
--pf-v6-c-button__icon--ScaleX: 1;
|
|
646
653
|
--pf-v6-c-button--hover__icon--TransitionDelay: 0s;
|
|
647
|
-
--pf-v6-c-button--hover__icon--
|
|
654
|
+
--pf-v6-c-button--hover__icon--ScaleX: 1;
|
|
648
655
|
}
|
|
649
656
|
.pf-v6-c-button:hover, .pf-v6-c-button:focus {
|
|
650
657
|
--pf-v6-c-button--Color: var(--pf-v6-c-button--hover--Color);
|
|
651
658
|
--pf-v6-c-button--BackgroundColor: var(--pf-v6-c-button--hover--BackgroundColor);
|
|
652
659
|
--pf-v6-c-button--BorderColor: var(--pf-v6-c-button--hover--BorderColor);
|
|
653
660
|
--pf-v6-c-button--BorderWidth: var(--pf-v6-c-button--hover--BorderWidth);
|
|
661
|
+
--pf-v6-c-button--ScaleX: var(--pf-v6-c-button--hover--ScaleX);
|
|
662
|
+
--pf-v6-c-button--ScaleY: var(--pf-v6-c-button--hover--ScaleY);
|
|
654
663
|
--pf-v6-c-button--m-plain--m-no-padding__icon--Color: var(--pf-v6-c-button--m-plain--m-no-padding--hover__icon--Color);
|
|
655
664
|
--pf-v6-c-button__icon--Color: var(--pf-v6-c-button--hover__icon--Color);
|
|
656
665
|
--pf-v6-c-button__icon--TransitionTimingFunction: var(--pf-v6-c-button--hover__icon--TransitionTimingFunction);
|
|
657
666
|
--pf-v6-c-button__icon--TransitionDuration: var(--pf-v6-c-button--hover__icon--TransitionDuration);
|
|
658
667
|
--pf-v6-c-button__icon--TransitionProperty: var(--pf-v6-c-button--hover__icon--TransitionProperty);
|
|
659
668
|
--pf-v6-c-button__icon--Rotate: var(--pf-v6-c-button--hover__icon--Rotate);
|
|
669
|
+
--pf-v6-c-button__icon--ScaleX: var(--pf-v6-c-button--hover__icon--ScaleX);
|
|
670
|
+
--pf-v6-c-button__icon--ScaleY: var(--pf-v6-c-button--hover__icon--ScaleY);
|
|
660
671
|
text-decoration-line: var(--pf-v6-c-button--hover--TextDecorationLine);
|
|
661
672
|
text-decoration-style: var(--pf-v6-c-button--hover--TextDecorationStyle);
|
|
662
673
|
text-decoration-color: var(--pf-v6-c-button--hover--TextDecorationColor);
|
|
@@ -724,7 +735,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
724
735
|
transition-duration: var(--pf-v6-c-button__icon--TransitionDuration);
|
|
725
736
|
transition-property: var(--pf-v6-c-button__icon--TransitionProperty);
|
|
726
737
|
rotate: var(--pf-v6-c-button__icon--Rotate);
|
|
727
|
-
scale: var(--pf-v6-c-button__icon--
|
|
738
|
+
scale: var(--pf-v6-c-button__icon--ScaleX) var(--pf-v6-c-button__icon--ScaleY);
|
|
728
739
|
}
|
|
729
740
|
.pf-v6-c-button__icon.pf-m-start {
|
|
730
741
|
--pf-v6-c-button__icon--MarginInlineEnd: var(--pf-v6-c-button__icon--m-start--MarginInlineEnd);
|
|
@@ -803,6 +814,6 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
803
814
|
}
|
|
804
815
|
@keyframes pf-v6-c-button-icon-favorited {
|
|
805
816
|
50% {
|
|
806
|
-
|
|
817
|
+
scale: 1.5;
|
|
807
818
|
}
|
|
808
819
|
}
|
|
@@ -25,6 +25,8 @@
|
|
|
25
25
|
--#{$button}--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
|
|
26
26
|
--#{$button}--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--accelerate);
|
|
27
27
|
--#{$button}--TransitionProperty: color, background, border-width, border-color;
|
|
28
|
+
--#{$button}--ScaleX: 1;
|
|
29
|
+
--#{$button}--ScaleY: 1;
|
|
28
30
|
|
|
29
31
|
// Hover
|
|
30
32
|
--#{$button}--hover--BackgroundColor: transparent;
|
|
@@ -33,6 +35,8 @@
|
|
|
33
35
|
--#{$button}--hover--TextDecorationLine: none;
|
|
34
36
|
--#{$button}--hover--TextDecorationStyle: none;
|
|
35
37
|
--#{$button}--hover--TextDecorationColor: currentcolor;
|
|
38
|
+
--#{$button}--hover--ScaleX: 1;
|
|
39
|
+
--#{$button}--hover--ScaleY: 1;
|
|
36
40
|
|
|
37
41
|
// Clicked
|
|
38
42
|
--#{$button}--m-clicked--BackgroundColor: transparent;
|
|
@@ -287,11 +291,14 @@
|
|
|
287
291
|
--#{$button}__icon--TransitionDuration: 0s;
|
|
288
292
|
--#{$button}__icon--TransitionProperty: none;
|
|
289
293
|
--#{$button}__icon--Rotate: 0deg;
|
|
290
|
-
--#{$button}__icon--Scale: 1;
|
|
291
294
|
--#{$button}--hover__icon--TransitionTimingFunction: auto;
|
|
292
295
|
--#{$button}--hover__icon--TransitionDuration: 0s;
|
|
293
296
|
--#{$button}--hover__icon--TransitionProperty: none;
|
|
294
297
|
--#{$button}--hover__icon--Rotate: 0deg;
|
|
298
|
+
--#{$button}__icon--ScaleX: 1;
|
|
299
|
+
--#{$button}__icon--ScaleY: 1;
|
|
300
|
+
--#{$button}--hover__icon--ScaleX: 1;
|
|
301
|
+
--#{$button}--hover__icon--ScaleY: 1;
|
|
295
302
|
|
|
296
303
|
// Favorite button
|
|
297
304
|
--#{$button}--m-favorite__icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
@@ -350,7 +357,7 @@
|
|
|
350
357
|
--#{$button}--hamburger-icon--top--collapse--path: path("M5,1 L9,1");
|
|
351
358
|
--#{$button}--hamburger-icon--arrow--collapse--path: path("M3,7 L1,5 L3,3");
|
|
352
359
|
--#{$button}--hamburger-icon--bottom--collapse--path: path("M9,9 L5,9");
|
|
353
|
-
--#{$button}--m-hamburger__icon--m-expand--
|
|
360
|
+
--#{$button}--m-hamburger__icon--m-expand--ScaleX: -1;
|
|
354
361
|
}
|
|
355
362
|
|
|
356
363
|
.#{$button} {
|
|
@@ -388,7 +395,7 @@
|
|
|
388
395
|
transition-timing-function: var(--#{$button}--TransitionTimingFunction);
|
|
389
396
|
transition-duration: var(--#{$button}--TransitionDuration);
|
|
390
397
|
transition-property: var(--#{$button}--TransitionProperty);
|
|
391
|
-
scale: var(--#{$button}--
|
|
398
|
+
scale: var(--#{$button}--ScaleX) var(--#{$button}--ScaleY);
|
|
392
399
|
|
|
393
400
|
&::after {
|
|
394
401
|
position: absolute;
|
|
@@ -744,12 +751,16 @@
|
|
|
744
751
|
--#{$button}--BackgroundColor: var(--#{$button}--hover--BackgroundColor);
|
|
745
752
|
--#{$button}--BorderColor: var(--#{$button}--hover--BorderColor);
|
|
746
753
|
--#{$button}--BorderWidth: var(--#{$button}--hover--BorderWidth);
|
|
754
|
+
--#{$button}--ScaleX: var(--#{$button}--hover--ScaleX);
|
|
755
|
+
--#{$button}--ScaleY: var(--#{$button}--hover--ScaleY);
|
|
747
756
|
--#{$button}--m-plain--m-no-padding__icon--Color: var(--#{$button}--m-plain--m-no-padding--hover__icon--Color);
|
|
748
757
|
--#{$button}__icon--Color: var(--#{$button}--hover__icon--Color);
|
|
749
758
|
--#{$button}__icon--TransitionTimingFunction: var(--#{$button}--hover__icon--TransitionTimingFunction);
|
|
750
759
|
--#{$button}__icon--TransitionDuration: var(--#{$button}--hover__icon--TransitionDuration);
|
|
751
760
|
--#{$button}__icon--TransitionProperty: var(--#{$button}--hover__icon--TransitionProperty);
|
|
752
761
|
--#{$button}__icon--Rotate: var(--#{$button}--hover__icon--Rotate);
|
|
762
|
+
--#{$button}__icon--ScaleX: var(--#{$button}--hover__icon--ScaleX);
|
|
763
|
+
--#{$button}__icon--ScaleY: var(--#{$button}--hover__icon--ScaleY);
|
|
753
764
|
|
|
754
765
|
text-decoration-line: var(--#{$button}--hover--TextDecorationLine);
|
|
755
766
|
text-decoration-style: var(--#{$button}--hover--TextDecorationStyle);
|
|
@@ -839,7 +850,7 @@
|
|
|
839
850
|
transition-duration: var(--#{$button}__icon--TransitionDuration);
|
|
840
851
|
transition-property: var(--#{$button}__icon--TransitionProperty);
|
|
841
852
|
rotate: var(--#{$button}__icon--Rotate);
|
|
842
|
-
scale: var(--#{$button}__icon--
|
|
853
|
+
scale: var(--#{$button}__icon--ScaleX) var(--#{$button}__icon--ScaleY);
|
|
843
854
|
|
|
844
855
|
&.pf-m-start {
|
|
845
856
|
--#{$button}__icon--MarginInlineEnd: var(--#{$button}__icon--m-start--MarginInlineEnd);
|
|
@@ -928,6 +939,6 @@
|
|
|
928
939
|
|
|
929
940
|
@keyframes #{$button}-icon-favorited {
|
|
930
941
|
50% {
|
|
931
|
-
|
|
942
|
+
scale: 1.5;
|
|
932
943
|
}
|
|
933
944
|
}
|
|
@@ -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
|
package/components/Page/page.css
CHANGED
|
@@ -116,18 +116,18 @@
|
|
|
116
116
|
--pf-v6-c-button--hamburger-icon--arrow--path: var(--pf-v6-c-button--hamburger-icon--arrow--collapse--path);
|
|
117
117
|
--pf-v6-c-button--hamburger-icon--bottom--path: var(--pf-v6-c-button--hamburger-icon--bottom--collapse--path);
|
|
118
118
|
--pf-v6-c-button__icon--TransitionDelay: 0s;
|
|
119
|
-
--pf-v6-c-button__icon--
|
|
119
|
+
--pf-v6-c-button__icon--ScaleX: var(--pf-v6-c-button--m-hamburger__icon--m-expand--ScaleX);
|
|
120
120
|
--pf-v6-c-button--hover__icon--TransitionDelay: 0s;
|
|
121
|
-
--pf-v6-c-button--hover__icon--
|
|
121
|
+
--pf-v6-c-button--hover__icon--ScaleX: var(--pf-v6-c-button--m-hamburger__icon--m-expand--ScaleX);
|
|
122
122
|
}
|
|
123
123
|
.pf-v6-c-page:where(:has(> .pf-v6-c-page__sidebar.pf-m-expanded)) > .pf-v6-c-masthead .pf-v6-c-masthead__toggle :is(.pf-v6-c-button.pf-m-hamburger, .pf-v6-c-button.pf-m-hamburger:hover, .pf-v6-c-button.pf-m-hamburger:focus-visible) {
|
|
124
124
|
--pf-v6-c-button--hamburger-icon--top--path: var(--pf-v6-c-button--hamburger-icon--top--collapse--path);
|
|
125
125
|
--pf-v6-c-button--hamburger-icon--arrow--path: var(--pf-v6-c-button--hamburger-icon--arrow--collapse--path);
|
|
126
126
|
--pf-v6-c-button--hamburger-icon--bottom--path: var(--pf-v6-c-button--hamburger-icon--bottom--collapse--path);
|
|
127
127
|
--pf-v6-c-button__icon--TransitionDelay: 0s;
|
|
128
|
-
--pf-v6-c-button__icon--
|
|
128
|
+
--pf-v6-c-button__icon--ScaleX: 1;
|
|
129
129
|
--pf-v6-c-button--hover__icon--TransitionDelay: 0s;
|
|
130
|
-
--pf-v6-c-button--hover__icon--
|
|
130
|
+
--pf-v6-c-button--hover__icon--ScaleX: 1;
|
|
131
131
|
}
|
|
132
132
|
@media (min-width: 75rem) {
|
|
133
133
|
.pf-v6-c-page > .pf-v6-c-masthead .pf-v6-c-masthead__toggle .pf-v6-c-button.pf-m-hamburger, .pf-v6-c-page:where(:has(> .pf-v6-c-page__sidebar.pf-m-expanded)) > .pf-v6-c-masthead .pf-v6-c-masthead__toggle :is(.pf-v6-c-button.pf-m-hamburger, .pf-v6-c-button.pf-m-hamburger:hover, .pf-v6-c-button.pf-m-hamburger:focus-visible) {
|
|
@@ -142,18 +142,18 @@
|
|
|
142
142
|
--pf-v6-c-button--hamburger-icon--arrow--path: var(--pf-v6-c-button--hamburger-icon--arrow--collapse--path);
|
|
143
143
|
--pf-v6-c-button--hamburger-icon--bottom--path: var(--pf-v6-c-button--hamburger-icon--bottom--collapse--path);
|
|
144
144
|
--pf-v6-c-button__icon--TransitionDelay: 0s;
|
|
145
|
-
--pf-v6-c-button__icon--
|
|
145
|
+
--pf-v6-c-button__icon--ScaleX: 1;
|
|
146
146
|
--pf-v6-c-button--hover__icon--TransitionDelay: 0s;
|
|
147
|
-
--pf-v6-c-button--hover__icon--
|
|
147
|
+
--pf-v6-c-button--hover__icon--ScaleX: 1;
|
|
148
148
|
}
|
|
149
149
|
.pf-v6-c-page:where(:has(> .pf-v6-c-page__sidebar.pf-m-collapsed)) > .pf-v6-c-masthead .pf-v6-c-masthead__toggle .pf-v6-c-button.pf-m-hamburger:is(:hover, :focus-visible) {
|
|
150
150
|
--pf-v6-c-button--hamburger-icon--top--path: var(--pf-v6-c-button--hamburger-icon--top--collapse--path);
|
|
151
151
|
--pf-v6-c-button--hamburger-icon--arrow--path: var(--pf-v6-c-button--hamburger-icon--arrow--collapse--path);
|
|
152
152
|
--pf-v6-c-button--hamburger-icon--bottom--path: var(--pf-v6-c-button--hamburger-icon--bottom--collapse--path);
|
|
153
153
|
--pf-v6-c-button__icon--TransitionDelay: 0s;
|
|
154
|
-
--pf-v6-c-button__icon--
|
|
154
|
+
--pf-v6-c-button__icon--ScaleX: var(--pf-v6-c-button--m-hamburger__icon--m-expand--ScaleX);
|
|
155
155
|
--pf-v6-c-button--hover__icon--TransitionDelay: 0s;
|
|
156
|
-
--pf-v6-c-button--hover__icon--
|
|
156
|
+
--pf-v6-c-button--hover__icon--ScaleX: var(--pf-v6-c-button--m-hamburger__icon--m-expand--ScaleX);
|
|
157
157
|
}
|
|
158
158
|
}
|
|
159
159
|
|
|
@@ -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;
|