@patternfly/patternfly 6.3.0-prerelease.60 → 6.3.0-prerelease.62
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/Menu/menu.css +7 -0
- package/components/Menu/menu.scss +7 -0
- package/components/Panel/panel.css +7 -0
- package/components/Panel/panel.scss +7 -0
- package/components/Wizard/wizard.css +4 -0
- package/components/Wizard/wizard.scss +6 -2
- package/components/_index.css +18 -0
- 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 +18 -0
- package/patternfly.css +18 -0
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/components/Menu/menu.css
CHANGED
|
@@ -26,7 +26,11 @@
|
|
|
26
26
|
--pf-v6-c-menu__search--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
27
27
|
--pf-v6-c-menu__search--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
28
28
|
--pf-v6-c-menu__footer--BoxShadow: none;
|
|
29
|
+
--pf-v6-c-menu__footer--BorderColor: transparent;
|
|
30
|
+
--pf-v6-c-menu__footer--BorderWidth: 0;
|
|
29
31
|
--pf-v6-c-menu--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--md--top);
|
|
32
|
+
--pf-v6-c-menu--m-scrollable__footer--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
33
|
+
--pf-v6-c-menu--m-scrollable__footer--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
30
34
|
--pf-v6-c-menu__list-item--Color: var(--pf-t--global--text--color--regular);
|
|
31
35
|
--pf-v6-c-menu__list-item--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
|
|
32
36
|
--pf-v6-c-menu__list-item--BorderWidth: var(--pf-t--global--border--width--action--plain--default);
|
|
@@ -346,6 +350,8 @@
|
|
|
346
350
|
.pf-v6-c-menu.pf-m-scrollable {
|
|
347
351
|
--pf-v6-c-menu__content--MaxHeight: var(--pf-v6-c-menu--m-scrollable__content--MaxHeight);
|
|
348
352
|
--pf-v6-c-menu__footer--BoxShadow: var(--pf-v6-c-menu--m-scrollable__footer--BoxShadow);
|
|
353
|
+
--pf-v6-c-menu__footer--BorderColor: var(--pf-v6-c-menu--m-scrollable__footer--BorderColor);
|
|
354
|
+
--pf-v6-c-menu__footer--BorderWidth: var(--pf-v6-c-menu--m-scrollable__footer--BorderWidth);
|
|
349
355
|
--pf-v6-c-menu__footer--PaddingBlockStart: calc(var(--pf-v6-c-menu__item--PaddingBlockStart) + var(--pf-v6-c-menu--RowGap));
|
|
350
356
|
--pf-v6-c-menu__footer--PaddingBlockEnd: calc(var(--pf-v6-c-menu__item--PaddingBlockStart) + var(--pf-v6-c-menu--RowGap));
|
|
351
357
|
overflow: hidden;
|
|
@@ -387,6 +393,7 @@
|
|
|
387
393
|
padding-block-end: var(--pf-v6-c-menu__footer--PaddingBlockEnd);
|
|
388
394
|
padding-inline-start: var(--pf-v6-c-menu__footer--PaddingInlineStart);
|
|
389
395
|
padding-inline-end: var(--pf-v6-c-menu__footer--PaddingInlineEnd);
|
|
396
|
+
border-block-start: var(--pf-v6-c-menu__footer--BorderWidth) solid var(--pf-v6-c-menu__footer--BorderColor);
|
|
390
397
|
box-shadow: var(--pf-v6-c-menu__footer--BoxShadow);
|
|
391
398
|
}
|
|
392
399
|
|
|
@@ -41,7 +41,11 @@
|
|
|
41
41
|
|
|
42
42
|
// * Menu footer
|
|
43
43
|
--#{$menu}__footer--BoxShadow: none;
|
|
44
|
+
--#{$menu}__footer--BorderColor: transparent;
|
|
45
|
+
--#{$menu}__footer--BorderWidth: 0;
|
|
44
46
|
--#{$menu}--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--md--top);
|
|
47
|
+
--#{$menu}--m-scrollable__footer--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
48
|
+
--#{$menu}--m-scrollable__footer--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
45
49
|
|
|
46
50
|
// * Menu list item
|
|
47
51
|
--#{$menu}__list-item--Color: var(--pf-t--global--text--color--regular);
|
|
@@ -401,6 +405,8 @@
|
|
|
401
405
|
&.pf-m-scrollable {
|
|
402
406
|
--#{$menu}__content--MaxHeight: var(--#{$menu}--m-scrollable__content--MaxHeight);
|
|
403
407
|
--#{$menu}__footer--BoxShadow: var(--#{$menu}--m-scrollable__footer--BoxShadow);
|
|
408
|
+
--#{$menu}__footer--BorderColor: var(--#{$menu}--m-scrollable__footer--BorderColor);
|
|
409
|
+
--#{$menu}__footer--BorderWidth: var(--#{$menu}--m-scrollable__footer--BorderWidth);
|
|
404
410
|
--#{$menu}__footer--PaddingBlockStart: calc(var(--#{$menu}__item--PaddingBlockStart) + var(--#{$menu}--RowGap));
|
|
405
411
|
--#{$menu}__footer--PaddingBlockEnd: calc(var(--#{$menu}__item--PaddingBlockStart) + var(--#{$menu}--RowGap));
|
|
406
412
|
|
|
@@ -452,6 +458,7 @@
|
|
|
452
458
|
padding-block-end: var(--#{$menu}__footer--PaddingBlockEnd);
|
|
453
459
|
padding-inline-start: var(--#{$menu}__footer--PaddingInlineStart);
|
|
454
460
|
padding-inline-end: var(--#{$menu}__footer--PaddingInlineEnd);
|
|
461
|
+
border-block-start: var(--#{$menu}__footer--BorderWidth) solid var(--#{$menu}__footer--BorderColor);
|
|
455
462
|
box-shadow: var(--#{$menu}__footer--BoxShadow);
|
|
456
463
|
}
|
|
457
464
|
|
|
@@ -29,11 +29,15 @@
|
|
|
29
29
|
--pf-v6-c-panel__footer--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
30
30
|
--pf-v6-c-panel__footer--PaddingInlineStart: var(--pf-t--global--spacer--lg);
|
|
31
31
|
--pf-v6-c-panel__footer--BoxShadow: none;
|
|
32
|
+
--pf-v6-c-panel__footer--BorderColor: transparent;
|
|
33
|
+
--pf-v6-c-panel__footer--BorderWidth: 0;
|
|
32
34
|
--pf-v6-c-panel--m-scrollable__main--MaxHeight: 18.75rem;
|
|
33
35
|
--pf-v6-c-panel--m-scrollable__main--Overflow: auto;
|
|
34
36
|
--pf-v6-c-panel--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--md--top);
|
|
35
37
|
--pf-v6-c-panel--m-scrollable__footer--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
36
38
|
--pf-v6-c-panel--m-scrollable__footer--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
39
|
+
--pf-v6-c-panel--m-scrollable__footer--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
40
|
+
--pf-v6-c-panel--m-scrollable__footer--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
37
41
|
}
|
|
38
42
|
|
|
39
43
|
.pf-v6-c-panel {
|
|
@@ -72,6 +76,8 @@
|
|
|
72
76
|
--pf-v6-c-panel__footer--BoxShadow: var(--pf-v6-c-panel--m-scrollable__footer--BoxShadow);
|
|
73
77
|
--pf-v6-c-panel__footer--PaddingBlockStart: var(--pf-v6-c-panel--m-scrollable__footer--PaddingBlockStart);
|
|
74
78
|
--pf-v6-c-panel__footer--PaddingBlockEnd: var(--pf-v6-c-panel--m-scrollable__footer--PaddingBlockEnd);
|
|
79
|
+
--pf-v6-c-panel__footer--BorderColor: var(--pf-v6-c-panel--m-scrollable__footer--BorderColor);
|
|
80
|
+
--pf-v6-c-panel__footer--BorderWidth: var(--pf-v6-c-panel--m-scrollable__footer--BorderWidth);
|
|
75
81
|
}
|
|
76
82
|
|
|
77
83
|
.pf-v6-c-panel__header {
|
|
@@ -98,5 +104,6 @@
|
|
|
98
104
|
padding-block-end: var(--pf-v6-c-panel__footer--PaddingBlockEnd);
|
|
99
105
|
padding-inline-start: var(--pf-v6-c-panel__footer--PaddingInlineStart);
|
|
100
106
|
padding-inline-end: var(--pf-v6-c-panel__footer--PaddingInlineEnd);
|
|
107
|
+
border-block-start: var(--pf-v6-c-panel__footer--BorderWidth) solid var(--pf-v6-c-panel__footer--BorderColor);
|
|
101
108
|
box-shadow: var(--pf-v6-c-panel__footer--BoxShadow);
|
|
102
109
|
}
|
|
@@ -47,6 +47,8 @@
|
|
|
47
47
|
--#{$panel}__footer--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
48
48
|
--#{$panel}__footer--PaddingInlineStart: var(--pf-t--global--spacer--lg);
|
|
49
49
|
--#{$panel}__footer--BoxShadow: none;
|
|
50
|
+
--#{$panel}__footer--BorderColor: transparent;
|
|
51
|
+
--#{$panel}__footer--BorderWidth: 0;
|
|
50
52
|
|
|
51
53
|
// scrollable
|
|
52
54
|
--#{$panel}--m-scrollable__main--MaxHeight: #{pf-size-prem(300px)};
|
|
@@ -54,6 +56,8 @@
|
|
|
54
56
|
--#{$panel}--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--md--top);
|
|
55
57
|
--#{$panel}--m-scrollable__footer--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
56
58
|
--#{$panel}--m-scrollable__footer--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
59
|
+
--#{$panel}--m-scrollable__footer--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
60
|
+
--#{$panel}--m-scrollable__footer--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
57
61
|
}
|
|
58
62
|
|
|
59
63
|
.#{$panel} {
|
|
@@ -96,6 +100,8 @@
|
|
|
96
100
|
--#{$panel}__footer--BoxShadow: var(--#{$panel}--m-scrollable__footer--BoxShadow);
|
|
97
101
|
--#{$panel}__footer--PaddingBlockStart: var(--#{$panel}--m-scrollable__footer--PaddingBlockStart);
|
|
98
102
|
--#{$panel}__footer--PaddingBlockEnd: var(--#{$panel}--m-scrollable__footer--PaddingBlockEnd);
|
|
103
|
+
--#{$panel}__footer--BorderColor: var(--#{$panel}--m-scrollable__footer--BorderColor);
|
|
104
|
+
--#{$panel}__footer--BorderWidth: var(--#{$panel}--m-scrollable__footer--BorderWidth);
|
|
99
105
|
}
|
|
100
106
|
}
|
|
101
107
|
|
|
@@ -123,5 +129,6 @@
|
|
|
123
129
|
padding-block-end: var(--#{$panel}__footer--PaddingBlockEnd);
|
|
124
130
|
padding-inline-start: var(--#{$panel}__footer--PaddingInlineStart);
|
|
125
131
|
padding-inline-end: var(--#{$panel}__footer--PaddingInlineEnd);
|
|
132
|
+
border-block-start: var(--#{$panel}__footer--BorderWidth) solid var(--#{$panel}__footer--BorderColor);
|
|
126
133
|
box-shadow: var(--#{$panel}__footer--BoxShadow);
|
|
127
134
|
}
|
|
@@ -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
|
@@ -10257,7 +10257,11 @@ ul.pf-v6-c-list {
|
|
|
10257
10257
|
--pf-v6-c-menu__search--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
10258
10258
|
--pf-v6-c-menu__search--PaddingInlineEnd: var(--pf-t--global--spacer--md);
|
|
10259
10259
|
--pf-v6-c-menu__footer--BoxShadow: none;
|
|
10260
|
+
--pf-v6-c-menu__footer--BorderColor: transparent;
|
|
10261
|
+
--pf-v6-c-menu__footer--BorderWidth: 0;
|
|
10260
10262
|
--pf-v6-c-menu--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--md--top);
|
|
10263
|
+
--pf-v6-c-menu--m-scrollable__footer--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
10264
|
+
--pf-v6-c-menu--m-scrollable__footer--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
10261
10265
|
--pf-v6-c-menu__list-item--Color: var(--pf-t--global--text--color--regular);
|
|
10262
10266
|
--pf-v6-c-menu__list-item--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
|
|
10263
10267
|
--pf-v6-c-menu__list-item--BorderWidth: var(--pf-t--global--border--width--action--plain--default);
|
|
@@ -10577,6 +10581,8 @@ ul.pf-v6-c-list {
|
|
|
10577
10581
|
.pf-v6-c-menu.pf-m-scrollable {
|
|
10578
10582
|
--pf-v6-c-menu__content--MaxHeight: var(--pf-v6-c-menu--m-scrollable__content--MaxHeight);
|
|
10579
10583
|
--pf-v6-c-menu__footer--BoxShadow: var(--pf-v6-c-menu--m-scrollable__footer--BoxShadow);
|
|
10584
|
+
--pf-v6-c-menu__footer--BorderColor: var(--pf-v6-c-menu--m-scrollable__footer--BorderColor);
|
|
10585
|
+
--pf-v6-c-menu__footer--BorderWidth: var(--pf-v6-c-menu--m-scrollable__footer--BorderWidth);
|
|
10580
10586
|
--pf-v6-c-menu__footer--PaddingBlockStart: calc(var(--pf-v6-c-menu__item--PaddingBlockStart) + var(--pf-v6-c-menu--RowGap));
|
|
10581
10587
|
--pf-v6-c-menu__footer--PaddingBlockEnd: calc(var(--pf-v6-c-menu__item--PaddingBlockStart) + var(--pf-v6-c-menu--RowGap));
|
|
10582
10588
|
overflow: hidden;
|
|
@@ -10618,6 +10624,7 @@ ul.pf-v6-c-list {
|
|
|
10618
10624
|
padding-block-end: var(--pf-v6-c-menu__footer--PaddingBlockEnd);
|
|
10619
10625
|
padding-inline-start: var(--pf-v6-c-menu__footer--PaddingInlineStart);
|
|
10620
10626
|
padding-inline-end: var(--pf-v6-c-menu__footer--PaddingInlineEnd);
|
|
10627
|
+
border-block-start: var(--pf-v6-c-menu__footer--BorderWidth) solid var(--pf-v6-c-menu__footer--BorderColor);
|
|
10621
10628
|
box-shadow: var(--pf-v6-c-menu__footer--BoxShadow);
|
|
10622
10629
|
}
|
|
10623
10630
|
|
|
@@ -13617,11 +13624,15 @@ ul.pf-v6-c-list {
|
|
|
13617
13624
|
--pf-v6-c-panel__footer--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
|
|
13618
13625
|
--pf-v6-c-panel__footer--PaddingInlineStart: var(--pf-t--global--spacer--lg);
|
|
13619
13626
|
--pf-v6-c-panel__footer--BoxShadow: none;
|
|
13627
|
+
--pf-v6-c-panel__footer--BorderColor: transparent;
|
|
13628
|
+
--pf-v6-c-panel__footer--BorderWidth: 0;
|
|
13620
13629
|
--pf-v6-c-panel--m-scrollable__main--MaxHeight: 18.75rem;
|
|
13621
13630
|
--pf-v6-c-panel--m-scrollable__main--Overflow: auto;
|
|
13622
13631
|
--pf-v6-c-panel--m-scrollable__footer--BoxShadow: var(--pf-t--global--box-shadow--md--top);
|
|
13623
13632
|
--pf-v6-c-panel--m-scrollable__footer--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
|
13624
13633
|
--pf-v6-c-panel--m-scrollable__footer--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
13634
|
+
--pf-v6-c-panel--m-scrollable__footer--BorderColor: var(--pf-t--global--border--color--high-contrast);
|
|
13635
|
+
--pf-v6-c-panel--m-scrollable__footer--BorderWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
13625
13636
|
}
|
|
13626
13637
|
|
|
13627
13638
|
.pf-v6-c-panel {
|
|
@@ -13660,6 +13671,8 @@ ul.pf-v6-c-list {
|
|
|
13660
13671
|
--pf-v6-c-panel__footer--BoxShadow: var(--pf-v6-c-panel--m-scrollable__footer--BoxShadow);
|
|
13661
13672
|
--pf-v6-c-panel__footer--PaddingBlockStart: var(--pf-v6-c-panel--m-scrollable__footer--PaddingBlockStart);
|
|
13662
13673
|
--pf-v6-c-panel__footer--PaddingBlockEnd: var(--pf-v6-c-panel--m-scrollable__footer--PaddingBlockEnd);
|
|
13674
|
+
--pf-v6-c-panel__footer--BorderColor: var(--pf-v6-c-panel--m-scrollable__footer--BorderColor);
|
|
13675
|
+
--pf-v6-c-panel__footer--BorderWidth: var(--pf-v6-c-panel--m-scrollable__footer--BorderWidth);
|
|
13663
13676
|
}
|
|
13664
13677
|
|
|
13665
13678
|
.pf-v6-c-panel__header {
|
|
@@ -13686,6 +13699,7 @@ ul.pf-v6-c-list {
|
|
|
13686
13699
|
padding-block-end: var(--pf-v6-c-panel__footer--PaddingBlockEnd);
|
|
13687
13700
|
padding-inline-start: var(--pf-v6-c-panel__footer--PaddingInlineStart);
|
|
13688
13701
|
padding-inline-end: var(--pf-v6-c-panel__footer--PaddingInlineEnd);
|
|
13702
|
+
border-block-start: var(--pf-v6-c-panel__footer--BorderWidth) solid var(--pf-v6-c-panel__footer--BorderColor);
|
|
13689
13703
|
box-shadow: var(--pf-v6-c-panel__footer--BoxShadow);
|
|
13690
13704
|
}
|
|
13691
13705
|
|
|
@@ -23622,6 +23636,8 @@ label.pf-v6-c-tree-view__node-text {
|
|
|
23622
23636
|
--pf-v6-c-wizard__toggle--m-expanded__toggle-icon--Rotate: 180deg;
|
|
23623
23637
|
--pf-v6-c-wizard__nav--ZIndex: var(--pf-t--global--z-index--sm);
|
|
23624
23638
|
--pf-v6-c-wizard__nav--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
23639
|
+
--pf-v6-c-wizard__nav--BorderBlockEndWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
23640
|
+
--pf-v6-c-wizard__nav--BorderBlockEndColor: var(--pf-t--global--border--color--high-contrast);
|
|
23625
23641
|
--pf-v6-c-wizard__nav--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
|
|
23626
23642
|
--pf-v6-c-wizard__nav--Width: 100%;
|
|
23627
23643
|
--pf-v6-c-wizard__nav--lg--Width: 15.625rem;
|
|
@@ -23655,6 +23671,7 @@ label.pf-v6-c-tree-view__node-text {
|
|
|
23655
23671
|
.pf-v6-c-wizard {
|
|
23656
23672
|
--pf-v6-c-wizard__nav--Width: var(--pf-v6-c-wizard__nav--lg--Width);
|
|
23657
23673
|
--pf-v6-c-wizard__nav--BoxShadow: none;
|
|
23674
|
+
--pf-v6-c-wizard__nav--BorderBlockEndWidth: 0;
|
|
23658
23675
|
}
|
|
23659
23676
|
}
|
|
23660
23677
|
|
|
@@ -23841,6 +23858,7 @@ label.pf-v6-c-tree-view__node-text {
|
|
|
23841
23858
|
overflow-y: auto;
|
|
23842
23859
|
-webkit-overflow-scrolling: touch;
|
|
23843
23860
|
background-color: var(--pf-v6-c-wizard__nav--BackgroundColor);
|
|
23861
|
+
border-block-end: var(--pf-v6-c-wizard__nav--BorderBlockEndWidth) solid var(--pf-v6-c-wizard__nav--BorderBlockEndColor);
|
|
23844
23862
|
box-shadow: var(--pf-v6-c-wizard__nav--BoxShadow);
|
|
23845
23863
|
}
|
|
23846
23864
|
.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>
|
|
@@ -139,7 +139,7 @@ cssPrefix: pf-v6-c-multiple-file-upload
|
|
|
139
139
|
<div class="pf-v6-c-multiple-file-upload__status">
|
|
140
140
|
<div class="pf-v6-c-expandable-section">
|
|
141
141
|
<div class="pf-v6-c-expandable-section__toggle">
|
|
142
|
-
<button class="pf-v6-c-button pf-m-link" type="button">
|
|
142
|
+
<button class="pf-v6-c-button pf-m-link" id="-toggle" type="button">
|
|
143
143
|
<span class="pf-v6-c-button__icon pf-m-start">
|
|
144
144
|
<span class="pf-v6-c-expandable-section__toggle-icon">
|
|
145
145
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
@@ -157,7 +157,13 @@ cssPrefix: pf-v6-c-multiple-file-upload
|
|
|
157
157
|
</span>
|
|
158
158
|
</button>
|
|
159
159
|
</div>
|
|
160
|
-
<div
|
|
160
|
+
<div
|
|
161
|
+
class="pf-v6-c-expandable-section__content"
|
|
162
|
+
hidden
|
|
163
|
+
id="-content"
|
|
164
|
+
role="region"
|
|
165
|
+
aria-labelledby="-toggle"
|
|
166
|
+
>
|
|
161
167
|
<ul class="pf-v6-c-multiple-file-upload__status-list" role="list">
|
|
162
168
|
<li class="pf-v6-c-multiple-file-upload__status-item">
|
|
163
169
|
<div class="pf-v6-c-multiple-file-upload__status-item-icon">
|
|
@@ -348,6 +354,7 @@ cssPrefix: pf-v6-c-multiple-file-upload
|
|
|
348
354
|
<div class="pf-v6-c-expandable-section__toggle">
|
|
349
355
|
<button
|
|
350
356
|
class="pf-v6-c-button pf-m-link"
|
|
357
|
+
id="-toggle"
|
|
351
358
|
type="button"
|
|
352
359
|
aria-expanded="true"
|
|
353
360
|
>
|
|
@@ -368,7 +375,12 @@ cssPrefix: pf-v6-c-multiple-file-upload
|
|
|
368
375
|
</span>
|
|
369
376
|
</button>
|
|
370
377
|
</div>
|
|
371
|
-
<div
|
|
378
|
+
<div
|
|
379
|
+
class="pf-v6-c-expandable-section__content"
|
|
380
|
+
id="-content"
|
|
381
|
+
role="region"
|
|
382
|
+
aria-labelledby="-toggle"
|
|
383
|
+
>
|
|
372
384
|
<ul class="pf-v6-c-multiple-file-upload__status-list" role="list">
|
|
373
385
|
<li class="pf-v6-c-multiple-file-upload__status-item">
|
|
374
386
|
<div class="pf-v6-c-multiple-file-upload__status-item-icon">
|
|
@@ -559,6 +571,7 @@ cssPrefix: pf-v6-c-multiple-file-upload
|
|
|
559
571
|
<div class="pf-v6-c-expandable-section__toggle">
|
|
560
572
|
<button
|
|
561
573
|
class="pf-v6-c-button pf-m-link"
|
|
574
|
+
id="-toggle"
|
|
562
575
|
type="button"
|
|
563
576
|
aria-expanded="true"
|
|
564
577
|
>
|
|
@@ -579,7 +592,12 @@ cssPrefix: pf-v6-c-multiple-file-upload
|
|
|
579
592
|
</span>
|
|
580
593
|
</button>
|
|
581
594
|
</div>
|
|
582
|
-
<div
|
|
595
|
+
<div
|
|
596
|
+
class="pf-v6-c-expandable-section__content"
|
|
597
|
+
id="-content"
|
|
598
|
+
role="region"
|
|
599
|
+
aria-labelledby="-toggle"
|
|
600
|
+
>
|
|
583
601
|
<ul class="pf-v6-c-multiple-file-upload__status-list" role="list">
|
|
584
602
|
<li class="pf-v6-c-multiple-file-upload__status-item">
|
|
585
603
|
<div class="pf-v6-c-multiple-file-upload__status-item-icon">
|