@patternfly/patternfly 6.3.0-prerelease.61 → 6.3.0-prerelease.63
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/Tabs/tabs.css +10 -6
- package/components/Tabs/tabs.scss +10 -9
- package/components/Toolbar/toolbar.css +7 -0
- package/components/Toolbar/toolbar.scss +7 -0
- package/components/Wizard/wizard.css +4 -0
- package/components/Wizard/wizard.scss +6 -2
- package/components/_index.css +21 -6
- package/docs/components/CodeBlock/examples/CodeBlock.md +6 -0
- package/docs/components/ExpandableSection/examples/ExpandableSection.md +75 -7
- package/docs/components/MultipleFileUpload/examples/MultipleFileUpload.md +22 -4
- package/package.json +1 -1
- package/patternfly-no-globals.css +21 -6
- package/patternfly.css +21 -6
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/components/Tabs/tabs.css
CHANGED
|
@@ -85,11 +85,15 @@
|
|
|
85
85
|
--pf-v6-c-tabs__link--before--BorderInlineEndWidth: 0;
|
|
86
86
|
--pf-v6-c-tabs__link--before--BorderBlockEndWidth: 0;
|
|
87
87
|
--pf-v6-c-tabs__link--before--BorderInlineStartWidth: 0;
|
|
88
|
-
--pf-v6-c-
|
|
88
|
+
--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartColor: var(--pf-t--global--border--color--high-contrast);
|
|
89
|
+
--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
90
|
+
--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
91
|
+
--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
89
92
|
--pf-v6-c-tabs__link--disabled--before--BorderInlineEndWidth: 0;
|
|
90
93
|
--pf-v6-c-tabs__link--disabled--before--BorderBlockEndWidth: var(--pf-v6-c-tabs--before--border-width--base);
|
|
91
94
|
--pf-v6-c-tabs__link--disabled--before--BorderInlineStartWidth: 0;
|
|
92
95
|
--pf-v6-c-tabs__link--after--InsetBlockStart: auto;
|
|
96
|
+
--pf-v6-c-tabs__link--after--InsetInlineStart: 0;
|
|
93
97
|
--pf-v6-c-tabs__link--after--InsetInlineEnd: 0;
|
|
94
98
|
--pf-v6-c-tabs__link--after--InsetBlockEnd: 0;
|
|
95
99
|
--pf-v6-c-tabs__link--after--BorderColor: var(--pf-t--global--border--color--default);
|
|
@@ -245,6 +249,10 @@
|
|
|
245
249
|
.pf-v6-c-tabs.pf-m-box .pf-v6-c-tabs__item.pf-m-current {
|
|
246
250
|
--pf-v6-c-tabs__link--BackgroundColor: var(--pf-v6-c-tabs__item--m-current__link--BackgroundColor);
|
|
247
251
|
--pf-v6-c-tabs__link--before--BorderBlockEndColor: var(--pf-v6-c-tabs__link--BackgroundColor);
|
|
252
|
+
--pf-v6-c-tabs__link--before--BorderInlineStartColor: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartColor);
|
|
253
|
+
--pf-v6-c-tabs__link--before--BorderInlineStartWidth: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartWidth);
|
|
254
|
+
--pf-v6-c-tabs__link--before--BorderInlineEndColor: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndColor);
|
|
255
|
+
--pf-v6-c-tabs__link--before--BorderInlineEndWidth: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndWidth);
|
|
248
256
|
}
|
|
249
257
|
.pf-v6-c-tabs.pf-m-box.pf-m-scrollable .pf-v6-c-tabs__item.pf-m-current:first-child .pf-v6-c-tabs__link::before {
|
|
250
258
|
inset-inline-start: calc(var(--pf-v6-c-tabs__link--before--border-width--base) * -1);
|
|
@@ -252,9 +260,6 @@
|
|
|
252
260
|
.pf-v6-c-tabs.pf-m-box.pf-m-scrollable .pf-v6-c-tabs__scroll-button:nth-of-type(2)::before {
|
|
253
261
|
inset-inline-start: calc(var(--pf-v6-c-tabs__link--before--border-width--base) * -1);
|
|
254
262
|
}
|
|
255
|
-
.pf-v6-c-tabs.pf-m-box .pf-v6-c-tabs__item.pf-m-current + .pf-v6-c-tabs__item {
|
|
256
|
-
--pf-v6-c-tabs__link--before--InsetInlineStart: 0;
|
|
257
|
-
}
|
|
258
263
|
.pf-v6-c-tabs.pf-m-box.pf-m-secondary {
|
|
259
264
|
--pf-v6-c-tabs__item--BackgroundColor: var(--pf-v6-c-tabs--m-box--m-secondary__item--BackgroundColor);
|
|
260
265
|
--pf-v6-c-tabs__item--m-current--BackgroundColor: var(--pf-v6-c-tabs--m-box--m-secondary__item--m-current--BackgroundColor);
|
|
@@ -272,7 +277,6 @@
|
|
|
272
277
|
--pf-v6-c-tabs__item--PaddingInlineEnd: var(--pf-v6-c-tabs--m-vertical__item--PaddingInlineEnd);
|
|
273
278
|
--pf-v6-c-tabs__link--PaddingInlineStart: var(--pf-v6-c-tabs--m-vertical__link--PaddingInlineStart);
|
|
274
279
|
--pf-v6-c-tabs__link--PaddingInlineEnd: var(--pf-v6-c-tabs--m-vertical__link--PaddingInlineEnd);
|
|
275
|
-
--pf-v6-c-tabs__link--before--InsetInlineStart: 0;
|
|
276
280
|
--pf-v6-c-tabs__link--disabled--before--BorderBlockEndWidth: 0;
|
|
277
281
|
--pf-v6-c-tabs__link--disabled--before--BorderInlineStartWidth: var(--pf-v6-c-tabs--before--border-width--base);
|
|
278
282
|
--pf-v6-c-tabs__link--after--InsetBlockStart: 0;
|
|
@@ -572,7 +576,7 @@
|
|
|
572
576
|
.pf-v6-c-tabs__item.pf-m-action::after, .pf-v6-c-tabs__link::after {
|
|
573
577
|
inset-block-start: var(--pf-v6-c-tabs__link--after--InsetBlockStart);
|
|
574
578
|
inset-block-end: var(--pf-v6-c-tabs__link--after--InsetBlockEnd);
|
|
575
|
-
inset-inline-start: var(--pf-v6-c-tabs__link--before--InsetInlineStart);
|
|
579
|
+
inset-inline-start: var(--pf-v6-c-tabs__link--before--InsetInlineStart, var(--pf-v6-c-tabs__link--after--InsetInlineStart));
|
|
576
580
|
inset-inline-end: var(--pf-v6-c-tabs__link--after--InsetInlineEnd);
|
|
577
581
|
border-color: var(--pf-v6-c-tabs__link--after--BorderColor);
|
|
578
582
|
border-block-start-width: var(--pf-v6-c-tabs__link--after--BorderBlockStartWidth);
|
|
@@ -107,13 +107,17 @@ $pf-v6-c-tabs--spacer-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2xl
|
|
|
107
107
|
--#{$tabs}__link--before--BorderInlineEndWidth: 0;
|
|
108
108
|
--#{$tabs}__link--before--BorderBlockEndWidth: 0;
|
|
109
109
|
--#{$tabs}__link--before--BorderInlineStartWidth: 0;
|
|
110
|
-
--#{$tabs}
|
|
110
|
+
--#{$tabs}--m-box__link--m-current--before--BorderInlineStartColor: var(--pf-t--global--border--color--high-contrast);
|
|
111
|
+
--#{$tabs}--m-box__link--m-current--before--BorderInlineStartWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
112
|
+
--#{$tabs}--m-box__link--m-current--before--BorderInlineEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
113
|
+
--#{$tabs}--m-box__link--m-current--before--BorderInlineEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
111
114
|
--#{$tabs}__link--disabled--before--BorderInlineEndWidth: 0;
|
|
112
115
|
--#{$tabs}__link--disabled--before--BorderBlockEndWidth: var(--#{$tabs}--before--border-width--base);
|
|
113
116
|
--#{$tabs}__link--disabled--before--BorderInlineStartWidth: 0;
|
|
114
117
|
|
|
115
118
|
// Link after
|
|
116
119
|
--#{$tabs}__link--after--InsetBlockStart: auto;
|
|
120
|
+
--#{$tabs}__link--after--InsetInlineStart: 0;
|
|
117
121
|
--#{$tabs}__link--after--InsetInlineEnd: 0;
|
|
118
122
|
--#{$tabs}__link--after--InsetBlockEnd: 0;
|
|
119
123
|
--#{$tabs}__link--after--BorderColor: var(--pf-t--global--border--color--default);
|
|
@@ -311,6 +315,10 @@ $pf-v6-c-tabs--spacer-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2xl
|
|
|
311
315
|
.#{$tabs}__item.pf-m-current {
|
|
312
316
|
--#{$tabs}__link--BackgroundColor: var(--#{$tabs}__item--m-current__link--BackgroundColor);
|
|
313
317
|
--#{$tabs}__link--before--BorderBlockEndColor: var(--#{$tabs}__link--BackgroundColor);
|
|
318
|
+
--#{$tabs}__link--before--BorderInlineStartColor: var(--#{$tabs}--m-box__link--m-current--before--BorderInlineStartColor);
|
|
319
|
+
--#{$tabs}__link--before--BorderInlineStartWidth: var(--#{$tabs}--m-box__link--m-current--before--BorderInlineStartWidth);
|
|
320
|
+
--#{$tabs}__link--before--BorderInlineEndColor: var(--#{$tabs}--m-box__link--m-current--before--BorderInlineEndColor);
|
|
321
|
+
--#{$tabs}__link--before--BorderInlineEndWidth: var(--#{$tabs}--m-box__link--m-current--before--BorderInlineEndWidth);
|
|
314
322
|
}
|
|
315
323
|
|
|
316
324
|
// stylelint-disable
|
|
@@ -326,12 +334,6 @@ $pf-v6-c-tabs--spacer-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2xl
|
|
|
326
334
|
}
|
|
327
335
|
// stylelint-enable
|
|
328
336
|
|
|
329
|
-
// stylelint-disable selector-max-class
|
|
330
|
-
// Remove offset from current adjacent item
|
|
331
|
-
.#{$tabs}__item.pf-m-current + .#{$tabs}__item {
|
|
332
|
-
--#{$tabs}__link--before--InsetInlineStart: 0;
|
|
333
|
-
}
|
|
334
|
-
// stylelint-enable
|
|
335
337
|
|
|
336
338
|
&.pf-m-secondary {
|
|
337
339
|
--#{$tabs}__item--BackgroundColor: var(--#{$tabs}--m-box--m-secondary__item--BackgroundColor);
|
|
@@ -353,7 +355,6 @@ $pf-v6-c-tabs--spacer-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2xl
|
|
|
353
355
|
--#{$tabs}__item--PaddingInlineEnd: var(--#{$tabs}--m-vertical__item--PaddingInlineEnd);
|
|
354
356
|
--#{$tabs}__link--PaddingInlineStart: var(--#{$tabs}--m-vertical__link--PaddingInlineStart);
|
|
355
357
|
--#{$tabs}__link--PaddingInlineEnd: var(--#{$tabs}--m-vertical__link--PaddingInlineEnd);
|
|
356
|
-
--#{$tabs}__link--before--InsetInlineStart: 0;
|
|
357
358
|
--#{$tabs}__link--disabled--before--BorderBlockEndWidth: 0;
|
|
358
359
|
--#{$tabs}__link--disabled--before--BorderInlineStartWidth: var(--#{$tabs}--before--border-width--base);
|
|
359
360
|
--#{$tabs}__link--after--InsetBlockStart: 0;
|
|
@@ -658,7 +659,7 @@ $pf-v6-c-tabs--spacer-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2xl
|
|
|
658
659
|
&::after {
|
|
659
660
|
inset-block-start: var(--#{$tabs}__link--after--InsetBlockStart);
|
|
660
661
|
inset-block-end: var(--#{$tabs}__link--after--InsetBlockEnd);
|
|
661
|
-
inset-inline-start: var(--#{$tabs}__link--before--InsetInlineStart); //
|
|
662
|
+
inset-inline-start: var(--#{$tabs}__link--before--InsetInlineStart, var(--#{$tabs}__link--after--InsetInlineStart)); // TODO remove fallback in breaking change in favor of var(--#{$tabs}__link--after--InsetInlineStart)
|
|
662
663
|
inset-inline-end: var(--#{$tabs}__link--after--InsetInlineEnd);
|
|
663
664
|
border-color: var(--#{$tabs}__link--after--BorderColor);
|
|
664
665
|
border-block-start-width: var(--#{$tabs}__link--after--BorderBlockStartWidth);
|
|
@@ -31,11 +31,15 @@
|
|
|
31
31
|
--pf-v6-c-toolbar__expandable-content--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
32
32
|
--pf-v6-c-toolbar__expandable-content--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
|
|
33
33
|
--pf-v6-c-toolbar__expandable-content--BackgroundColor: var(--pf-t--global--background--color--floating--default);
|
|
34
|
+
--pf-v6-c-toolbar__expandable-content--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
35
|
+
--pf-v6-c-toolbar__expandable-content--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
34
36
|
--pf-v6-c-toolbar--m-sticky--ZIndex: var(--pf-t--global--z-index--xs);
|
|
35
37
|
--pf-v6-c-toolbar--m-sticky--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
36
38
|
--pf-v6-c-toolbar--m-sticky--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
37
39
|
--pf-v6-c-toolbar--m-sticky--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
|
|
38
40
|
--pf-v6-c-toolbar--m-sticky--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
41
|
+
--pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
42
|
+
--pf-v6-c-toolbar--m-sticky--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
39
43
|
--pf-v6-c-toolbar__expand-all-icon--Rotate: 0;
|
|
40
44
|
--pf-v6-c-toolbar__expand-all-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
41
45
|
--pf-v6-c-toolbar__expand-all-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
@@ -206,6 +210,7 @@
|
|
|
206
210
|
z-index: var(--pf-v6-c-toolbar--m-sticky--ZIndex);
|
|
207
211
|
padding-block-start: var(--pf-v6-c-toolbar--m-sticky--PaddingBlockStart);
|
|
208
212
|
padding-block-end: var(--pf-v6-c-toolbar--m-sticky--PaddingBlockEnd);
|
|
213
|
+
border-block-end: var(--pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth) solid var(--pf-v6-c-toolbar--m-sticky--BorderBlockEndColor);
|
|
209
214
|
box-shadow: var(--pf-v6-c-toolbar--m-sticky--BoxShadow);
|
|
210
215
|
}
|
|
211
216
|
.pf-v6-c-toolbar.pf-m-static,
|
|
@@ -352,12 +357,14 @@
|
|
|
352
357
|
padding-inline-start: var(--pf-v6-c-toolbar__expandable-content--PaddingInlineStart);
|
|
353
358
|
padding-inline-end: var(--pf-v6-c-toolbar__expandable-content--PaddingInlineEnd);
|
|
354
359
|
background-color: var(--pf-v6-c-toolbar__expandable-content--BackgroundColor);
|
|
360
|
+
border-block-end: var(--pf-v6-c-toolbar__expandable-content--BorderBlockEndWidth) solid var(--pf-v6-c-toolbar__expandable-content--BorderBlockEndColor);
|
|
355
361
|
box-shadow: var(--pf-v6-c-toolbar__expandable-content--BoxShadow);
|
|
356
362
|
}
|
|
357
363
|
@media screen and (min-width: 62rem) {
|
|
358
364
|
.pf-v6-c-toolbar__expandable-content {
|
|
359
365
|
position: static;
|
|
360
366
|
padding: 0;
|
|
367
|
+
border-block-end: 0;
|
|
361
368
|
box-shadow: none;
|
|
362
369
|
}
|
|
363
370
|
}
|
|
@@ -57,6 +57,8 @@ $pf-v6--include-toolbar-breakpoints: true !default;
|
|
|
57
57
|
--#{$toolbar}__expandable-content--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
58
58
|
--#{$toolbar}__expandable-content--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
|
|
59
59
|
--#{$toolbar}__expandable-content--BackgroundColor: var(--pf-t--global--background--color--floating--default);
|
|
60
|
+
--#{$toolbar}__expandable-content--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
61
|
+
--#{$toolbar}__expandable-content--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
60
62
|
|
|
61
63
|
// * Toolbar sticky
|
|
62
64
|
--#{$toolbar}--m-sticky--ZIndex: var(--pf-t--global--z-index--xs);
|
|
@@ -64,6 +66,8 @@ $pf-v6--include-toolbar-breakpoints: true !default;
|
|
|
64
66
|
--#{$toolbar}--m-sticky--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
65
67
|
--#{$toolbar}--m-sticky--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
|
|
66
68
|
--#{$toolbar}--m-sticky--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
69
|
+
--#{$toolbar}--m-sticky--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
70
|
+
--#{$toolbar}--m-sticky--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
67
71
|
|
|
68
72
|
// * Toolbar expand all
|
|
69
73
|
--#{$toolbar}__expand-all-icon--Rotate: 0;
|
|
@@ -142,6 +146,7 @@ $pf-v6--include-toolbar-breakpoints: true !default;
|
|
|
142
146
|
z-index: var(--#{$toolbar}--m-sticky--ZIndex);
|
|
143
147
|
padding-block-start: var(--#{$toolbar}--m-sticky--PaddingBlockStart);
|
|
144
148
|
padding-block-end: var(--#{$toolbar}--m-sticky--PaddingBlockEnd);
|
|
149
|
+
border-block-end: var(--#{$toolbar}--m-sticky--BorderBlockEndWidth) solid var(--#{$toolbar}--m-sticky--BorderBlockEndColor);
|
|
145
150
|
box-shadow: var(--#{$toolbar}--m-sticky--BoxShadow);
|
|
146
151
|
}
|
|
147
152
|
|
|
@@ -280,11 +285,13 @@ $pf-v6--include-toolbar-breakpoints: true !default;
|
|
|
280
285
|
padding-inline-start: var(--#{$toolbar}__expandable-content--PaddingInlineStart);
|
|
281
286
|
padding-inline-end: var(--#{$toolbar}__expandable-content--PaddingInlineEnd);
|
|
282
287
|
background-color: var(--#{$toolbar}__expandable-content--BackgroundColor);
|
|
288
|
+
border-block-end: var(--#{$toolbar}__expandable-content--BorderBlockEndWidth) solid var(--#{$toolbar}__expandable-content--BorderBlockEndColor);
|
|
283
289
|
box-shadow: var(--#{$toolbar}__expandable-content--BoxShadow);
|
|
284
290
|
|
|
285
291
|
@media screen and (min-width: $pf-v6-global--breakpoint--lg) {
|
|
286
292
|
position: static;
|
|
287
293
|
padding: 0;
|
|
294
|
+
border-block-end: 0;
|
|
288
295
|
box-shadow: none;
|
|
289
296
|
}
|
|
290
297
|
|
|
@@ -94,6 +94,8 @@
|
|
|
94
94
|
--pf-v6-c-wizard__toggle--m-expanded__toggle-icon--Rotate: 180deg;
|
|
95
95
|
--pf-v6-c-wizard__nav--ZIndex: var(--pf-t--global--z-index--sm);
|
|
96
96
|
--pf-v6-c-wizard__nav--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
97
|
+
--pf-v6-c-wizard__nav--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
98
|
+
--pf-v6-c-wizard__nav--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
97
99
|
--pf-v6-c-wizard__nav--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
|
|
98
100
|
--pf-v6-c-wizard__nav--Width: 100%;
|
|
99
101
|
--pf-v6-c-wizard__nav--lg--Width: 15.625rem;
|
|
@@ -127,6 +129,7 @@
|
|
|
127
129
|
.pf-v6-c-wizard {
|
|
128
130
|
--pf-v6-c-wizard__nav--Width: var(--pf-v6-c-wizard__nav--lg--Width);
|
|
129
131
|
--pf-v6-c-wizard__nav--BoxShadow: none;
|
|
132
|
+
--pf-v6-c-wizard__nav--BorderBlockEndWidth: 0;
|
|
130
133
|
}
|
|
131
134
|
}
|
|
132
135
|
|
|
@@ -313,6 +316,7 @@
|
|
|
313
316
|
overflow-y: auto;
|
|
314
317
|
-webkit-overflow-scrolling: touch;
|
|
315
318
|
background-color: var(--pf-v6-c-wizard__nav--BackgroundColor);
|
|
319
|
+
border-block-end: var(--pf-v6-c-wizard__nav--BorderBlockEndWidth) solid var(--pf-v6-c-wizard__nav--BorderBlockEndColor);
|
|
316
320
|
box-shadow: var(--pf-v6-c-wizard__nav--BoxShadow);
|
|
317
321
|
}
|
|
318
322
|
.pf-v6-c-wizard__nav.pf-m-expanded {
|
|
@@ -138,6 +138,8 @@
|
|
|
138
138
|
// Nav
|
|
139
139
|
--#{$wizard}__nav--ZIndex: var(--pf-t--global--z-index--sm);
|
|
140
140
|
--#{$wizard}__nav--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
141
|
+
--#{$wizard}__nav--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
142
|
+
--#{$wizard}__nav--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
141
143
|
--#{$wizard}__nav--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
|
|
142
144
|
--#{$wizard}__nav--Width: 100%;
|
|
143
145
|
--#{$wizard}__nav--lg--Width: #{pf-size-prem(250px)};
|
|
@@ -147,6 +149,7 @@
|
|
|
147
149
|
@media screen and (min-width: $pf-v6-global--breakpoint--lg) {
|
|
148
150
|
--#{$wizard}__nav--Width: var(--#{$wizard}__nav--lg--Width);
|
|
149
151
|
--#{$wizard}__nav--BoxShadow: none;
|
|
152
|
+
--#{$wizard}__nav--BorderBlockEndWidth: 0;
|
|
150
153
|
}
|
|
151
154
|
|
|
152
155
|
// Nav list (nested)
|
|
@@ -371,8 +374,8 @@
|
|
|
371
374
|
|
|
372
375
|
.#{$wizard}__nav {
|
|
373
376
|
position: absolute;
|
|
374
|
-
|
|
375
|
-
|
|
377
|
+
inset-block-start: 0;
|
|
378
|
+
inset-inline-start: 0;
|
|
376
379
|
z-index: var(--#{$wizard}__nav--ZIndex);
|
|
377
380
|
display: none;
|
|
378
381
|
width: var(--#{$wizard}__nav--Width);
|
|
@@ -380,6 +383,7 @@
|
|
|
380
383
|
overflow-y: auto;
|
|
381
384
|
-webkit-overflow-scrolling: touch;
|
|
382
385
|
background-color: var(--#{$wizard}__nav--BackgroundColor);
|
|
386
|
+
border-block-end: var(--#{$wizard}__nav--BorderBlockEndWidth) solid var(--#{$wizard}__nav--BorderBlockEndColor);
|
|
383
387
|
box-shadow: var(--#{$wizard}__nav--BoxShadow);
|
|
384
388
|
|
|
385
389
|
&.pf-m-expanded {
|
package/components/_index.css
CHANGED
|
@@ -19505,11 +19505,15 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
19505
19505
|
--pf-v6-c-tabs__link--before--BorderInlineEndWidth: 0;
|
|
19506
19506
|
--pf-v6-c-tabs__link--before--BorderBlockEndWidth: 0;
|
|
19507
19507
|
--pf-v6-c-tabs__link--before--BorderInlineStartWidth: 0;
|
|
19508
|
-
--pf-v6-c-
|
|
19508
|
+
--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartColor: var(--pf-t--global--border--color--high-contrast);
|
|
19509
|
+
--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
19510
|
+
--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
19511
|
+
--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
19509
19512
|
--pf-v6-c-tabs__link--disabled--before--BorderInlineEndWidth: 0;
|
|
19510
19513
|
--pf-v6-c-tabs__link--disabled--before--BorderBlockEndWidth: var(--pf-v6-c-tabs--before--border-width--base);
|
|
19511
19514
|
--pf-v6-c-tabs__link--disabled--before--BorderInlineStartWidth: 0;
|
|
19512
19515
|
--pf-v6-c-tabs__link--after--InsetBlockStart: auto;
|
|
19516
|
+
--pf-v6-c-tabs__link--after--InsetInlineStart: 0;
|
|
19513
19517
|
--pf-v6-c-tabs__link--after--InsetInlineEnd: 0;
|
|
19514
19518
|
--pf-v6-c-tabs__link--after--InsetBlockEnd: 0;
|
|
19515
19519
|
--pf-v6-c-tabs__link--after--BorderColor: var(--pf-t--global--border--color--default);
|
|
@@ -19665,6 +19669,10 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
19665
19669
|
.pf-v6-c-tabs.pf-m-box .pf-v6-c-tabs__item.pf-m-current {
|
|
19666
19670
|
--pf-v6-c-tabs__link--BackgroundColor: var(--pf-v6-c-tabs__item--m-current__link--BackgroundColor);
|
|
19667
19671
|
--pf-v6-c-tabs__link--before--BorderBlockEndColor: var(--pf-v6-c-tabs__link--BackgroundColor);
|
|
19672
|
+
--pf-v6-c-tabs__link--before--BorderInlineStartColor: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartColor);
|
|
19673
|
+
--pf-v6-c-tabs__link--before--BorderInlineStartWidth: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineStartWidth);
|
|
19674
|
+
--pf-v6-c-tabs__link--before--BorderInlineEndColor: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndColor);
|
|
19675
|
+
--pf-v6-c-tabs__link--before--BorderInlineEndWidth: var(--pf-v6-c-tabs--m-box__link--m-current--before--BorderInlineEndWidth);
|
|
19668
19676
|
}
|
|
19669
19677
|
.pf-v6-c-tabs.pf-m-box.pf-m-scrollable .pf-v6-c-tabs__item.pf-m-current:first-child .pf-v6-c-tabs__link::before {
|
|
19670
19678
|
inset-inline-start: calc(var(--pf-v6-c-tabs__link--before--border-width--base) * -1);
|
|
@@ -19672,9 +19680,6 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
19672
19680
|
.pf-v6-c-tabs.pf-m-box.pf-m-scrollable .pf-v6-c-tabs__scroll-button:nth-of-type(2)::before {
|
|
19673
19681
|
inset-inline-start: calc(var(--pf-v6-c-tabs__link--before--border-width--base) * -1);
|
|
19674
19682
|
}
|
|
19675
|
-
.pf-v6-c-tabs.pf-m-box .pf-v6-c-tabs__item.pf-m-current + .pf-v6-c-tabs__item {
|
|
19676
|
-
--pf-v6-c-tabs__link--before--InsetInlineStart: 0;
|
|
19677
|
-
}
|
|
19678
19683
|
.pf-v6-c-tabs.pf-m-box.pf-m-secondary {
|
|
19679
19684
|
--pf-v6-c-tabs__item--BackgroundColor: var(--pf-v6-c-tabs--m-box--m-secondary__item--BackgroundColor);
|
|
19680
19685
|
--pf-v6-c-tabs__item--m-current--BackgroundColor: var(--pf-v6-c-tabs--m-box--m-secondary__item--m-current--BackgroundColor);
|
|
@@ -19692,7 +19697,6 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
19692
19697
|
--pf-v6-c-tabs__item--PaddingInlineEnd: var(--pf-v6-c-tabs--m-vertical__item--PaddingInlineEnd);
|
|
19693
19698
|
--pf-v6-c-tabs__link--PaddingInlineStart: var(--pf-v6-c-tabs--m-vertical__link--PaddingInlineStart);
|
|
19694
19699
|
--pf-v6-c-tabs__link--PaddingInlineEnd: var(--pf-v6-c-tabs--m-vertical__link--PaddingInlineEnd);
|
|
19695
|
-
--pf-v6-c-tabs__link--before--InsetInlineStart: 0;
|
|
19696
19700
|
--pf-v6-c-tabs__link--disabled--before--BorderBlockEndWidth: 0;
|
|
19697
19701
|
--pf-v6-c-tabs__link--disabled--before--BorderInlineStartWidth: var(--pf-v6-c-tabs--before--border-width--base);
|
|
19698
19702
|
--pf-v6-c-tabs__link--after--InsetBlockStart: 0;
|
|
@@ -19992,7 +19996,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
19992
19996
|
.pf-v6-c-tabs__item.pf-m-action::after, .pf-v6-c-tabs__link::after {
|
|
19993
19997
|
inset-block-start: var(--pf-v6-c-tabs__link--after--InsetBlockStart);
|
|
19994
19998
|
inset-block-end: var(--pf-v6-c-tabs__link--after--InsetBlockEnd);
|
|
19995
|
-
inset-inline-start: var(--pf-v6-c-tabs__link--before--InsetInlineStart);
|
|
19999
|
+
inset-inline-start: var(--pf-v6-c-tabs__link--before--InsetInlineStart, var(--pf-v6-c-tabs__link--after--InsetInlineStart));
|
|
19996
20000
|
inset-inline-end: var(--pf-v6-c-tabs__link--after--InsetInlineEnd);
|
|
19997
20001
|
border-color: var(--pf-v6-c-tabs__link--after--BorderColor);
|
|
19998
20002
|
border-block-start-width: var(--pf-v6-c-tabs__link--after--BorderBlockStartWidth);
|
|
@@ -20943,11 +20947,15 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
20943
20947
|
--pf-v6-c-toolbar__expandable-content--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
20944
20948
|
--pf-v6-c-toolbar__expandable-content--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
|
|
20945
20949
|
--pf-v6-c-toolbar__expandable-content--BackgroundColor: var(--pf-t--global--background--color--floating--default);
|
|
20950
|
+
--pf-v6-c-toolbar__expandable-content--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
20951
|
+
--pf-v6-c-toolbar__expandable-content--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
20946
20952
|
--pf-v6-c-toolbar--m-sticky--ZIndex: var(--pf-t--global--z-index--xs);
|
|
20947
20953
|
--pf-v6-c-toolbar--m-sticky--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
20948
20954
|
--pf-v6-c-toolbar--m-sticky--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
20949
20955
|
--pf-v6-c-toolbar--m-sticky--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
|
|
20950
20956
|
--pf-v6-c-toolbar--m-sticky--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
20957
|
+
--pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
20958
|
+
--pf-v6-c-toolbar--m-sticky--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
20951
20959
|
--pf-v6-c-toolbar__expand-all-icon--Rotate: 0;
|
|
20952
20960
|
--pf-v6-c-toolbar__expand-all-icon--TransitionDuration: var(--pf-t--global--motion--duration--icon--default);
|
|
20953
20961
|
--pf-v6-c-toolbar__expand-all-icon--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
|
|
@@ -21118,6 +21126,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
21118
21126
|
z-index: var(--pf-v6-c-toolbar--m-sticky--ZIndex);
|
|
21119
21127
|
padding-block-start: var(--pf-v6-c-toolbar--m-sticky--PaddingBlockStart);
|
|
21120
21128
|
padding-block-end: var(--pf-v6-c-toolbar--m-sticky--PaddingBlockEnd);
|
|
21129
|
+
border-block-end: var(--pf-v6-c-toolbar--m-sticky--BorderBlockEndWidth) solid var(--pf-v6-c-toolbar--m-sticky--BorderBlockEndColor);
|
|
21121
21130
|
box-shadow: var(--pf-v6-c-toolbar--m-sticky--BoxShadow);
|
|
21122
21131
|
}
|
|
21123
21132
|
.pf-v6-c-toolbar.pf-m-static,
|
|
@@ -21264,12 +21273,14 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
21264
21273
|
padding-inline-start: var(--pf-v6-c-toolbar__expandable-content--PaddingInlineStart);
|
|
21265
21274
|
padding-inline-end: var(--pf-v6-c-toolbar__expandable-content--PaddingInlineEnd);
|
|
21266
21275
|
background-color: var(--pf-v6-c-toolbar__expandable-content--BackgroundColor);
|
|
21276
|
+
border-block-end: var(--pf-v6-c-toolbar__expandable-content--BorderBlockEndWidth) solid var(--pf-v6-c-toolbar__expandable-content--BorderBlockEndColor);
|
|
21267
21277
|
box-shadow: var(--pf-v6-c-toolbar__expandable-content--BoxShadow);
|
|
21268
21278
|
}
|
|
21269
21279
|
@media screen and (min-width: 62rem) {
|
|
21270
21280
|
.pf-v6-c-toolbar__expandable-content {
|
|
21271
21281
|
position: static;
|
|
21272
21282
|
padding: 0;
|
|
21283
|
+
border-block-end: 0;
|
|
21273
21284
|
box-shadow: none;
|
|
21274
21285
|
}
|
|
21275
21286
|
}
|
|
@@ -23636,6 +23647,8 @@ label.pf-v6-c-tree-view__node-text {
|
|
|
23636
23647
|
--pf-v6-c-wizard__toggle--m-expanded__toggle-icon--Rotate: 180deg;
|
|
23637
23648
|
--pf-v6-c-wizard__nav--ZIndex: var(--pf-t--global--z-index--sm);
|
|
23638
23649
|
--pf-v6-c-wizard__nav--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
23650
|
+
--pf-v6-c-wizard__nav--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
23651
|
+
--pf-v6-c-wizard__nav--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
23639
23652
|
--pf-v6-c-wizard__nav--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
|
|
23640
23653
|
--pf-v6-c-wizard__nav--Width: 100%;
|
|
23641
23654
|
--pf-v6-c-wizard__nav--lg--Width: 15.625rem;
|
|
@@ -23669,6 +23682,7 @@ label.pf-v6-c-tree-view__node-text {
|
|
|
23669
23682
|
.pf-v6-c-wizard {
|
|
23670
23683
|
--pf-v6-c-wizard__nav--Width: var(--pf-v6-c-wizard__nav--lg--Width);
|
|
23671
23684
|
--pf-v6-c-wizard__nav--BoxShadow: none;
|
|
23685
|
+
--pf-v6-c-wizard__nav--BorderBlockEndWidth: 0;
|
|
23672
23686
|
}
|
|
23673
23687
|
}
|
|
23674
23688
|
|
|
@@ -23855,6 +23869,7 @@ label.pf-v6-c-tree-view__node-text {
|
|
|
23855
23869
|
overflow-y: auto;
|
|
23856
23870
|
-webkit-overflow-scrolling: touch;
|
|
23857
23871
|
background-color: var(--pf-v6-c-wizard__nav--BackgroundColor);
|
|
23872
|
+
border-block-end: var(--pf-v6-c-wizard__nav--BorderBlockEndWidth) solid var(--pf-v6-c-wizard__nav--BorderBlockEndColor);
|
|
23858
23873
|
box-shadow: var(--pf-v6-c-wizard__nav--BoxShadow);
|
|
23859
23874
|
}
|
|
23860
23875
|
.pf-v6-c-wizard__nav.pf-m-expanded {
|
|
@@ -88,6 +88,8 @@ name: azure-sample-repo<div
|
|
|
88
88
|
class="pf-v6-c-expandable-section__content"
|
|
89
89
|
hidden
|
|
90
90
|
id="code-block-expandable-content"
|
|
91
|
+
role="region"
|
|
92
|
+
aria-labelledby="code-block-expandable-toggle"
|
|
91
93
|
>
|
|
92
94
|
spec:
|
|
93
95
|
connectionConfig:
|
|
@@ -99,6 +101,7 @@ name: azure-sample-repo<div
|
|
|
99
101
|
<div class="pf-v6-c-expandable-section__toggle">
|
|
100
102
|
<button
|
|
101
103
|
class="pf-v6-c-button pf-m-link"
|
|
104
|
+
id="code-block-expandable-toggle"
|
|
102
105
|
type="button"
|
|
103
106
|
aria-controls="code-block-expandable-content"
|
|
104
107
|
>
|
|
@@ -157,6 +160,8 @@ name: azure-sample-repo<div
|
|
|
157
160
|
><div
|
|
158
161
|
class="pf-v6-c-expandable-section__content"
|
|
159
162
|
id="code-block-expandable-expanded-content"
|
|
163
|
+
role="region"
|
|
164
|
+
aria-labelledby="code-block-expandable-expanded-toggle"
|
|
160
165
|
>
|
|
161
166
|
spec:
|
|
162
167
|
connectionConfig:
|
|
@@ -168,6 +173,7 @@ name: azure-sample-repo<div
|
|
|
168
173
|
<div class="pf-v6-c-expandable-section__toggle">
|
|
169
174
|
<button
|
|
170
175
|
class="pf-v6-c-button pf-m-link"
|
|
176
|
+
id="code-block-expandable-expanded-toggle"
|
|
171
177
|
type="button"
|
|
172
178
|
aria-expanded="true"
|
|
173
179
|
aria-controls="code-block-expandable-expanded-content"
|
|
@@ -9,7 +9,12 @@ cssPrefix: pf-v6-c-expandable-section
|
|
|
9
9
|
```html
|
|
10
10
|
<div class="pf-v6-c-expandable-section">
|
|
11
11
|
<div class="pf-v6-c-expandable-section__toggle">
|
|
12
|
-
<button
|
|
12
|
+
<button
|
|
13
|
+
class="pf-v6-c-button pf-m-link"
|
|
14
|
+
id="hidden-toggle"
|
|
15
|
+
type="button"
|
|
16
|
+
aria-controls="hidden-content"
|
|
17
|
+
>
|
|
13
18
|
<span class="pf-v6-c-button__icon pf-m-start">
|
|
14
19
|
<span class="pf-v6-c-expandable-section__toggle-icon">
|
|
15
20
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
@@ -21,6 +26,9 @@ cssPrefix: pf-v6-c-expandable-section
|
|
|
21
26
|
<div
|
|
22
27
|
class="pf-v6-c-expandable-section__content"
|
|
23
28
|
hidden
|
|
29
|
+
id="hidden-content"
|
|
30
|
+
role="region"
|
|
31
|
+
aria-labelledby="hidden-toggle"
|
|
24
32
|
>This content is visible only when the component is expanded.</div>
|
|
25
33
|
</div>
|
|
26
34
|
|
|
@@ -31,7 +39,13 @@ cssPrefix: pf-v6-c-expandable-section
|
|
|
31
39
|
```html
|
|
32
40
|
<div class="pf-v6-c-expandable-section pf-m-expanded">
|
|
33
41
|
<div class="pf-v6-c-expandable-section__toggle">
|
|
34
|
-
<button
|
|
42
|
+
<button
|
|
43
|
+
class="pf-v6-c-button pf-m-link"
|
|
44
|
+
id="expanded-toggle"
|
|
45
|
+
type="button"
|
|
46
|
+
aria-expanded="true"
|
|
47
|
+
aria-controls="expanded-content"
|
|
48
|
+
>
|
|
35
49
|
<span class="pf-v6-c-button__icon pf-m-start">
|
|
36
50
|
<span class="pf-v6-c-expandable-section__toggle-icon">
|
|
37
51
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
@@ -42,6 +56,9 @@ cssPrefix: pf-v6-c-expandable-section
|
|
|
42
56
|
</div>
|
|
43
57
|
<div
|
|
44
58
|
class="pf-v6-c-expandable-section__content"
|
|
59
|
+
id="expanded-content"
|
|
60
|
+
role="region"
|
|
61
|
+
aria-labelledby="expanded-toggle"
|
|
45
62
|
>This content is visible only when the component is expanded.</div>
|
|
46
63
|
</div>
|
|
47
64
|
|
|
@@ -52,7 +69,13 @@ cssPrefix: pf-v6-c-expandable-section
|
|
|
52
69
|
```html
|
|
53
70
|
<div class="pf-v6-c-expandable-section pf-m-expanded pf-m-indented">
|
|
54
71
|
<div class="pf-v6-c-expandable-section__toggle">
|
|
55
|
-
<button
|
|
72
|
+
<button
|
|
73
|
+
class="pf-v6-c-button pf-m-link"
|
|
74
|
+
id="indented-toggle"
|
|
75
|
+
type="button"
|
|
76
|
+
aria-expanded="true"
|
|
77
|
+
aria-controls="indented-content"
|
|
78
|
+
>
|
|
56
79
|
<span class="pf-v6-c-button__icon pf-m-start">
|
|
57
80
|
<span class="pf-v6-c-expandable-section__toggle-icon">
|
|
58
81
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
@@ -63,6 +86,9 @@ cssPrefix: pf-v6-c-expandable-section
|
|
|
63
86
|
</div>
|
|
64
87
|
<div
|
|
65
88
|
class="pf-v6-c-expandable-section__content"
|
|
89
|
+
id="indented-content"
|
|
90
|
+
role="region"
|
|
91
|
+
aria-labelledby="indented-toggle"
|
|
66
92
|
>This content is visible only when the component is expanded.</div>
|
|
67
93
|
</div>
|
|
68
94
|
|
|
@@ -73,7 +99,12 @@ cssPrefix: pf-v6-c-expandable-section
|
|
|
73
99
|
```html
|
|
74
100
|
<div class="pf-v6-c-expandable-section pf-m-display-lg pf-m-limit-width">
|
|
75
101
|
<div class="pf-v6-c-expandable-section__toggle">
|
|
76
|
-
<button
|
|
102
|
+
<button
|
|
103
|
+
class="pf-v6-c-button pf-m-link"
|
|
104
|
+
id="disclosure-variation-hidden-toggle"
|
|
105
|
+
type="button"
|
|
106
|
+
aria-controls="disclosure-variation-hidden-content"
|
|
107
|
+
>
|
|
77
108
|
<span class="pf-v6-c-button__icon pf-m-start">
|
|
78
109
|
<span class="pf-v6-c-expandable-section__toggle-icon">
|
|
79
110
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
@@ -87,6 +118,9 @@ cssPrefix: pf-v6-c-expandable-section
|
|
|
87
118
|
<div
|
|
88
119
|
class="pf-v6-c-expandable-section__content"
|
|
89
120
|
hidden
|
|
121
|
+
id="disclosure-variation-hidden-content"
|
|
122
|
+
role="region"
|
|
123
|
+
aria-labelledby="disclosure-variation-hidden-toggle"
|
|
90
124
|
>This content is visible only when the component is expanded.</div>
|
|
91
125
|
</div>
|
|
92
126
|
|
|
@@ -99,7 +133,13 @@ cssPrefix: pf-v6-c-expandable-section
|
|
|
99
133
|
class="pf-v6-c-expandable-section pf-m-expanded pf-m-display-lg pf-m-limit-width"
|
|
100
134
|
>
|
|
101
135
|
<div class="pf-v6-c-expandable-section__toggle">
|
|
102
|
-
<button
|
|
136
|
+
<button
|
|
137
|
+
class="pf-v6-c-button pf-m-link"
|
|
138
|
+
id="disclosure-variation-expanded-toggle"
|
|
139
|
+
type="button"
|
|
140
|
+
aria-expanded="true"
|
|
141
|
+
aria-controls="disclosure-variation-expanded-content"
|
|
142
|
+
>
|
|
103
143
|
<span class="pf-v6-c-button__icon pf-m-start">
|
|
104
144
|
<span class="pf-v6-c-expandable-section__toggle-icon">
|
|
105
145
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
@@ -112,6 +152,9 @@ cssPrefix: pf-v6-c-expandable-section
|
|
|
112
152
|
</div>
|
|
113
153
|
<div
|
|
114
154
|
class="pf-v6-c-expandable-section__content"
|
|
155
|
+
id="disclosure-variation-expanded-content"
|
|
156
|
+
role="region"
|
|
157
|
+
aria-labelledby="disclosure-variation-expanded-toggle"
|
|
115
158
|
>This content is visible only when the component is expanded.</div>
|
|
116
159
|
</div>
|
|
117
160
|
|
|
@@ -124,7 +167,13 @@ cssPrefix: pf-v6-c-expandable-section
|
|
|
124
167
|
class="pf-v6-c-expandable-section pf-m-expanded pf-m-display-lg pf-m-limit-width pf-m-indented"
|
|
125
168
|
>
|
|
126
169
|
<div class="pf-v6-c-expandable-section__toggle">
|
|
127
|
-
<button
|
|
170
|
+
<button
|
|
171
|
+
class="pf-v6-c-button pf-m-link"
|
|
172
|
+
id="disclosure-variation-indented-toggle"
|
|
173
|
+
type="button"
|
|
174
|
+
aria-expanded="true"
|
|
175
|
+
aria-controls="disclosure-variation-indented-content"
|
|
176
|
+
>
|
|
128
177
|
<span class="pf-v6-c-button__icon pf-m-start">
|
|
129
178
|
<span class="pf-v6-c-expandable-section__toggle-icon">
|
|
130
179
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
@@ -137,6 +186,9 @@ cssPrefix: pf-v6-c-expandable-section
|
|
|
137
186
|
</div>
|
|
138
187
|
<div
|
|
139
188
|
class="pf-v6-c-expandable-section__content"
|
|
189
|
+
id="disclosure-variation-indented-content"
|
|
190
|
+
role="region"
|
|
191
|
+
aria-labelledby="disclosure-variation-indented-toggle"
|
|
140
192
|
>This content is visible only when the component is expanded.</div>
|
|
141
193
|
</div>
|
|
142
194
|
|
|
@@ -153,6 +205,8 @@ cssPrefix: pf-v6-c-expandable-section
|
|
|
153
205
|
<div
|
|
154
206
|
class="pf-v6-c-expandable-section__content"
|
|
155
207
|
id="detached-toggle-content"
|
|
208
|
+
role="region"
|
|
209
|
+
aria-labelledby="detached-toggle-toggle"
|
|
156
210
|
>This content is visible only when the component is expanded.</div>
|
|
157
211
|
</div>
|
|
158
212
|
</div>
|
|
@@ -164,6 +218,7 @@ cssPrefix: pf-v6-c-expandable-section
|
|
|
164
218
|
<div class="pf-v6-c-expandable-section__toggle">
|
|
165
219
|
<button
|
|
166
220
|
class="pf-v6-c-button pf-m-link"
|
|
221
|
+
id="detached-toggle-toggle"
|
|
167
222
|
type="button"
|
|
168
223
|
aria-expanded="true"
|
|
169
224
|
aria-controls="detached-toggle-content"
|
|
@@ -188,9 +243,17 @@ cssPrefix: pf-v6-c-expandable-section
|
|
|
188
243
|
<div class="pf-v6-c-expandable-section pf-m-truncate">
|
|
189
244
|
<div
|
|
190
245
|
class="pf-v6-c-expandable-section__content"
|
|
246
|
+
id="truncated-expansion-hidden-content"
|
|
247
|
+
role="region"
|
|
248
|
+
aria-labelledby="truncated-expansion-hidden-toggle"
|
|
191
249
|
>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus finibus, diam vitae eleifend consequat, metus sapien posuere quam, ut tincidunt nunc enim eget sapien. Mauris ac dui imperdiet dolor dignissim efficitur laoreet quis erat. Proin turpis leo, malesuada eget urna et, tristique mollis odio. Ut mattis nulla lorem, elementum hendrerit nunc molestie vitae. Proin massa sem, bibendum id urna in, viverra porta neque. Ut ut mi ac lacus rhoncus mollis id quis sem. Suspendisse non justo elementum, dictum eros nec, hendrerit sapien. Mauris aliquet, est sit amet tincidunt vehicula, purus est hendrerit arcu, vitae egestas odio lorem ut lacus. In et neque non metus viverra rhoncus quis non purus. Integer id venenatis tortor. Nulla sollicitudin convallis tellus, at porta eros volutpat in. Curabitur rhoncus rhoncus nisi, sit amet tincidunt dolor efficitur vitae. Integer purus neque, porta non odio lobortis, accumsan elementum risus. Pellentesque viverra id lacus a cursus. Etiam eu pulvinar risus. Etiam ultrices nec urna id consequat.</div>
|
|
192
250
|
<div class="pf-v6-c-expandable-section__toggle">
|
|
193
|
-
<button
|
|
251
|
+
<button
|
|
252
|
+
class="pf-v6-c-button pf-m-inline pf-m-link"
|
|
253
|
+
id="truncated-expansion-hidden-toggle"
|
|
254
|
+
type="button"
|
|
255
|
+
aria-controls="truncated-expansion-hidden-content"
|
|
256
|
+
>
|
|
194
257
|
<span class="pf-v6-c-button__text">Show more truncated content</span>
|
|
195
258
|
</button>
|
|
196
259
|
</div>
|
|
@@ -204,12 +267,17 @@ cssPrefix: pf-v6-c-expandable-section
|
|
|
204
267
|
<div class="pf-v6-c-expandable-section pf-m-expanded pf-m-truncate">
|
|
205
268
|
<div
|
|
206
269
|
class="pf-v6-c-expandable-section__content"
|
|
270
|
+
id="truncate-expansion-expanded-content"
|
|
271
|
+
role="region"
|
|
272
|
+
aria-labelledby="truncate-expansion-expanded-toggle"
|
|
207
273
|
>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus finibus, diam vitae eleifend consequat, metus sapien posuere quam, ut tincidunt nunc enim eget sapien. Mauris ac dui imperdiet dolor dignissim efficitur laoreet quis erat. Proin turpis leo, malesuada eget urna et, tristique mollis odio. Ut mattis nulla lorem, elementum hendrerit nunc molestie vitae. Proin massa sem, bibendum id urna in, viverra porta neque. Ut ut mi ac lacus rhoncus mollis id quis sem. Suspendisse non justo elementum, dictum eros nec, hendrerit sapien. Mauris aliquet, est sit amet tincidunt vehicula, purus est hendrerit arcu, vitae egestas odio lorem ut lacus. In et neque non metus viverra rhoncus quis non purus. Integer id venenatis tortor. Nulla sollicitudin convallis tellus, at porta eros volutpat in. Curabitur rhoncus rhoncus nisi, sit amet tincidunt dolor efficitur vitae. Integer purus neque, porta non odio lobortis, accumsan elementum risus. Pellentesque viverra id lacus a cursus. Etiam eu pulvinar risus. Etiam ultrices nec urna id consequat.</div>
|
|
208
274
|
<div class="pf-v6-c-expandable-section__toggle">
|
|
209
275
|
<button
|
|
210
276
|
class="pf-v6-c-button pf-m-inline pf-m-link"
|
|
277
|
+
id="truncate-expansion-expanded-toggle"
|
|
211
278
|
type="button"
|
|
212
279
|
aria-expanded="true"
|
|
280
|
+
aria-controls="truncate-expansion-expanded-content"
|
|
213
281
|
>
|
|
214
282
|
<span class="pf-v6-c-button__text">Show less truncated content</span>
|
|
215
283
|
</button>
|