@patternfly/patternfly 6.3.0-prerelease.12 → 6.3.0-prerelease.14
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/assets/images/icon-outlined-star.hbs +3 -0
- package/assets/images/icon-star.hbs +3 -0
- package/components/Accordion/accordion.css +17 -2
- package/components/Accordion/accordion.scss +17 -2
- package/components/Button/button.css +27 -0
- package/components/Button/button.scss +30 -1
- package/components/Timestamp/timestamp.css +4 -0
- package/components/Timestamp/timestamp.scss +7 -0
- package/components/TreeView/tree-view.css +33 -0
- package/components/TreeView/tree-view.scss +36 -2
- package/components/Truncate/truncate.css +1 -0
- package/components/Truncate/truncate.scss +3 -0
- package/components/_index.css +82 -2
- package/docs/components/Button/examples/Button.md +60 -2
- package/docs/components/Menu/examples/Menu.md +120 -4
- package/docs/components/Table/examples/Table.md +300 -10
- package/package.json +2 -2
- package/patternfly-no-globals.css +82 -2
- package/patternfly.css +82 -2
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg class="pf-v6-svg" viewBox="0 0 576 512" fill="currentColor" aria-hidden="true" role="img" width="1em" height="1em">
|
|
2
|
+
<path d="M528.1 171.5L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6zM388.6 312.3l23.7 138.4L288 385.4l-124.3 65.3 23.7-138.4-100.6-98 139-20.2 62.2-126 62.2 126 139 20.2-100.6 98z"></path>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg class="pf-v6-svg" viewBox="0 0 576 512" fill="currentColor" aria-hidden="true" role="img" width="1em" height="1em">
|
|
2
|
+
<path d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z"></path>
|
|
3
|
+
</svg>
|
|
@@ -178,7 +178,12 @@
|
|
|
178
178
|
scale: -1 1;
|
|
179
179
|
}
|
|
180
180
|
|
|
181
|
+
.pf-v6-c-accordion__expandable-content:where([hidden]) {
|
|
182
|
+
display: revert;
|
|
183
|
+
}
|
|
184
|
+
|
|
181
185
|
.pf-v6-c-accordion__expandable-content {
|
|
186
|
+
display: none;
|
|
182
187
|
margin-block-end: var(--pf-v6-c-accordion__expandable-content--MarginBlockEnd);
|
|
183
188
|
margin-inline-start: var(--pf-v6-c-accordion__expandable-content--MarginInlineStart);
|
|
184
189
|
margin-inline-end: var(--pf-v6-c-accordion__expandable-content--MarginInlineEnd);
|
|
@@ -188,14 +193,24 @@
|
|
|
188
193
|
border-radius: var(--pf-v6-c-accordion__expandable-content--BorderRadius);
|
|
189
194
|
opacity: var(--pf-v6-c-accordion__expandable-content--Opacity);
|
|
190
195
|
transition-timing-function: var(--pf-v6-c-accordion__expandable-content--TransitionTimingFunction);
|
|
191
|
-
transition-duration: var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--slide);
|
|
192
|
-
transition-property: opacity, translate;
|
|
196
|
+
transition-duration: var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--slide), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade);
|
|
197
|
+
transition-property: opacity, translate, display;
|
|
198
|
+
transition-behavior: allow-discrete;
|
|
193
199
|
translate: 0 var(--pf-v6-c-accordion__expandable-content--TranslateY);
|
|
194
200
|
}
|
|
195
201
|
.pf-v6-c-accordion__expandable-content.pf-m-fixed {
|
|
196
202
|
max-height: var(--pf-v6-c-accordion__expandable-content--m-fixed--MaxHeight);
|
|
197
203
|
overflow-y: auto;
|
|
198
204
|
}
|
|
205
|
+
.pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content {
|
|
206
|
+
display: revert;
|
|
207
|
+
}
|
|
208
|
+
@starting-style {
|
|
209
|
+
.pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content {
|
|
210
|
+
--pf-v6-c-accordion__expandable-content--Opacity: 0;
|
|
211
|
+
--pf-v6-c-accordion__expandable-content--TranslateY: -.5rem;
|
|
212
|
+
}
|
|
213
|
+
}
|
|
199
214
|
|
|
200
215
|
.pf-v6-c-accordion__expandable-content-body {
|
|
201
216
|
padding-block-start: var(--pf-v6-c-accordion__expandable-content-body--PaddingBlockStart);
|
|
@@ -207,7 +207,12 @@
|
|
|
207
207
|
transition: var(--#{$accordion}__toggle-icon--Transition); // TODO remove shorthand property in breaking change
|
|
208
208
|
}
|
|
209
209
|
|
|
210
|
+
.#{$accordion}__expandable-content:where([hidden]) {
|
|
211
|
+
display: revert;
|
|
212
|
+
}
|
|
213
|
+
|
|
210
214
|
.#{$accordion}__expandable-content {
|
|
215
|
+
display: none;
|
|
211
216
|
margin-block-end: var(--#{$accordion}__expandable-content--MarginBlockEnd);
|
|
212
217
|
margin-inline-start: var(--#{$accordion}__expandable-content--MarginInlineStart);
|
|
213
218
|
margin-inline-end: var(--#{$accordion}__expandable-content--MarginInlineEnd);
|
|
@@ -217,14 +222,24 @@
|
|
|
217
222
|
border-radius: var(--#{$accordion}__expandable-content--BorderRadius);
|
|
218
223
|
opacity: var(--#{$accordion}__expandable-content--Opacity);
|
|
219
224
|
transition-timing-function: var(--#{$accordion}__expandable-content--TransitionTimingFunction);
|
|
220
|
-
transition-duration: var(--#{$accordion}__expandable-content--TransitionDuration--fade), var(--#{$accordion}__expandable-content--TransitionDuration--slide);
|
|
221
|
-
transition-property: opacity, translate;
|
|
225
|
+
transition-duration: var(--#{$accordion}__expandable-content--TransitionDuration--fade), var(--#{$accordion}__expandable-content--TransitionDuration--slide), var(--#{$accordion}__expandable-content--TransitionDuration--fade);
|
|
226
|
+
transition-property: opacity, translate, display;
|
|
227
|
+
transition-behavior: allow-discrete;
|
|
222
228
|
translate: 0 var(--#{$accordion}__expandable-content--TranslateY);
|
|
223
229
|
|
|
224
230
|
&.pf-m-fixed {
|
|
225
231
|
max-height: var(--#{$accordion}__expandable-content--m-fixed--MaxHeight);
|
|
226
232
|
overflow-y: auto;
|
|
227
233
|
}
|
|
234
|
+
|
|
235
|
+
.#{$accordion}__item.pf-m-expanded & {
|
|
236
|
+
display: revert;
|
|
237
|
+
|
|
238
|
+
@starting-style {
|
|
239
|
+
--#{$accordion}__expandable-content--Opacity: 0;
|
|
240
|
+
--#{$accordion}__expandable-content--TranslateY: -.5rem;
|
|
241
|
+
}
|
|
242
|
+
}
|
|
228
243
|
}
|
|
229
244
|
|
|
230
245
|
.#{$accordion}__expandable-content-body {
|
|
@@ -243,6 +243,11 @@
|
|
|
243
243
|
--pf-v6-c-button--m-favorited--hover__icon--Color: var(--pf-t--global--color--favorite--hover);
|
|
244
244
|
--pf-v6-c-button--m-favorited__icon--AnimationDuration: var(--pf-t--global--motion--duration--icon--long);
|
|
245
245
|
--pf-v6-c-button--m-favorited__icon--AnimationTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
246
|
+
--pf-v6-c-button__icon--favorite--Opacity: 1;
|
|
247
|
+
--pf-v6-c-button__icon--favorited--Opacity: 0;
|
|
248
|
+
--pf-v6-c-button--m-favorited__icon--favorite--Opacity: 0;
|
|
249
|
+
--pf-v6-c-button--m-favorited__icon--favorited--Opacity: 1;
|
|
250
|
+
--pf-v6-c-button__icon--favorite--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
246
251
|
--pf-v6-c-button__progress--width: calc(var(--pf-t--global--icon--size--lg) + var(--pf-t--global--spacer--sm));
|
|
247
252
|
--pf-v6-c-button__progress--Opacity: 0;
|
|
248
253
|
--pf-v6-c-button__progress--TranslateY: -50%;
|
|
@@ -553,6 +558,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
553
558
|
--pf-v6-c-button--FontSize: var(--pf-v6-c-button--m-display-lg--FontSize);
|
|
554
559
|
}
|
|
555
560
|
.pf-v6-c-button.pf-m-favorite .pf-v6-c-button__icon {
|
|
561
|
+
display: grid;
|
|
556
562
|
transition-timing-function: var(--pf-v6-c-button--m-favorite__icon--TransitionTimingFunction);
|
|
557
563
|
transition-duration: var(--pf-v6-c-button--m-favorite__icon--TransitionDuration);
|
|
558
564
|
transition-property: color;
|
|
@@ -560,6 +566,8 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
560
566
|
.pf-v6-c-button.pf-m-favorited {
|
|
561
567
|
--pf-v6-c-button__icon--Color: var(--pf-v6-c-button--m-favorited__icon--Color);
|
|
562
568
|
--pf-v6-c-button--hover__icon--Color: var(--pf-v6-c-button--m-favorited--hover__icon--Color);
|
|
569
|
+
--pf-v6-c-button__icon--favorite--Opacity: var(--pf-v6-c-button--m-favorited__icon--favorite--Opacity);
|
|
570
|
+
--pf-v6-c-button__icon--favorited--Opacity: var(--pf-v6-c-button--m-favorited__icon--favorited--Opacity);
|
|
563
571
|
}
|
|
564
572
|
.pf-v6-c-button.pf-m-favorited .pf-v6-c-button__icon {
|
|
565
573
|
animation-name: pf-v6-c-button-icon-favorited;
|
|
@@ -639,6 +647,21 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
639
647
|
--pf-v6-c-button__icon--MarginInlineStart: var(--pf-v6-c-button__icon--m-end--MarginInlineStart);
|
|
640
648
|
}
|
|
641
649
|
|
|
650
|
+
.pf-v6-c-button__icon-favorite,
|
|
651
|
+
.pf-v6-c-button__icon-favorited {
|
|
652
|
+
grid-area: 1/1/1/1;
|
|
653
|
+
transition-duration: var(--pf-v6-c-button__icon--favorite--TransitionDuration);
|
|
654
|
+
transition-property: opacity;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
.pf-v6-c-button__icon-favorite {
|
|
658
|
+
opacity: var(--pf-v6-c-button__icon--favorite--Opacity);
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.pf-v6-c-button__icon-favorited {
|
|
662
|
+
opacity: var(--pf-v6-c-button__icon--favorited--Opacity);
|
|
663
|
+
}
|
|
664
|
+
|
|
642
665
|
.pf-v6-c-button__progress {
|
|
643
666
|
position: absolute;
|
|
644
667
|
inset-block-start: var(--pf-v6-c-button__progress--InsetBlockStart);
|
|
@@ -651,6 +674,10 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
651
674
|
--pf-v6-c-spinner--Color: currentcolor;
|
|
652
675
|
}
|
|
653
676
|
|
|
677
|
+
.pf-v6-c-button__text {
|
|
678
|
+
text-decoration: inherit;
|
|
679
|
+
}
|
|
680
|
+
|
|
654
681
|
.pf-v6-c-button__count {
|
|
655
682
|
display: inline-flex;
|
|
656
683
|
align-items: center;
|
|
@@ -289,6 +289,11 @@
|
|
|
289
289
|
--#{$button}--m-favorited--hover__icon--Color: var(--pf-t--global--color--favorite--hover);
|
|
290
290
|
--#{$button}--m-favorited__icon--AnimationDuration: var(--pf-t--global--motion--duration--icon--long);
|
|
291
291
|
--#{$button}--m-favorited__icon--AnimationTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
292
|
+
--#{$button}__icon--favorite--Opacity: 1;
|
|
293
|
+
--#{$button}__icon--favorited--Opacity: 0;
|
|
294
|
+
--#{$button}--m-favorited__icon--favorite--Opacity: 0;
|
|
295
|
+
--#{$button}--m-favorited__icon--favorited--Opacity: 1;
|
|
296
|
+
--#{$button}__icon--favorite--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
292
297
|
|
|
293
298
|
// Progress
|
|
294
299
|
--#{$button}__progress--width: calc(var(--pf-t--global--icon--size--lg) + var(--pf-t--global--spacer--sm)); // matches medium spinner diameter plus a spacer
|
|
@@ -641,8 +646,8 @@
|
|
|
641
646
|
--#{$button}--FontSize: var(--#{$button}--m-display-lg--FontSize);
|
|
642
647
|
}
|
|
643
648
|
|
|
644
|
-
// Favorite button icon will transition color
|
|
645
649
|
&.pf-m-favorite .#{$button}__icon {
|
|
650
|
+
display: grid;
|
|
646
651
|
transition-timing-function: var(--#{$button}--m-favorite__icon--TransitionTimingFunction);
|
|
647
652
|
transition-duration: var(--#{$button}--m-favorite__icon--TransitionDuration);
|
|
648
653
|
transition-property: color;
|
|
@@ -652,6 +657,8 @@
|
|
|
652
657
|
&.pf-m-favorited {
|
|
653
658
|
--#{$button}__icon--Color: var(--#{$button}--m-favorited__icon--Color);
|
|
654
659
|
--#{$button}--hover__icon--Color: var(--#{$button}--m-favorited--hover__icon--Color);
|
|
660
|
+
--#{$button}__icon--favorite--Opacity: var(--#{$button}--m-favorited__icon--favorite--Opacity);
|
|
661
|
+
--#{$button}__icon--favorited--Opacity: var(--#{$button}--m-favorited__icon--favorited--Opacity);
|
|
655
662
|
}
|
|
656
663
|
|
|
657
664
|
// Favorite button will run an animation when favorited
|
|
@@ -757,6 +764,21 @@
|
|
|
757
764
|
}
|
|
758
765
|
}
|
|
759
766
|
|
|
767
|
+
.#{$button}__icon-favorite,
|
|
768
|
+
.#{$button}__icon-favorited {
|
|
769
|
+
grid-area: 1 / 1 / 1 / 1;
|
|
770
|
+
transition-duration: var(--#{$button}__icon--favorite--TransitionDuration);
|
|
771
|
+
transition-property: opacity;
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
.#{$button}__icon-favorite {
|
|
775
|
+
opacity: var(--#{$button}__icon--favorite--Opacity);
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
.#{$button}__icon-favorited {
|
|
779
|
+
opacity: var(--#{$button}__icon--favorited--Opacity);
|
|
780
|
+
}
|
|
781
|
+
|
|
760
782
|
.#{$button}__progress {
|
|
761
783
|
position: absolute;
|
|
762
784
|
inset-block-start: var(--#{$button}__progress--InsetBlockStart);
|
|
@@ -770,6 +792,13 @@
|
|
|
770
792
|
}
|
|
771
793
|
}
|
|
772
794
|
|
|
795
|
+
// enable inline link to have underline when used with truncate
|
|
796
|
+
.#{$button}__text {
|
|
797
|
+
// stylelint-disable property-disallowed-list
|
|
798
|
+
text-decoration: inherit;
|
|
799
|
+
// stylelint-enable property-disallowed-list
|
|
800
|
+
}
|
|
801
|
+
|
|
773
802
|
.#{$button}__count {
|
|
774
803
|
display: inline-flex;
|
|
775
804
|
align-items: center;
|
|
@@ -28,4 +28,8 @@
|
|
|
28
28
|
--pf-v6-c-timestamp--Color: var(--pf-v6-c-timestamp--m-help-text--hover--Color);
|
|
29
29
|
--pf-v6-c-timestamp--m-help-text--TextDecorationLine: var(--pf-v6-c-timestamp--m-help-text--hover--TextDecorationLine);
|
|
30
30
|
--pf-v6-c-timestamp--m-help-text--TextDecorationStyle: var(--pf-v6-c-timestamp--m-help-text--hover--TextDecorationStyle);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.pf-v6-c-timestamp__text {
|
|
34
|
+
text-decoration: inherit;
|
|
31
35
|
}
|
|
@@ -36,3 +36,10 @@
|
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
|
+
|
|
40
|
+
// enable timestamp with tooltip to have dashed underline when used with truncate
|
|
41
|
+
.#{$timestamp}__text {
|
|
42
|
+
// stylelint-disable property-disallowed-list
|
|
43
|
+
text-decoration: inherit;
|
|
44
|
+
// stylelint-enable property-disallowed-list
|
|
45
|
+
}
|
|
@@ -14,6 +14,17 @@
|
|
|
14
14
|
--pf-v6-c-tree-view__node-container--Display: contents;
|
|
15
15
|
--pf-v6-c-tree-view__node-content--RowGap: var(--pf-t--global--spacer--sm);
|
|
16
16
|
--pf-v6-c-tree-view__node-content--Overflow: visible;
|
|
17
|
+
--pf-v6-c-tree-view__list--TransitionDuration--expand--slide: 0s;
|
|
18
|
+
--pf-v6-c-tree-view__list--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
19
|
+
--pf-v6-c-tree-view__list--TransitionDuration--collapse--slide: 0s;
|
|
20
|
+
--pf-v6-c-tree-view__list--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
21
|
+
--pf-v6-c-tree-view__list--TransitionDuration--slide: var(--pf-v6-c-tree-view__list--TransitionDuration--collapse--slide);
|
|
22
|
+
--pf-v6-c-tree-view__list--TransitionDuration--fade: var(--pf-v6-c-tree-view__list--TransitionDuration--collapse--fade);
|
|
23
|
+
--pf-v6-c-tree-view__list--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
24
|
+
--pf-v6-c-tree-view__list--Opacity: 0;
|
|
25
|
+
--pf-v6-c-tree-view--m-expanded__list--Opacity: 1;
|
|
26
|
+
--pf-v6-c-tree-view__list--TranslateY: 0;
|
|
27
|
+
--pf-v6-c-tree-view--m-expanded__list--TranslateY: 0;
|
|
17
28
|
--pf-v6-c-tree-view__list-item__list-item__node-toggle--InsetBlockStart: var(--pf-v6-c-tree-view__node--PaddingBlockStart);
|
|
18
29
|
--pf-v6-c-tree-view__list-item__list-item__node-toggle--InsetInlineStart: var(--pf-v6-c-tree-view__node--PaddingInlineStart);
|
|
19
30
|
--pf-v6-c-tree-view__list-item__list-item__node-toggle--TranslateX: -100%;
|
|
@@ -29,6 +40,8 @@
|
|
|
29
40
|
--pf-v6-c-tree-view__node-toggle--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
30
41
|
--pf-v6-c-tree-view__node-toggle--MarginBlockStart: calc(var(--pf-v6-c-tree-view__node-toggle--PaddingBlockStart) * -1);
|
|
31
42
|
--pf-v6-c-tree-view__node-toggle--MarginBlockEnd: calc(var(--pf-v6-c-tree-view__node-toggle--PaddingBlockStart) * -1);
|
|
43
|
+
--pf-v6-c-tree-view__node-toggle-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
44
|
+
--pf-v6-c-tree-view__node-toggle-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
32
45
|
--pf-v6-c-tree-view__node-check--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
33
46
|
--pf-v6-c-tree-view__node-count--MarginInlineStart: var(--pf-t--global--spacer--sm);
|
|
34
47
|
--pf-v6-c-tree-view__search--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
@@ -104,6 +117,13 @@
|
|
|
104
117
|
--pf-v6-c-tree-view--m-compact--m-no-background__node--nested--PaddingBlockEnd: 0;
|
|
105
118
|
--pf-v6-c-tree-view--m-compact--m-no-background__node--before--InsetBlockStart: calc(var(--pf-v6-c-tree-view--m-compact__node-container--nested--PaddingBlockStart) + var(--pf-v6-c-tree-view--m-compact__node--nested--PaddingBlockStart) + 0.25rem);
|
|
106
119
|
}
|
|
120
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
|
121
|
+
.pf-v6-c-tree-view {
|
|
122
|
+
--pf-v6-c-tree-view__list--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
|
|
123
|
+
--pf-v6-c-tree-view__list--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
|
|
124
|
+
--pf-v6-c-tree-view__list--TranslateY: -.5rem;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
107
127
|
|
|
108
128
|
.pf-v6-c-tree-view.pf-m-compact .pf-v6-c-tree-view__list-item, .pf-v6-c-tree-view.pf-m-guides .pf-v6-c-tree-view__list-item {
|
|
109
129
|
position: relative;
|
|
@@ -219,12 +239,20 @@
|
|
|
219
239
|
display: inline-block;
|
|
220
240
|
min-width: var(--pf-v6-c-tree-view__node-toggle-icon--MinWidth);
|
|
221
241
|
text-align: center;
|
|
242
|
+
transition: transform var(--pf-v6-c-tree-view__node-toggle-icon--TransitionDuration) var(--pf-v6-c-tree-view__node-toggle-icon--TransitionTimingFunction);
|
|
222
243
|
transform: rotate(var(--pf-v6-c-tree-view__node-toggle-icon--Rotate));
|
|
223
244
|
}
|
|
224
245
|
:where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-tree-view__node-toggle-icon {
|
|
225
246
|
scale: -1 1;
|
|
226
247
|
}
|
|
227
248
|
|
|
249
|
+
.pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list {
|
|
250
|
+
opacity: var(--pf-v6-c-tree-view__list--Opacity);
|
|
251
|
+
transition-timing-function: var(--pf-v6-c-tree-view__list--TransitionTimingFunction);
|
|
252
|
+
transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--slide);
|
|
253
|
+
transition-property: opacity, translate;
|
|
254
|
+
translate: 0 var(--pf-v6-c-tree-view__list--TranslateY);
|
|
255
|
+
}
|
|
228
256
|
.pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list-item {
|
|
229
257
|
--pf-v6-c-tree-view__node-toggle-icon--Rotate: var(--pf-v6-c-tree-view__node-toggle-icon--base--Rotate);
|
|
230
258
|
--pf-v6-c-tree-view__node-toggle--Color: var(--pf-v6-c-tree-view__node-toggle--Color--base);
|
|
@@ -233,6 +261,11 @@
|
|
|
233
261
|
--pf-v6-c-tree-view__node-toggle--Color: var(--pf-v6-c-tree-view__list-item--m-expanded__node-toggle--Color);
|
|
234
262
|
--pf-v6-c-tree-view__node-toggle-icon--Rotate: var(--pf-v6-c-tree-view__list-item--m-expanded__node-toggle-icon--Rotate);
|
|
235
263
|
}
|
|
264
|
+
.pf-v6-c-tree-view__list-item.pf-m-expanded > .pf-v6-c-tree-view__list {
|
|
265
|
+
opacity: var(--pf-v6-c-tree-view--m-expanded__list--Opacity);
|
|
266
|
+
transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--expand--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--expand--slide);
|
|
267
|
+
translate: 0 var(--pf-v6-c-tree-view--m-expanded__list--TranslateY);
|
|
268
|
+
}
|
|
236
269
|
|
|
237
270
|
.pf-v6-c-tree-view__node,
|
|
238
271
|
.pf-v6-c-tree-view__node-container {
|
|
@@ -28,6 +28,25 @@ $pf-v6-c-tree-view--MaxNesting: 10 !default;
|
|
|
28
28
|
--#{$tree-view}__node-content--RowGap: var(--pf-t--global--spacer--sm);
|
|
29
29
|
--#{$tree-view}__node-content--Overflow: visible;
|
|
30
30
|
|
|
31
|
+
// List
|
|
32
|
+
--#{$tree-view}__list--TransitionDuration--expand--slide: 0s;
|
|
33
|
+
--#{$tree-view}__list--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
34
|
+
--#{$tree-view}__list--TransitionDuration--collapse--slide: 0s;
|
|
35
|
+
--#{$tree-view}__list--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
36
|
+
--#{$tree-view}__list--TransitionDuration--slide: var(--#{$tree-view}__list--TransitionDuration--collapse--slide);
|
|
37
|
+
--#{$tree-view}__list--TransitionDuration--fade: var(--#{$tree-view}__list--TransitionDuration--collapse--fade);
|
|
38
|
+
--#{$tree-view}__list--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
39
|
+
--#{$tree-view}__list--Opacity: 0;
|
|
40
|
+
--#{$tree-view}--m-expanded__list--Opacity: 1;
|
|
41
|
+
--#{$tree-view}__list--TranslateY: 0;
|
|
42
|
+
--#{$tree-view}--m-expanded__list--TranslateY: 0;
|
|
43
|
+
|
|
44
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
|
45
|
+
--#{$tree-view}__list--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
|
|
46
|
+
--#{$tree-view}__list--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
|
|
47
|
+
--#{$tree-view}__list--TranslateY: -.5rem;
|
|
48
|
+
}
|
|
49
|
+
|
|
31
50
|
// Nested toggle
|
|
32
51
|
--#{$tree-view}__list-item__list-item__node-toggle--InsetBlockStart: var(--#{$tree-view}__node--PaddingBlockStart);
|
|
33
52
|
--#{$tree-view}__list-item__list-item__node-toggle--InsetInlineStart: var(--#{$tree-view}__node--PaddingInlineStart);
|
|
@@ -48,6 +67,8 @@ $pf-v6-c-tree-view--MaxNesting: 10 !default;
|
|
|
48
67
|
--#{$tree-view}__node-toggle--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
49
68
|
--#{$tree-view}__node-toggle--MarginBlockStart: calc(var(--#{$tree-view}__node-toggle--PaddingBlockStart) * -1);
|
|
50
69
|
--#{$tree-view}__node-toggle--MarginBlockEnd: calc(var(--#{$tree-view}__node-toggle--PaddingBlockStart) * -1);
|
|
70
|
+
--#{$tree-view}__node-toggle-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
71
|
+
--#{$tree-view}__node-toggle-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
51
72
|
|
|
52
73
|
// Check
|
|
53
74
|
--#{$tree-view}__node-check--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
@@ -330,11 +351,19 @@ $pf-v6-c-tree-view--MaxNesting: 10 !default;
|
|
|
330
351
|
display: inline-block;
|
|
331
352
|
min-width: var(--#{$tree-view}__node-toggle-icon--MinWidth);
|
|
332
353
|
text-align: center;
|
|
354
|
+
transition: transform var(--#{$tree-view}__node-toggle-icon--TransitionDuration) var(--#{$tree-view}__node-toggle-icon--TransitionTimingFunction);
|
|
333
355
|
transform: rotate(var(--#{$tree-view}__node-toggle-icon--Rotate));
|
|
334
356
|
}
|
|
335
357
|
|
|
336
|
-
// stylelint-disable
|
|
337
358
|
.#{$tree-view}__list-item {
|
|
359
|
+
.#{$tree-view}__list {
|
|
360
|
+
opacity: var(--#{$tree-view}__list--Opacity);
|
|
361
|
+
transition-timing-function: var(--#{$tree-view}__list--TransitionTimingFunction);
|
|
362
|
+
transition-duration: var(--#{$tree-view}__list--TransitionDuration--fade), var(--#{$tree-view}__list--TransitionDuration--slide);
|
|
363
|
+
transition-property: opacity, translate;
|
|
364
|
+
translate: 0 var(--#{$tree-view}__list--TranslateY);
|
|
365
|
+
}
|
|
366
|
+
|
|
338
367
|
.#{$tree-view}__list-item {
|
|
339
368
|
--#{$tree-view}__node-toggle-icon--Rotate: var(--#{$tree-view}__node-toggle-icon--base--Rotate); // reset nested toggle icon rotate
|
|
340
369
|
--#{$tree-view}__node-toggle--Color: var(--#{$tree-view}__node-toggle--Color--base); // reset nested toggle color
|
|
@@ -343,9 +372,14 @@ $pf-v6-c-tree-view--MaxNesting: 10 !default;
|
|
|
343
372
|
&.pf-m-expanded {
|
|
344
373
|
--#{$tree-view}__node-toggle--Color: var(--#{$tree-view}__list-item--m-expanded__node-toggle--Color);
|
|
345
374
|
--#{$tree-view}__node-toggle-icon--Rotate: var(--#{$tree-view}__list-item--m-expanded__node-toggle-icon--Rotate);
|
|
375
|
+
|
|
376
|
+
> .#{$tree-view}__list {
|
|
377
|
+
opacity: var(--#{$tree-view}--m-expanded__list--Opacity);
|
|
378
|
+
transition-duration: var(--#{$tree-view}__list--TransitionDuration--expand--fade), var(--#{$tree-view}__list--TransitionDuration--expand--slide);
|
|
379
|
+
translate: 0 var(--#{$tree-view}--m-expanded__list--TranslateY);
|
|
380
|
+
}
|
|
346
381
|
}
|
|
347
382
|
}
|
|
348
|
-
// stylelint-enable
|
|
349
383
|
|
|
350
384
|
.#{$tree-view}__node,
|
|
351
385
|
.#{$tree-view}__node-container {
|
|
@@ -10,6 +10,9 @@
|
|
|
10
10
|
grid-auto-flow: column;
|
|
11
11
|
align-items: baseline;
|
|
12
12
|
min-width: var(--#{$truncate}--MinWidth);
|
|
13
|
+
// stylelint-disable property-disallowed-list
|
|
14
|
+
text-decoration: inherit; // enable inline link to have underline
|
|
15
|
+
// stylelint-enable property-disallowed-list
|
|
13
16
|
|
|
14
17
|
&.pf-m-fixed {
|
|
15
18
|
display: inline;
|
package/components/_index.css
CHANGED
|
@@ -371,7 +371,12 @@
|
|
|
371
371
|
scale: -1 1;
|
|
372
372
|
}
|
|
373
373
|
|
|
374
|
+
.pf-v6-c-accordion__expandable-content:where([hidden]) {
|
|
375
|
+
display: revert;
|
|
376
|
+
}
|
|
377
|
+
|
|
374
378
|
.pf-v6-c-accordion__expandable-content {
|
|
379
|
+
display: none;
|
|
375
380
|
margin-block-end: var(--pf-v6-c-accordion__expandable-content--MarginBlockEnd);
|
|
376
381
|
margin-inline-start: var(--pf-v6-c-accordion__expandable-content--MarginInlineStart);
|
|
377
382
|
margin-inline-end: var(--pf-v6-c-accordion__expandable-content--MarginInlineEnd);
|
|
@@ -381,14 +386,24 @@
|
|
|
381
386
|
border-radius: var(--pf-v6-c-accordion__expandable-content--BorderRadius);
|
|
382
387
|
opacity: var(--pf-v6-c-accordion__expandable-content--Opacity);
|
|
383
388
|
transition-timing-function: var(--pf-v6-c-accordion__expandable-content--TransitionTimingFunction);
|
|
384
|
-
transition-duration: var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--slide);
|
|
385
|
-
transition-property: opacity, translate;
|
|
389
|
+
transition-duration: var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--slide), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade);
|
|
390
|
+
transition-property: opacity, translate, display;
|
|
391
|
+
transition-behavior: allow-discrete;
|
|
386
392
|
translate: 0 var(--pf-v6-c-accordion__expandable-content--TranslateY);
|
|
387
393
|
}
|
|
388
394
|
.pf-v6-c-accordion__expandable-content.pf-m-fixed {
|
|
389
395
|
max-height: var(--pf-v6-c-accordion__expandable-content--m-fixed--MaxHeight);
|
|
390
396
|
overflow-y: auto;
|
|
391
397
|
}
|
|
398
|
+
.pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content {
|
|
399
|
+
display: revert;
|
|
400
|
+
}
|
|
401
|
+
@starting-style {
|
|
402
|
+
.pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content {
|
|
403
|
+
--pf-v6-c-accordion__expandable-content--Opacity: 0;
|
|
404
|
+
--pf-v6-c-accordion__expandable-content--TranslateY: -.5rem;
|
|
405
|
+
}
|
|
406
|
+
}
|
|
392
407
|
|
|
393
408
|
.pf-v6-c-accordion__expandable-content-body {
|
|
394
409
|
padding-block-start: var(--pf-v6-c-accordion__expandable-content-body--PaddingBlockStart);
|
|
@@ -1757,6 +1772,11 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
1757
1772
|
--pf-v6-c-button--m-favorited--hover__icon--Color: var(--pf-t--global--color--favorite--hover);
|
|
1758
1773
|
--pf-v6-c-button--m-favorited__icon--AnimationDuration: var(--pf-t--global--motion--duration--icon--long);
|
|
1759
1774
|
--pf-v6-c-button--m-favorited__icon--AnimationTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
1775
|
+
--pf-v6-c-button__icon--favorite--Opacity: 1;
|
|
1776
|
+
--pf-v6-c-button__icon--favorited--Opacity: 0;
|
|
1777
|
+
--pf-v6-c-button--m-favorited__icon--favorite--Opacity: 0;
|
|
1778
|
+
--pf-v6-c-button--m-favorited__icon--favorited--Opacity: 1;
|
|
1779
|
+
--pf-v6-c-button__icon--favorite--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
1760
1780
|
--pf-v6-c-button__progress--width: calc(var(--pf-t--global--icon--size--lg) + var(--pf-t--global--spacer--sm));
|
|
1761
1781
|
--pf-v6-c-button__progress--Opacity: 0;
|
|
1762
1782
|
--pf-v6-c-button__progress--TranslateY: -50%;
|
|
@@ -2067,6 +2087,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
2067
2087
|
--pf-v6-c-button--FontSize: var(--pf-v6-c-button--m-display-lg--FontSize);
|
|
2068
2088
|
}
|
|
2069
2089
|
.pf-v6-c-button.pf-m-favorite .pf-v6-c-button__icon {
|
|
2090
|
+
display: grid;
|
|
2070
2091
|
transition-timing-function: var(--pf-v6-c-button--m-favorite__icon--TransitionTimingFunction);
|
|
2071
2092
|
transition-duration: var(--pf-v6-c-button--m-favorite__icon--TransitionDuration);
|
|
2072
2093
|
transition-property: color;
|
|
@@ -2074,6 +2095,8 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
2074
2095
|
.pf-v6-c-button.pf-m-favorited {
|
|
2075
2096
|
--pf-v6-c-button__icon--Color: var(--pf-v6-c-button--m-favorited__icon--Color);
|
|
2076
2097
|
--pf-v6-c-button--hover__icon--Color: var(--pf-v6-c-button--m-favorited--hover__icon--Color);
|
|
2098
|
+
--pf-v6-c-button__icon--favorite--Opacity: var(--pf-v6-c-button--m-favorited__icon--favorite--Opacity);
|
|
2099
|
+
--pf-v6-c-button__icon--favorited--Opacity: var(--pf-v6-c-button--m-favorited__icon--favorited--Opacity);
|
|
2077
2100
|
}
|
|
2078
2101
|
.pf-v6-c-button.pf-m-favorited .pf-v6-c-button__icon {
|
|
2079
2102
|
animation-name: pf-v6-c-button-icon-favorited;
|
|
@@ -2153,6 +2176,21 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
2153
2176
|
--pf-v6-c-button__icon--MarginInlineStart: var(--pf-v6-c-button__icon--m-end--MarginInlineStart);
|
|
2154
2177
|
}
|
|
2155
2178
|
|
|
2179
|
+
.pf-v6-c-button__icon-favorite,
|
|
2180
|
+
.pf-v6-c-button__icon-favorited {
|
|
2181
|
+
grid-area: 1/1/1/1;
|
|
2182
|
+
transition-duration: var(--pf-v6-c-button__icon--favorite--TransitionDuration);
|
|
2183
|
+
transition-property: opacity;
|
|
2184
|
+
}
|
|
2185
|
+
|
|
2186
|
+
.pf-v6-c-button__icon-favorite {
|
|
2187
|
+
opacity: var(--pf-v6-c-button__icon--favorite--Opacity);
|
|
2188
|
+
}
|
|
2189
|
+
|
|
2190
|
+
.pf-v6-c-button__icon-favorited {
|
|
2191
|
+
opacity: var(--pf-v6-c-button__icon--favorited--Opacity);
|
|
2192
|
+
}
|
|
2193
|
+
|
|
2156
2194
|
.pf-v6-c-button__progress {
|
|
2157
2195
|
position: absolute;
|
|
2158
2196
|
inset-block-start: var(--pf-v6-c-button__progress--InsetBlockStart);
|
|
@@ -2165,6 +2203,10 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
2165
2203
|
--pf-v6-c-spinner--Color: currentcolor;
|
|
2166
2204
|
}
|
|
2167
2205
|
|
|
2206
|
+
.pf-v6-c-button__text {
|
|
2207
|
+
text-decoration: inherit;
|
|
2208
|
+
}
|
|
2209
|
+
|
|
2168
2210
|
.pf-v6-c-button__count {
|
|
2169
2211
|
display: inline-flex;
|
|
2170
2212
|
align-items: center;
|
|
@@ -19681,6 +19723,10 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
19681
19723
|
--pf-v6-c-timestamp--m-help-text--TextDecorationStyle: var(--pf-v6-c-timestamp--m-help-text--hover--TextDecorationStyle);
|
|
19682
19724
|
}
|
|
19683
19725
|
|
|
19726
|
+
.pf-v6-c-timestamp__text {
|
|
19727
|
+
text-decoration: inherit;
|
|
19728
|
+
}
|
|
19729
|
+
|
|
19684
19730
|
.pf-v6-c-title {
|
|
19685
19731
|
--pf-v6-c-title--FontFamily: var(--pf-t--global--font--family--heading);
|
|
19686
19732
|
--pf-v6-c-title--m-4xl--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
@@ -21955,6 +22001,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
21955
22001
|
grid-auto-flow: column;
|
|
21956
22002
|
align-items: baseline;
|
|
21957
22003
|
min-width: var(--pf-v6-c-truncate--MinWidth);
|
|
22004
|
+
text-decoration: inherit;
|
|
21958
22005
|
}
|
|
21959
22006
|
.pf-v6-c-truncate.pf-m-fixed {
|
|
21960
22007
|
display: inline;
|
|
@@ -22051,6 +22098,17 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22051
22098
|
--pf-v6-c-tree-view__node-container--Display: contents;
|
|
22052
22099
|
--pf-v6-c-tree-view__node-content--RowGap: var(--pf-t--global--spacer--sm);
|
|
22053
22100
|
--pf-v6-c-tree-view__node-content--Overflow: visible;
|
|
22101
|
+
--pf-v6-c-tree-view__list--TransitionDuration--expand--slide: 0s;
|
|
22102
|
+
--pf-v6-c-tree-view__list--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
22103
|
+
--pf-v6-c-tree-view__list--TransitionDuration--collapse--slide: 0s;
|
|
22104
|
+
--pf-v6-c-tree-view__list--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
22105
|
+
--pf-v6-c-tree-view__list--TransitionDuration--slide: var(--pf-v6-c-tree-view__list--TransitionDuration--collapse--slide);
|
|
22106
|
+
--pf-v6-c-tree-view__list--TransitionDuration--fade: var(--pf-v6-c-tree-view__list--TransitionDuration--collapse--fade);
|
|
22107
|
+
--pf-v6-c-tree-view__list--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
22108
|
+
--pf-v6-c-tree-view__list--Opacity: 0;
|
|
22109
|
+
--pf-v6-c-tree-view--m-expanded__list--Opacity: 1;
|
|
22110
|
+
--pf-v6-c-tree-view__list--TranslateY: 0;
|
|
22111
|
+
--pf-v6-c-tree-view--m-expanded__list--TranslateY: 0;
|
|
22054
22112
|
--pf-v6-c-tree-view__list-item__list-item__node-toggle--InsetBlockStart: var(--pf-v6-c-tree-view__node--PaddingBlockStart);
|
|
22055
22113
|
--pf-v6-c-tree-view__list-item__list-item__node-toggle--InsetInlineStart: var(--pf-v6-c-tree-view__node--PaddingInlineStart);
|
|
22056
22114
|
--pf-v6-c-tree-view__list-item__list-item__node-toggle--TranslateX: -100%;
|
|
@@ -22066,6 +22124,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22066
22124
|
--pf-v6-c-tree-view__node-toggle--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
22067
22125
|
--pf-v6-c-tree-view__node-toggle--MarginBlockStart: calc(var(--pf-v6-c-tree-view__node-toggle--PaddingBlockStart) * -1);
|
|
22068
22126
|
--pf-v6-c-tree-view__node-toggle--MarginBlockEnd: calc(var(--pf-v6-c-tree-view__node-toggle--PaddingBlockStart) * -1);
|
|
22127
|
+
--pf-v6-c-tree-view__node-toggle-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
22128
|
+
--pf-v6-c-tree-view__node-toggle-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
22069
22129
|
--pf-v6-c-tree-view__node-check--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
22070
22130
|
--pf-v6-c-tree-view__node-count--MarginInlineStart: var(--pf-t--global--spacer--sm);
|
|
22071
22131
|
--pf-v6-c-tree-view__search--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
|
@@ -22141,6 +22201,13 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22141
22201
|
--pf-v6-c-tree-view--m-compact--m-no-background__node--nested--PaddingBlockEnd: 0;
|
|
22142
22202
|
--pf-v6-c-tree-view--m-compact--m-no-background__node--before--InsetBlockStart: calc(var(--pf-v6-c-tree-view--m-compact__node-container--nested--PaddingBlockStart) + var(--pf-v6-c-tree-view--m-compact__node--nested--PaddingBlockStart) + 0.25rem);
|
|
22143
22203
|
}
|
|
22204
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
|
22205
|
+
.pf-v6-c-tree-view {
|
|
22206
|
+
--pf-v6-c-tree-view__list--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
|
|
22207
|
+
--pf-v6-c-tree-view__list--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
|
|
22208
|
+
--pf-v6-c-tree-view__list--TranslateY: -.5rem;
|
|
22209
|
+
}
|
|
22210
|
+
}
|
|
22144
22211
|
|
|
22145
22212
|
.pf-v6-c-tree-view.pf-m-compact .pf-v6-c-tree-view__list-item, .pf-v6-c-tree-view.pf-m-guides .pf-v6-c-tree-view__list-item {
|
|
22146
22213
|
position: relative;
|
|
@@ -22256,12 +22323,20 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22256
22323
|
display: inline-block;
|
|
22257
22324
|
min-width: var(--pf-v6-c-tree-view__node-toggle-icon--MinWidth);
|
|
22258
22325
|
text-align: center;
|
|
22326
|
+
transition: transform var(--pf-v6-c-tree-view__node-toggle-icon--TransitionDuration) var(--pf-v6-c-tree-view__node-toggle-icon--TransitionTimingFunction);
|
|
22259
22327
|
transform: rotate(var(--pf-v6-c-tree-view__node-toggle-icon--Rotate));
|
|
22260
22328
|
}
|
|
22261
22329
|
:where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-tree-view__node-toggle-icon {
|
|
22262
22330
|
scale: -1 1;
|
|
22263
22331
|
}
|
|
22264
22332
|
|
|
22333
|
+
.pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list {
|
|
22334
|
+
opacity: var(--pf-v6-c-tree-view__list--Opacity);
|
|
22335
|
+
transition-timing-function: var(--pf-v6-c-tree-view__list--TransitionTimingFunction);
|
|
22336
|
+
transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--slide);
|
|
22337
|
+
transition-property: opacity, translate;
|
|
22338
|
+
translate: 0 var(--pf-v6-c-tree-view__list--TranslateY);
|
|
22339
|
+
}
|
|
22265
22340
|
.pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list-item {
|
|
22266
22341
|
--pf-v6-c-tree-view__node-toggle-icon--Rotate: var(--pf-v6-c-tree-view__node-toggle-icon--base--Rotate);
|
|
22267
22342
|
--pf-v6-c-tree-view__node-toggle--Color: var(--pf-v6-c-tree-view__node-toggle--Color--base);
|
|
@@ -22270,6 +22345,11 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22270
22345
|
--pf-v6-c-tree-view__node-toggle--Color: var(--pf-v6-c-tree-view__list-item--m-expanded__node-toggle--Color);
|
|
22271
22346
|
--pf-v6-c-tree-view__node-toggle-icon--Rotate: var(--pf-v6-c-tree-view__list-item--m-expanded__node-toggle-icon--Rotate);
|
|
22272
22347
|
}
|
|
22348
|
+
.pf-v6-c-tree-view__list-item.pf-m-expanded > .pf-v6-c-tree-view__list {
|
|
22349
|
+
opacity: var(--pf-v6-c-tree-view--m-expanded__list--Opacity);
|
|
22350
|
+
transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--expand--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--expand--slide);
|
|
22351
|
+
translate: 0 var(--pf-v6-c-tree-view--m-expanded__list--TranslateY);
|
|
22352
|
+
}
|
|
22273
22353
|
|
|
22274
22354
|
.pf-v6-c-tree-view__node,
|
|
22275
22355
|
.pf-v6-c-tree-view__node-container {
|