@patternfly/patternfly 6.3.0-prerelease.22 → 6.3.0-prerelease.24
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 +11 -12
- package/components/Accordion/accordion.scss +11 -10
- package/components/Form/form.css +33 -2
- package/components/Form/form.scss +39 -2
- package/components/TreeView/tree-view.css +9 -3
- package/components/TreeView/tree-view.scss +9 -3
- package/components/_index.css +53 -17
- package/docs/components/Form/examples/Form.md +92 -5
- package/docs/demos/Form/examples/BasicForms.md +12 -12
- package/package.json +1 -1
- package/patternfly-no-globals.css +53 -17
- package/patternfly.css +53 -17
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -183,33 +183,32 @@
|
|
|
183
183
|
}
|
|
184
184
|
|
|
185
185
|
.pf-v6-c-accordion__expandable-content {
|
|
186
|
-
|
|
187
|
-
margin-block-end: var(--pf-v6-c-accordion__expandable-content--MarginBlockEnd);
|
|
186
|
+
max-height: 0;
|
|
188
187
|
margin-inline-start: var(--pf-v6-c-accordion__expandable-content--MarginInlineStart);
|
|
189
188
|
margin-inline-end: var(--pf-v6-c-accordion__expandable-content--MarginInlineEnd);
|
|
190
189
|
font-size: var(--pf-v6-c-accordion__expandable-content--FontSize);
|
|
191
190
|
color: var(--pf-v6-c-accordion__expandable-content--Color);
|
|
191
|
+
visibility: hidden;
|
|
192
192
|
background-color: var(--pf-v6-c-accordion__expandable-content--BackgroundColor);
|
|
193
193
|
border-radius: var(--pf-v6-c-accordion__expandable-content--BorderRadius);
|
|
194
194
|
opacity: var(--pf-v6-c-accordion__expandable-content--Opacity);
|
|
195
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade);
|
|
195
196
|
transition-timing-function: var(--pf-v6-c-accordion__expandable-content--TransitionTimingFunction);
|
|
196
|
-
transition-duration: var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--slide),
|
|
197
|
-
transition-property: opacity, translate,
|
|
198
|
-
transition-behavior: allow-discrete;
|
|
197
|
+
transition-duration: var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--slide), 0s, 0s, 0s;
|
|
198
|
+
transition-property: opacity, translate, visibility, max-height, margin-block-end;
|
|
199
199
|
translate: 0 var(--pf-v6-c-accordion__expandable-content--TranslateY);
|
|
200
200
|
}
|
|
201
201
|
.pf-v6-c-accordion__expandable-content.pf-m-fixed {
|
|
202
|
-
max-height: var(--pf-v6-c-accordion__expandable-content--m-fixed--MaxHeight);
|
|
203
202
|
overflow-y: auto;
|
|
204
203
|
}
|
|
205
204
|
.pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content {
|
|
206
|
-
|
|
205
|
+
max-height: 9999px;
|
|
206
|
+
margin-block-end: var(--pf-v6-c-accordion__expandable-content--MarginBlockEnd);
|
|
207
|
+
visibility: revert;
|
|
208
|
+
transition-delay: 0s;
|
|
207
209
|
}
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
--pf-v6-c-accordion__expandable-content--Opacity: 0;
|
|
211
|
-
--pf-v6-c-accordion__expandable-content--TranslateY: -.5rem;
|
|
212
|
-
}
|
|
210
|
+
.pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content.pf-m-fixed {
|
|
211
|
+
max-height: var(--pf-v6-c-accordion__expandable-content--m-fixed--MaxHeight);
|
|
213
212
|
}
|
|
214
213
|
|
|
215
214
|
.pf-v6-c-accordion__expandable-content-body {
|
|
@@ -212,32 +212,33 @@
|
|
|
212
212
|
}
|
|
213
213
|
|
|
214
214
|
.#{$accordion}__expandable-content {
|
|
215
|
-
|
|
216
|
-
margin-block-end: var(--#{$accordion}__expandable-content--MarginBlockEnd);
|
|
215
|
+
max-height: 0;
|
|
217
216
|
margin-inline-start: var(--#{$accordion}__expandable-content--MarginInlineStart);
|
|
218
217
|
margin-inline-end: var(--#{$accordion}__expandable-content--MarginInlineEnd);
|
|
219
218
|
font-size: var(--#{$accordion}__expandable-content--FontSize);
|
|
220
219
|
color: var(--#{$accordion}__expandable-content--Color);
|
|
220
|
+
visibility: hidden;
|
|
221
221
|
background-color: var(--#{$accordion}__expandable-content--BackgroundColor);
|
|
222
222
|
border-radius: var(--#{$accordion}__expandable-content--BorderRadius);
|
|
223
223
|
opacity: var(--#{$accordion}__expandable-content--Opacity);
|
|
224
|
+
transition-delay: 0s, 0s, var(--#{$accordion}__expandable-content--TransitionDuration--fade), var(--#{$accordion}__expandable-content--TransitionDuration--fade), var(--#{$accordion}__expandable-content--TransitionDuration--fade);
|
|
224
225
|
transition-timing-function: var(--#{$accordion}__expandable-content--TransitionTimingFunction);
|
|
225
|
-
transition-duration: var(--#{$accordion}__expandable-content--TransitionDuration--fade), var(--#{$accordion}__expandable-content--TransitionDuration--slide),
|
|
226
|
-
transition-property: opacity, translate,
|
|
227
|
-
transition-behavior: allow-discrete;
|
|
226
|
+
transition-duration: var(--#{$accordion}__expandable-content--TransitionDuration--fade), var(--#{$accordion}__expandable-content--TransitionDuration--slide), 0s, 0s, 0s;
|
|
227
|
+
transition-property: opacity, translate, visibility, max-height, margin-block-end;
|
|
228
228
|
translate: 0 var(--#{$accordion}__expandable-content--TranslateY);
|
|
229
229
|
|
|
230
230
|
&.pf-m-fixed {
|
|
231
|
-
max-height: var(--#{$accordion}__expandable-content--m-fixed--MaxHeight);
|
|
232
231
|
overflow-y: auto;
|
|
233
232
|
}
|
|
234
233
|
|
|
235
234
|
.#{$accordion}__item.pf-m-expanded & {
|
|
236
|
-
|
|
235
|
+
max-height: 9999px;
|
|
236
|
+
margin-block-end: var(--#{$accordion}__expandable-content--MarginBlockEnd);
|
|
237
|
+
visibility: revert;
|
|
238
|
+
transition-delay: 0s;
|
|
237
239
|
|
|
238
|
-
|
|
239
|
-
--#{$accordion}__expandable-content--
|
|
240
|
-
--#{$accordion}__expandable-content--TranslateY: -.5rem;
|
|
240
|
+
&.pf-m-fixed {
|
|
241
|
+
max-height: var(--#{$accordion}__expandable-content--m-fixed--MaxHeight);
|
|
241
242
|
}
|
|
242
243
|
}
|
|
243
244
|
}
|
package/components/Form/form.css
CHANGED
|
@@ -78,6 +78,19 @@
|
|
|
78
78
|
--pf-v6-c-form__field-group__field-group__field-group-body--GridColumn: 1 / 3;
|
|
79
79
|
--pf-v6-c-form__field-group__field-group__field-group-toggle--field-group-body--GridColumn: 2 / 3;
|
|
80
80
|
--pf-v6-c-form__field-group-body__field-group--last-child--MarginBlockEnd: calc(var(--pf-v6-c-form__field-group-body--PaddingBlockEnd) * -1);
|
|
81
|
+
--pf-v6-c-form__field-group-body--TranslateY: 0;
|
|
82
|
+
--pf-v6-c-form__field-group--m-expanded__field-group-body--TranslateY: 0;
|
|
83
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--expand--slide: 0s;
|
|
84
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
85
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--collapse--slide: 0s;
|
|
86
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
87
|
+
}
|
|
88
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
|
89
|
+
.pf-v6-c-form {
|
|
90
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
|
|
91
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
|
|
92
|
+
--pf-v6-c-form__field-group-body--TranslateY: -.5rem;
|
|
93
|
+
}
|
|
81
94
|
}
|
|
82
95
|
|
|
83
96
|
.pf-v6-c-form {
|
|
@@ -434,6 +447,16 @@
|
|
|
434
447
|
.pf-v6-c-form__field-group.pf-m-expanded > .pf-v6-c-form__field-group-toggle {
|
|
435
448
|
--pf-v6-c-form__field-group-toggle-icon--Rotate: var(--pf-v6-c-form__field-group--m-expanded__toggle-icon--Rotate);
|
|
436
449
|
}
|
|
450
|
+
.pf-v6-c-form__field-group.pf-m-expanded.pf-m-expandable > .pf-v6-c-form__field-group-body {
|
|
451
|
+
max-height: 9999px;
|
|
452
|
+
padding-block-start: var(--pf-v6-c-form__field-group-body--PaddingBlockStart);
|
|
453
|
+
padding-block-end: var(--pf-v6-c-form__field-group-body--PaddingBlockEnd);
|
|
454
|
+
visibility: visible;
|
|
455
|
+
opacity: 1;
|
|
456
|
+
transition-delay: 0s;
|
|
457
|
+
transition-duration: var(--pf-v6-c-form__field-group-body--TransitionDuration--expand--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--expand--slide), 0s, 0s, 0s, 0s;
|
|
458
|
+
translate: 0 var(--pf-v6-c-form__field-group--m-expanded__field-group-body--TranslateY);
|
|
459
|
+
}
|
|
437
460
|
|
|
438
461
|
.pf-v6-c-form__field-group-toggle {
|
|
439
462
|
grid-row: 1/2;
|
|
@@ -500,9 +523,17 @@
|
|
|
500
523
|
display: grid;
|
|
501
524
|
grid-column: var(--pf-v6-c-form__field-group-body--GridColumn);
|
|
502
525
|
gap: var(--pf-v6-c-form__field-group-body--Gap);
|
|
503
|
-
padding-block-start: var(--pf-v6-c-form__field-group-body--PaddingBlockStart);
|
|
504
|
-
padding-block-end: var(--pf-v6-c-form__field-group-body--PaddingBlockEnd);
|
|
505
526
|
}
|
|
527
|
+
.pf-v6-c-form__field-group.pf-m-expandable > .pf-v6-c-form__field-group-body {
|
|
528
|
+
max-height: 0;
|
|
529
|
+
visibility: hidden;
|
|
530
|
+
opacity: 0;
|
|
531
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade);
|
|
532
|
+
transition-duration: var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--slide), 0s, 0s, 0s, 0s;
|
|
533
|
+
transition-property: opacity, translate, visibility, max-height, padding-block-start, padding-block-end;
|
|
534
|
+
translate: 0 var(--pf-v6-c-form__field-group-body--TranslateY);
|
|
535
|
+
}
|
|
536
|
+
|
|
506
537
|
.pf-v6-c-form__field-group-body > .pf-v6-c-form__field-group:first-child {
|
|
507
538
|
--pf-v6-c-form__field-group-toggle--PaddingBlockStart: 0;
|
|
508
539
|
--pf-v6-c-form__field-group-header--PaddingBlockStart: 0;
|
|
@@ -125,6 +125,8 @@ $pf-v6-c-form--m-horizontal--breakpoint-map: build-breakpoint-map("sm", "md", "l
|
|
|
125
125
|
--#{$form}__field-group--BorderBlockEndWidth: var(--#{$form}__field-group--border-width-base);
|
|
126
126
|
--#{$form}__field-group--BorderBlockEndColor: var(--pf-t--global--border--color--default);
|
|
127
127
|
--#{$form}__field-group--field-group--MarginBlockStart: calc(var(--#{$form}--GridGap) * -1);
|
|
128
|
+
|
|
129
|
+
// Field group toggle
|
|
128
130
|
--#{$form}__field-group--GridTemplateColumns--toggle: calc(var(--pf-t--global--spacer--md) * 2 + var(--#{$form}__field-group-toggle-icon--MinWidth) + var(--pf-t--global--spacer--xs)); // based off of the expected width of the group toggle, for use to define a column when the toggle is not present
|
|
129
131
|
--#{$form}__field-group-toggle--PaddingBlockStart: var(--#{$form}__field-group-header--PaddingBlockStart);
|
|
130
132
|
--#{$form}__field-group-toggle--PaddingInlineEnd: var(--pf-t--global--spacer--xs);
|
|
@@ -138,6 +140,8 @@ $pf-v6-c-form--m-horizontal--breakpoint-map: build-breakpoint-map("sm", "md", "l
|
|
|
138
140
|
--#{$form}__field-group-toggle-icon--MinWidth: var(--pf-t--global--font--size--body--default);
|
|
139
141
|
--#{$form}__field-group-toggle-icon--Rotate: 0;
|
|
140
142
|
--#{$form}__field-group--m-expanded__toggle-icon--Rotate: 90deg;
|
|
143
|
+
|
|
144
|
+
// Field group header
|
|
141
145
|
--#{$form}__field-group-header--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
142
146
|
--#{$form}__field-group-header--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
143
147
|
--#{$form}__field-group-header--GridColumn: 1 / 3;
|
|
@@ -148,6 +152,8 @@ $pf-v6-c-form--m-horizontal--breakpoint-map: build-breakpoint-map("sm", "md", "l
|
|
|
148
152
|
--#{$form}__field-group-header-description--MarginBlockStart: var(--pf-t--global--spacer--xs);
|
|
149
153
|
--#{$form}__field-group-header-description--Color: var(--pf-t--global--text--color--subtle);
|
|
150
154
|
--#{$form}__field-group-header-actions--MarginInlineStart: var(--pf-t--global--spacer--sm);
|
|
155
|
+
|
|
156
|
+
// Field group body
|
|
151
157
|
--#{$form}__field-group-body--PaddingBlockStart: var(--pf-t--global--spacer--lg);
|
|
152
158
|
--#{$form}__field-group-body--PaddingBlockEnd: var(--pf-t--global--spacer--lg);
|
|
153
159
|
--#{$form}__field-group-body--Gap: var(--#{$form}--GridGap);
|
|
@@ -155,6 +161,18 @@ $pf-v6-c-form--m-horizontal--breakpoint-map: build-breakpoint-map("sm", "md", "l
|
|
|
155
161
|
--#{$form}__field-group__field-group__field-group-body--GridColumn: 1 / 3;
|
|
156
162
|
--#{$form}__field-group__field-group__field-group-toggle--field-group-body--GridColumn: 2 / 3;
|
|
157
163
|
--#{$form}__field-group-body__field-group--last-child--MarginBlockEnd: calc(var(--#{$form}__field-group-body--PaddingBlockEnd) * -1);
|
|
164
|
+
--#{$form}__field-group-body--TranslateY: 0;
|
|
165
|
+
--#{$form}__field-group--m-expanded__field-group-body--TranslateY: 0;
|
|
166
|
+
--#{$form}__field-group-body--TransitionDuration--expand--slide: 0s;
|
|
167
|
+
--#{$form}__field-group-body--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
168
|
+
--#{$form}__field-group-body--TransitionDuration--collapse--slide: 0s;
|
|
169
|
+
--#{$form}__field-group-body--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
170
|
+
|
|
171
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
|
172
|
+
--#{$form}__field-group-body--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
|
|
173
|
+
--#{$form}__field-group-body--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
|
|
174
|
+
--#{$form}__field-group-body--TranslateY: -.5rem;
|
|
175
|
+
}
|
|
158
176
|
}
|
|
159
177
|
|
|
160
178
|
.#{$form} {
|
|
@@ -385,6 +403,17 @@ $pf-v6-c-form--m-horizontal--breakpoint-map: build-breakpoint-map("sm", "md", "l
|
|
|
385
403
|
> .#{$form}__field-group-toggle {
|
|
386
404
|
--#{$form}__field-group-toggle-icon--Rotate: var(--#{$form}__field-group--m-expanded__toggle-icon--Rotate);
|
|
387
405
|
}
|
|
406
|
+
|
|
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: 9999px;
|
|
409
|
+
padding-block-start: var(--#{$form}__field-group-body--PaddingBlockStart);
|
|
410
|
+
padding-block-end: var(--#{$form}__field-group-body--PaddingBlockEnd);
|
|
411
|
+
visibility: visible;
|
|
412
|
+
opacity: 1;
|
|
413
|
+
transition-delay: 0s;
|
|
414
|
+
transition-duration: var(--#{$form}__field-group-body--TransitionDuration--expand--fade), var(--#{$form}__field-group-body--TransitionDuration--expand--slide), 0s, 0s, 0s, 0s;
|
|
415
|
+
translate: 0 var(--#{$form}__field-group--m-expanded__field-group-body--TranslateY);
|
|
416
|
+
}
|
|
388
417
|
}
|
|
389
418
|
}
|
|
390
419
|
|
|
@@ -453,8 +482,16 @@ $pf-v6-c-form--m-horizontal--breakpoint-map: build-breakpoint-map("sm", "md", "l
|
|
|
453
482
|
display: grid;
|
|
454
483
|
grid-column: var(--#{$form}__field-group-body--GridColumn);
|
|
455
484
|
gap: var(--#{$form}__field-group-body--Gap);
|
|
456
|
-
|
|
457
|
-
|
|
485
|
+
|
|
486
|
+
@at-root .#{$form}__field-group.pf-m-expandable > & {
|
|
487
|
+
max-height: 0;
|
|
488
|
+
visibility: hidden;
|
|
489
|
+
opacity: 0;
|
|
490
|
+
transition-delay: 0s, 0s, var(--#{$form}__field-group-body--TransitionDuration--collapse--fade), var(--#{$form}__field-group-body--TransitionDuration--collapse--fade), var(--#{$form}__field-group-body--TransitionDuration--collapse--fade), var(--#{$form}__field-group-body--TransitionDuration--collapse--fade);
|
|
491
|
+
transition-duration: var(--#{$form}__field-group-body--TransitionDuration--collapse--fade), var(--#{$form}__field-group-body--TransitionDuration--collapse--slide), 0s, 0s, 0s, 0s;
|
|
492
|
+
transition-property: opacity, translate, visibility, max-height, padding-block-start, padding-block-end;
|
|
493
|
+
translate: 0 var(--#{$form}__field-group-body--TranslateY);
|
|
494
|
+
}
|
|
458
495
|
|
|
459
496
|
> .#{$form}__field-group {
|
|
460
497
|
&:first-child {
|
|
@@ -247,10 +247,13 @@
|
|
|
247
247
|
}
|
|
248
248
|
|
|
249
249
|
.pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list {
|
|
250
|
+
max-height: 0;
|
|
251
|
+
visibility: hidden;
|
|
250
252
|
opacity: var(--pf-v6-c-tree-view__list--Opacity);
|
|
253
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--fade);
|
|
251
254
|
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;
|
|
255
|
+
transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--slide), 0s, 0s;
|
|
256
|
+
transition-property: opacity, translate, visibility, max-height;
|
|
254
257
|
translate: 0 var(--pf-v6-c-tree-view__list--TranslateY);
|
|
255
258
|
}
|
|
256
259
|
.pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list-item {
|
|
@@ -262,8 +265,11 @@
|
|
|
262
265
|
--pf-v6-c-tree-view__node-toggle-icon--Rotate: var(--pf-v6-c-tree-view__list-item--m-expanded__node-toggle-icon--Rotate);
|
|
263
266
|
}
|
|
264
267
|
.pf-v6-c-tree-view__list-item.pf-m-expanded > .pf-v6-c-tree-view__list {
|
|
268
|
+
max-height: 9999px;
|
|
269
|
+
visibility: revert;
|
|
265
270
|
opacity: var(--pf-v6-c-tree-view--m-expanded__list--Opacity);
|
|
266
|
-
transition-
|
|
271
|
+
transition-delay: 0s;
|
|
272
|
+
transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--expand--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--expand--slide), 0s, 0s;
|
|
267
273
|
translate: 0 var(--pf-v6-c-tree-view--m-expanded__list--TranslateY);
|
|
268
274
|
}
|
|
269
275
|
|
|
@@ -357,10 +357,13 @@ $pf-v6-c-tree-view--MaxNesting: 10 !default;
|
|
|
357
357
|
|
|
358
358
|
.#{$tree-view}__list-item {
|
|
359
359
|
.#{$tree-view}__list {
|
|
360
|
+
max-height: 0;
|
|
361
|
+
visibility: hidden;
|
|
360
362
|
opacity: var(--#{$tree-view}__list--Opacity);
|
|
363
|
+
transition-delay: 0s, 0s, var(--#{$tree-view}__list--TransitionDuration--fade), var(--#{$tree-view}__list--TransitionDuration--fade);
|
|
361
364
|
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;
|
|
365
|
+
transition-duration: var(--#{$tree-view}__list--TransitionDuration--fade), var(--#{$tree-view}__list--TransitionDuration--slide), 0s, 0s;
|
|
366
|
+
transition-property: opacity, translate, visibility, max-height;
|
|
364
367
|
translate: 0 var(--#{$tree-view}__list--TranslateY);
|
|
365
368
|
}
|
|
366
369
|
|
|
@@ -374,8 +377,11 @@ $pf-v6-c-tree-view--MaxNesting: 10 !default;
|
|
|
374
377
|
--#{$tree-view}__node-toggle-icon--Rotate: var(--#{$tree-view}__list-item--m-expanded__node-toggle-icon--Rotate);
|
|
375
378
|
|
|
376
379
|
> .#{$tree-view}__list {
|
|
380
|
+
max-height: 9999px;
|
|
381
|
+
visibility: revert;
|
|
377
382
|
opacity: var(--#{$tree-view}--m-expanded__list--Opacity);
|
|
378
|
-
transition-
|
|
383
|
+
transition-delay: 0s;
|
|
384
|
+
transition-duration: var(--#{$tree-view}__list--TransitionDuration--expand--fade), var(--#{$tree-view}__list--TransitionDuration--expand--slide), 0s, 0s;
|
|
379
385
|
translate: 0 var(--#{$tree-view}--m-expanded__list--TranslateY);
|
|
380
386
|
}
|
|
381
387
|
}
|
package/components/_index.css
CHANGED
|
@@ -376,33 +376,32 @@
|
|
|
376
376
|
}
|
|
377
377
|
|
|
378
378
|
.pf-v6-c-accordion__expandable-content {
|
|
379
|
-
|
|
380
|
-
margin-block-end: var(--pf-v6-c-accordion__expandable-content--MarginBlockEnd);
|
|
379
|
+
max-height: 0;
|
|
381
380
|
margin-inline-start: var(--pf-v6-c-accordion__expandable-content--MarginInlineStart);
|
|
382
381
|
margin-inline-end: var(--pf-v6-c-accordion__expandable-content--MarginInlineEnd);
|
|
383
382
|
font-size: var(--pf-v6-c-accordion__expandable-content--FontSize);
|
|
384
383
|
color: var(--pf-v6-c-accordion__expandable-content--Color);
|
|
384
|
+
visibility: hidden;
|
|
385
385
|
background-color: var(--pf-v6-c-accordion__expandable-content--BackgroundColor);
|
|
386
386
|
border-radius: var(--pf-v6-c-accordion__expandable-content--BorderRadius);
|
|
387
387
|
opacity: var(--pf-v6-c-accordion__expandable-content--Opacity);
|
|
388
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade);
|
|
388
389
|
transition-timing-function: var(--pf-v6-c-accordion__expandable-content--TransitionTimingFunction);
|
|
389
|
-
transition-duration: var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--slide),
|
|
390
|
-
transition-property: opacity, translate,
|
|
391
|
-
transition-behavior: allow-discrete;
|
|
390
|
+
transition-duration: var(--pf-v6-c-accordion__expandable-content--TransitionDuration--fade), var(--pf-v6-c-accordion__expandable-content--TransitionDuration--slide), 0s, 0s, 0s;
|
|
391
|
+
transition-property: opacity, translate, visibility, max-height, margin-block-end;
|
|
392
392
|
translate: 0 var(--pf-v6-c-accordion__expandable-content--TranslateY);
|
|
393
393
|
}
|
|
394
394
|
.pf-v6-c-accordion__expandable-content.pf-m-fixed {
|
|
395
|
-
max-height: var(--pf-v6-c-accordion__expandable-content--m-fixed--MaxHeight);
|
|
396
395
|
overflow-y: auto;
|
|
397
396
|
}
|
|
398
397
|
.pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content {
|
|
399
|
-
|
|
398
|
+
max-height: 9999px;
|
|
399
|
+
margin-block-end: var(--pf-v6-c-accordion__expandable-content--MarginBlockEnd);
|
|
400
|
+
visibility: revert;
|
|
401
|
+
transition-delay: 0s;
|
|
400
402
|
}
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
--pf-v6-c-accordion__expandable-content--Opacity: 0;
|
|
404
|
-
--pf-v6-c-accordion__expandable-content--TranslateY: -.5rem;
|
|
405
|
-
}
|
|
403
|
+
.pf-v6-c-accordion__item.pf-m-expanded .pf-v6-c-accordion__expandable-content.pf-m-fixed {
|
|
404
|
+
max-height: var(--pf-v6-c-accordion__expandable-content--m-fixed--MaxHeight);
|
|
406
405
|
}
|
|
407
406
|
|
|
408
407
|
.pf-v6-c-accordion__expandable-content-body {
|
|
@@ -6704,6 +6703,19 @@ ul) {
|
|
|
6704
6703
|
--pf-v6-c-form__field-group__field-group__field-group-body--GridColumn: 1 / 3;
|
|
6705
6704
|
--pf-v6-c-form__field-group__field-group__field-group-toggle--field-group-body--GridColumn: 2 / 3;
|
|
6706
6705
|
--pf-v6-c-form__field-group-body__field-group--last-child--MarginBlockEnd: calc(var(--pf-v6-c-form__field-group-body--PaddingBlockEnd) * -1);
|
|
6706
|
+
--pf-v6-c-form__field-group-body--TranslateY: 0;
|
|
6707
|
+
--pf-v6-c-form__field-group--m-expanded__field-group-body--TranslateY: 0;
|
|
6708
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--expand--slide: 0s;
|
|
6709
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--expand--fade: var(--pf-t--global--motion--duration--fade--default);
|
|
6710
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--collapse--slide: 0s;
|
|
6711
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade: var(--pf-t--global--motion--duration--fade--short);
|
|
6712
|
+
}
|
|
6713
|
+
@media screen and (prefers-reduced-motion: no-preference) {
|
|
6714
|
+
.pf-v6-c-form {
|
|
6715
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--expand--slide: var(--pf-t--global--motion--duration--fade--default);
|
|
6716
|
+
--pf-v6-c-form__field-group-body--TransitionDuration--collapse--slide: var(--pf-t--global--motion--duration--fade--short);
|
|
6717
|
+
--pf-v6-c-form__field-group-body--TranslateY: -.5rem;
|
|
6718
|
+
}
|
|
6707
6719
|
}
|
|
6708
6720
|
|
|
6709
6721
|
.pf-v6-c-form {
|
|
@@ -7060,6 +7072,16 @@ ul) {
|
|
|
7060
7072
|
.pf-v6-c-form__field-group.pf-m-expanded > .pf-v6-c-form__field-group-toggle {
|
|
7061
7073
|
--pf-v6-c-form__field-group-toggle-icon--Rotate: var(--pf-v6-c-form__field-group--m-expanded__toggle-icon--Rotate);
|
|
7062
7074
|
}
|
|
7075
|
+
.pf-v6-c-form__field-group.pf-m-expanded.pf-m-expandable > .pf-v6-c-form__field-group-body {
|
|
7076
|
+
max-height: 9999px;
|
|
7077
|
+
padding-block-start: var(--pf-v6-c-form__field-group-body--PaddingBlockStart);
|
|
7078
|
+
padding-block-end: var(--pf-v6-c-form__field-group-body--PaddingBlockEnd);
|
|
7079
|
+
visibility: visible;
|
|
7080
|
+
opacity: 1;
|
|
7081
|
+
transition-delay: 0s;
|
|
7082
|
+
transition-duration: var(--pf-v6-c-form__field-group-body--TransitionDuration--expand--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--expand--slide), 0s, 0s, 0s, 0s;
|
|
7083
|
+
translate: 0 var(--pf-v6-c-form__field-group--m-expanded__field-group-body--TranslateY);
|
|
7084
|
+
}
|
|
7063
7085
|
|
|
7064
7086
|
.pf-v6-c-form__field-group-toggle {
|
|
7065
7087
|
grid-row: 1/2;
|
|
@@ -7126,9 +7148,17 @@ ul) {
|
|
|
7126
7148
|
display: grid;
|
|
7127
7149
|
grid-column: var(--pf-v6-c-form__field-group-body--GridColumn);
|
|
7128
7150
|
gap: var(--pf-v6-c-form__field-group-body--Gap);
|
|
7129
|
-
padding-block-start: var(--pf-v6-c-form__field-group-body--PaddingBlockStart);
|
|
7130
|
-
padding-block-end: var(--pf-v6-c-form__field-group-body--PaddingBlockEnd);
|
|
7131
7151
|
}
|
|
7152
|
+
.pf-v6-c-form__field-group.pf-m-expandable > .pf-v6-c-form__field-group-body {
|
|
7153
|
+
max-height: 0;
|
|
7154
|
+
visibility: hidden;
|
|
7155
|
+
opacity: 0;
|
|
7156
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade);
|
|
7157
|
+
transition-duration: var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--fade), var(--pf-v6-c-form__field-group-body--TransitionDuration--collapse--slide), 0s, 0s, 0s, 0s;
|
|
7158
|
+
transition-property: opacity, translate, visibility, max-height, padding-block-start, padding-block-end;
|
|
7159
|
+
translate: 0 var(--pf-v6-c-form__field-group-body--TranslateY);
|
|
7160
|
+
}
|
|
7161
|
+
|
|
7132
7162
|
.pf-v6-c-form__field-group-body > .pf-v6-c-form__field-group:first-child {
|
|
7133
7163
|
--pf-v6-c-form__field-group-toggle--PaddingBlockStart: 0;
|
|
7134
7164
|
--pf-v6-c-form__field-group-header--PaddingBlockStart: 0;
|
|
@@ -22444,10 +22474,13 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22444
22474
|
}
|
|
22445
22475
|
|
|
22446
22476
|
.pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list {
|
|
22477
|
+
max-height: 0;
|
|
22478
|
+
visibility: hidden;
|
|
22447
22479
|
opacity: var(--pf-v6-c-tree-view__list--Opacity);
|
|
22480
|
+
transition-delay: 0s, 0s, var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--fade);
|
|
22448
22481
|
transition-timing-function: var(--pf-v6-c-tree-view__list--TransitionTimingFunction);
|
|
22449
|
-
transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--slide);
|
|
22450
|
-
transition-property: opacity, translate;
|
|
22482
|
+
transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--slide), 0s, 0s;
|
|
22483
|
+
transition-property: opacity, translate, visibility, max-height;
|
|
22451
22484
|
translate: 0 var(--pf-v6-c-tree-view__list--TranslateY);
|
|
22452
22485
|
}
|
|
22453
22486
|
.pf-v6-c-tree-view__list-item .pf-v6-c-tree-view__list-item {
|
|
@@ -22459,8 +22492,11 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22459
22492
|
--pf-v6-c-tree-view__node-toggle-icon--Rotate: var(--pf-v6-c-tree-view__list-item--m-expanded__node-toggle-icon--Rotate);
|
|
22460
22493
|
}
|
|
22461
22494
|
.pf-v6-c-tree-view__list-item.pf-m-expanded > .pf-v6-c-tree-view__list {
|
|
22495
|
+
max-height: 9999px;
|
|
22496
|
+
visibility: revert;
|
|
22462
22497
|
opacity: var(--pf-v6-c-tree-view--m-expanded__list--Opacity);
|
|
22463
|
-
transition-
|
|
22498
|
+
transition-delay: 0s;
|
|
22499
|
+
transition-duration: var(--pf-v6-c-tree-view__list--TransitionDuration--expand--fade), var(--pf-v6-c-tree-view__list--TransitionDuration--expand--slide), 0s, 0s;
|
|
22464
22500
|
translate: 0 var(--pf-v6-c-tree-view--m-expanded__list--TranslateY);
|
|
22465
22501
|
}
|
|
22466
22502
|
|
|
@@ -652,7 +652,7 @@ cssPrefix: pf-v6-c-form
|
|
|
652
652
|
</button>
|
|
653
653
|
</div>
|
|
654
654
|
</div>
|
|
655
|
-
<div class="pf-v6-c-form__field-group-body"
|
|
655
|
+
<div class="pf-v6-c-form__field-group-body" inert>
|
|
656
656
|
<div class="pf-v6-c-form__group">
|
|
657
657
|
<div class="pf-v6-c-form__group-label"><label
|
|
658
658
|
class="pf-v6-c-form__label"
|
|
@@ -748,7 +748,7 @@ cssPrefix: pf-v6-c-form
|
|
|
748
748
|
```html
|
|
749
749
|
<form class="pf-v6-c-form" novalidate>
|
|
750
750
|
<div
|
|
751
|
-
class="pf-v6-c-form__field-group"
|
|
751
|
+
class="pf-v6-c-form__field-group pf-m-expandable"
|
|
752
752
|
role="group"
|
|
753
753
|
aria-labelledby="form-expandable-field-groups-field-group-1-title"
|
|
754
754
|
>
|
|
@@ -787,9 +787,95 @@ cssPrefix: pf-v6-c-form
|
|
|
787
787
|
</button>
|
|
788
788
|
</div>
|
|
789
789
|
</div>
|
|
790
|
+
<div class="pf-v6-c-form__field-group-body" inert>
|
|
791
|
+
<div class="pf-v6-c-form__group">
|
|
792
|
+
<div class="pf-v6-c-form__group-label"><label
|
|
793
|
+
class="pf-v6-c-form__label"
|
|
794
|
+
for="form-expandable-field-groupsform-expandable-field-groups-field-group-1-label1"
|
|
795
|
+
>
|
|
796
|
+
<span class="pf-v6-c-form__label-text">Label 1</span> <span class="pf-v6-c-form__label-required" aria-hidden="true">*</span></label> <span class="pf-v6-c-form__group-label-help">
|
|
797
|
+
<span
|
|
798
|
+
class="pf-v6-c-button pf-m-no-padding pf-m-plain"
|
|
799
|
+
type="button"
|
|
800
|
+
role="button"
|
|
801
|
+
tabindex="0"
|
|
802
|
+
aria-label="More information for label 1 field"
|
|
803
|
+
aria-describedby="form-expandable-field-groupsform-expandable-field-groups-field-group-1-label1"
|
|
804
|
+
>
|
|
805
|
+
<span class="pf-v6-c-button__icon">
|
|
806
|
+
<svg
|
|
807
|
+
class="pf-v6-svg"
|
|
808
|
+
viewBox="0 0 1024 1024"
|
|
809
|
+
fill="currentColor"
|
|
810
|
+
aria-hidden="true"
|
|
811
|
+
role="img"
|
|
812
|
+
width="1em"
|
|
813
|
+
height="1em"
|
|
814
|
+
>
|
|
815
|
+
<path
|
|
816
|
+
d="M521.3,576 C627.5,576 713.7,502 713.7,413.7 C713.7,325.4 627.6,253.6 521.3,253.6 C366,253.6 334.5,337.7 329.2,407.2 C329.2,414.3 335.2,416 343.5,416 L445,416 C450.5,416 458,415.5 460.8,406.5 C460.8,362.6 582.9,357.1 582.9,413.6 C582.9,441.9 556.2,470.9 521.3,473 C486.4,475.1 447.3,479.8 447.3,521.7 L447.3,553.8 C447.3,570.8 456.1,576 472,576 C487.9,576 521.3,576 521.3,576 M575.3,751.3 L575.3,655.3 C575.313862,651.055109 573.620137,646.982962 570.6,644 C567.638831,640.947672 563.552355,639.247987 559.3,639.29884 L463.3,639.29884 C459.055109,639.286138 454.982962,640.979863 452,644 C448.947672,646.961169 447.247987,651.047645 447.29884,655.3 L447.29884,751.3 C447.286138,755.544891 448.979863,759.617038 452,762.6 C454.961169,765.652328 459.047645,767.352013 463.3,767.30116 L559.3,767.30116 C563.544891,767.313862 567.617038,765.620137 570.6,762.6 C573.659349,759.643612 575.360354,755.553963 575.3,751.3 M512,896 C300.2,896 128,723.9 128,512 C128,300.3 300.2,128 512,128 C723.8,128 896,300.2 896,512 C896,723.8 723.7,896 512,896 M512.1,0 C229.7,0 0,229.8 0,512 C0,794.2 229.8,1024 512.1,1024 C794.4,1024 1024,794.3 1024,512 C1024,229.7 794.4,0 512.1,0"
|
|
817
|
+
/>
|
|
818
|
+
</svg>
|
|
819
|
+
</span>
|
|
820
|
+
</span></span>
|
|
821
|
+
</div>
|
|
822
|
+
<div class="pf-v6-c-form__group-control">
|
|
823
|
+
<span class="pf-v6-c-form-control pf-m-required">
|
|
824
|
+
<input
|
|
825
|
+
required
|
|
826
|
+
type="text"
|
|
827
|
+
id="form-expandable-field-groupsform-expandable-field-groups-field-group-1-label1"
|
|
828
|
+
name="form-expandable-field-groupsform-expandable-field-groups-field-group-1-label1"
|
|
829
|
+
/>
|
|
830
|
+
</span>
|
|
831
|
+
</div>
|
|
832
|
+
</div>
|
|
833
|
+
<div class="pf-v6-c-form__group">
|
|
834
|
+
<div class="pf-v6-c-form__group-label"><label
|
|
835
|
+
class="pf-v6-c-form__label"
|
|
836
|
+
for="form-expandable-field-groupsform-expandable-field-groups-field-group-1-label2"
|
|
837
|
+
>
|
|
838
|
+
<span class="pf-v6-c-form__label-text">Label 2</span> <span class="pf-v6-c-form__label-required" aria-hidden="true">*</span></label> <span class="pf-v6-c-form__group-label-help">
|
|
839
|
+
<span
|
|
840
|
+
class="pf-v6-c-button pf-m-no-padding pf-m-plain"
|
|
841
|
+
type="button"
|
|
842
|
+
role="button"
|
|
843
|
+
tabindex="0"
|
|
844
|
+
aria-label="More information for label 2 field"
|
|
845
|
+
aria-describedby="form-expandable-field-groupsform-expandable-field-groups-field-group-1-label2"
|
|
846
|
+
>
|
|
847
|
+
<span class="pf-v6-c-button__icon">
|
|
848
|
+
<svg
|
|
849
|
+
class="pf-v6-svg"
|
|
850
|
+
viewBox="0 0 1024 1024"
|
|
851
|
+
fill="currentColor"
|
|
852
|
+
aria-hidden="true"
|
|
853
|
+
role="img"
|
|
854
|
+
width="1em"
|
|
855
|
+
height="1em"
|
|
856
|
+
>
|
|
857
|
+
<path
|
|
858
|
+
d="M521.3,576 C627.5,576 713.7,502 713.7,413.7 C713.7,325.4 627.6,253.6 521.3,253.6 C366,253.6 334.5,337.7 329.2,407.2 C329.2,414.3 335.2,416 343.5,416 L445,416 C450.5,416 458,415.5 460.8,406.5 C460.8,362.6 582.9,357.1 582.9,413.6 C582.9,441.9 556.2,470.9 521.3,473 C486.4,475.1 447.3,479.8 447.3,521.7 L447.3,553.8 C447.3,570.8 456.1,576 472,576 C487.9,576 521.3,576 521.3,576 M575.3,751.3 L575.3,655.3 C575.313862,651.055109 573.620137,646.982962 570.6,644 C567.638831,640.947672 563.552355,639.247987 559.3,639.29884 L463.3,639.29884 C459.055109,639.286138 454.982962,640.979863 452,644 C448.947672,646.961169 447.247987,651.047645 447.29884,655.3 L447.29884,751.3 C447.286138,755.544891 448.979863,759.617038 452,762.6 C454.961169,765.652328 459.047645,767.352013 463.3,767.30116 L559.3,767.30116 C563.544891,767.313862 567.617038,765.620137 570.6,762.6 C573.659349,759.643612 575.360354,755.553963 575.3,751.3 M512,896 C300.2,896 128,723.9 128,512 C128,300.3 300.2,128 512,128 C723.8,128 896,300.2 896,512 C896,723.8 723.7,896 512,896 M512.1,0 C229.7,0 0,229.8 0,512 C0,794.2 229.8,1024 512.1,1024 C794.4,1024 1024,794.3 1024,512 C1024,229.7 794.4,0 512.1,0"
|
|
859
|
+
/>
|
|
860
|
+
</svg>
|
|
861
|
+
</span>
|
|
862
|
+
</span></span>
|
|
863
|
+
</div>
|
|
864
|
+
<div class="pf-v6-c-form__group-control">
|
|
865
|
+
<span class="pf-v6-c-form-control pf-m-required">
|
|
866
|
+
<input
|
|
867
|
+
required
|
|
868
|
+
type="text"
|
|
869
|
+
id="form-expandable-field-groupsform-expandable-field-groups-field-group-1-label2"
|
|
870
|
+
name="form-expandable-field-groupsform-expandable-field-groups-field-group-1-label2"
|
|
871
|
+
/>
|
|
872
|
+
</span>
|
|
873
|
+
</div>
|
|
874
|
+
</div>
|
|
875
|
+
</div>
|
|
790
876
|
</div>
|
|
791
877
|
<div
|
|
792
|
-
class="pf-v6-c-form__field-group pf-m-expanded"
|
|
878
|
+
class="pf-v6-c-form__field-group pf-m-expandable pf-m-expanded"
|
|
793
879
|
role="group"
|
|
794
880
|
aria-labelledby="form-expandable-field-groups-field-group-2-title"
|
|
795
881
|
>
|
|
@@ -910,7 +996,7 @@ cssPrefix: pf-v6-c-form
|
|
|
910
996
|
</div>
|
|
911
997
|
</div>
|
|
912
998
|
<div
|
|
913
|
-
class="pf-v6-c-form__field-group
|
|
999
|
+
class="pf-v6-c-form__field-group"
|
|
914
1000
|
role="group"
|
|
915
1001
|
aria-labelledby="form-expandable-field-groups-field-group-3-title"
|
|
916
1002
|
>
|
|
@@ -924,7 +1010,7 @@ cssPrefix: pf-v6-c-form
|
|
|
924
1010
|
</div>
|
|
925
1011
|
</div>
|
|
926
1012
|
</div>
|
|
927
|
-
<div class="pf-v6-c-form__field-group-body">
|
|
1013
|
+
<div class="pf-v6-c-form__field-group-body" inert>
|
|
928
1014
|
<div class="pf-v6-c-form__group">
|
|
929
1015
|
<div class="pf-v6-c-form__group-label"><label
|
|
930
1016
|
class="pf-v6-c-form__label"
|
|
@@ -1088,5 +1174,6 @@ To avoid the form label's required indicator or help tooltip icon from wrapping
|
|
|
1088
1174
|
| `.pf-m-no-padding-top` | `.pf-v6-c-form__group-label` | Removes top padding from the label element for labels adjacent to an element that isn't a form control. |
|
|
1089
1175
|
| `.pf-m-inline` | `.pf-v6-c-form__group-control` | Modifies form group children to be inline (this is primarily for radio buttons and checkboxes). |
|
|
1090
1176
|
| `.pf-m-stack` | `.pf-v6-c-form__group-control` | Modifies form group children to be stacked with space between children. |
|
|
1177
|
+
| `.pf-m-expandable` | `.pf-v6-c-form__field-group` | Modifies a field group to be expandable. Currently used as the opt-in for animating the expanded state. |
|
|
1091
1178
|
| `.pf-m-expanded` | `.pf-v6-c-form__field-group` | Modifies an expandable field group for the expanded state. |
|
|
1092
1179
|
| `--pf-v6-c-form--m-limit-width--MaxWidth` | `.pf-v6-c-form.pf-m-limit-width` | Sets a custom `max-width` for a width limited form. |
|