@patternfly/patternfly 6.0.0-alpha.170 → 6.0.0-alpha.171
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/Alert/alert.css +3 -9
- package/components/Alert/alert.scss +3 -9
- package/components/Card/card.css +1 -1
- package/components/Card/card.scss +1 -1
- package/components/Hint/hint.css +1 -7
- package/components/Hint/hint.scss +1 -7
- package/components/NotificationDrawer/notification-drawer.css +1 -7
- package/components/NotificationDrawer/notification-drawer.scss +1 -7
- package/components/Popover/popover.css +3 -5
- package/components/Popover/popover.scss +4 -5
- package/components/Wizard/wizard.css +6 -1
- package/components/Wizard/wizard.scss +7 -1
- package/components/_index.css +15 -30
- package/docs/components/Accordion/examples/Accordion.md +1 -1
- package/docs/components/Button/examples/Button.md +1 -1
- package/docs/components/Label/examples/Label.md +5 -5
- package/docs/components/Menu/examples/Menu.md +19 -19
- package/docs/components/MenuToggle/examples/MenuToggle.md +1 -1
- package/docs/components/ModalBox/examples/ModalBox.md +1 -1
- package/docs/components/Nav/examples/Navigation.md +5 -5
- package/docs/components/Spinner/examples/Spinner.md +1 -1
- package/docs/components/Timestamp/examples/Timestamp.md +0 -1
- package/package.json +1 -1
- package/patternfly-no-globals.css +15 -30
- package/patternfly.css +15 -30
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
--pf-v6-c-alert--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
15
15
|
--pf-v6-c-alert--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
16
16
|
--pf-v6-c-alert--FontSize: var(--pf-t--global--font--size--body--default);
|
|
17
|
-
--pf-v6-c-alert__toggle--MarginBlockStart: calc(
|
|
18
|
-
--pf-v6-c-alert__toggle--MarginBlockEnd: calc(
|
|
17
|
+
--pf-v6-c-alert__toggle--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
18
|
+
--pf-v6-c-alert__toggle--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
19
19
|
--pf-v6-c-alert__toggle--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
20
20
|
--pf-v6-c-alert__toggle-icon--Rotate: 0;
|
|
21
21
|
--pf-v6-c-alert__toggle-icon--Transition: var(--pf-t--global--transition);
|
|
@@ -23,10 +23,7 @@
|
|
|
23
23
|
--pf-v6-c-alert__icon--MarginBlockStart: 0.25rem;
|
|
24
24
|
--pf-v6-c-alert__icon--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
25
25
|
--pf-v6-c-alert__icon--FontSize: var(--pf-t--global--icon--size--md);
|
|
26
|
-
--pf-v6-c-alert__title--
|
|
27
|
-
--pf-v6-c-alert__title--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
28
|
-
--pf-v6-c-alert__title--FontWeight: var(--pf-t--global--font--weight--heading);
|
|
29
|
-
--pf-v6-c-alert__title--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
26
|
+
--pf-v6-c-alert__title--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
30
27
|
--pf-v6-c-alert__title--Color: var(--pf-t--global--text--color--regular);
|
|
31
28
|
--pf-v6-c-alert__title--max-lines: 1;
|
|
32
29
|
--pf-v6-c-alert__action--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
@@ -160,10 +157,7 @@
|
|
|
160
157
|
|
|
161
158
|
.pf-v6-c-alert__title {
|
|
162
159
|
grid-area: title;
|
|
163
|
-
font-family: var(--pf-v6-c-alert__title--FontFamily);
|
|
164
|
-
font-size: var(--pf-v6-c-alert__title--FontSize);
|
|
165
160
|
font-weight: var(--pf-v6-c-alert__title--FontWeight);
|
|
166
|
-
line-height: var(--pf-v6-c-alert__title--LineHeight);
|
|
167
161
|
color: var(--pf-v6-c-alert__title--Color);
|
|
168
162
|
word-break: break-word;
|
|
169
163
|
}
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
--#{$alert}--FontSize: var(--pf-t--global--font--size--body--default);
|
|
20
20
|
|
|
21
21
|
// Toggle
|
|
22
|
-
--#{$alert}__toggle--MarginBlockStart: calc(
|
|
23
|
-
--#{$alert}__toggle--MarginBlockEnd: calc(
|
|
22
|
+
--#{$alert}__toggle--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
23
|
+
--#{$alert}__toggle--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
24
24
|
--#{$alert}__toggle--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
25
25
|
|
|
26
26
|
// Toggle icon
|
|
@@ -34,10 +34,7 @@
|
|
|
34
34
|
--#{$alert}__icon--FontSize: var(--pf-t--global--icon--size--md);
|
|
35
35
|
|
|
36
36
|
// Title
|
|
37
|
-
--#{$alert}__title--
|
|
38
|
-
--#{$alert}__title--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
39
|
-
--#{$alert}__title--FontWeight: var(--pf-t--global--font--weight--heading);
|
|
40
|
-
--#{$alert}__title--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
37
|
+
--#{$alert}__title--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
41
38
|
--#{$alert}__title--Color: var(--pf-t--global--text--color--regular);
|
|
42
39
|
--#{$alert}__title--max-lines: 1;
|
|
43
40
|
|
|
@@ -203,10 +200,7 @@
|
|
|
203
200
|
|
|
204
201
|
.#{$alert}__title {
|
|
205
202
|
grid-area: title;
|
|
206
|
-
font-family: var(--#{$alert}__title--FontFamily);
|
|
207
|
-
font-size: var(--#{$alert}__title--FontSize);
|
|
208
203
|
font-weight: var(--#{$alert}__title--FontWeight);
|
|
209
|
-
line-height: var(--#{$alert}__title--LineHeight);
|
|
210
204
|
color: var(--#{$alert}__title--Color);
|
|
211
205
|
word-break: break-word;
|
|
212
206
|
|
package/components/Card/card.css
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
--pf-v6-c-card__title--not--last-child--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
13
13
|
--pf-v6-c-card__title-text--Color: var(--pf-t--global--text--color--regular);
|
|
14
14
|
--pf-v6-c-card__title-text--FontFamily: var(--pf-t--global--font--family--heading);
|
|
15
|
-
--pf-v6-c-card__title-text--FontSize: var(--pf-t--global--font--size--heading--
|
|
15
|
+
--pf-v6-c-card__title-text--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
16
16
|
--pf-v6-c-card__title-text--FontWeight: var(--pf-t--global--font--weight--heading);
|
|
17
17
|
--pf-v6-c-card__title-text--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
18
18
|
--pf-v6-c-card--c-button--disabled--Color: var(--pf-t--global--text--color--on-disabled);
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
--#{$card}__title--not--last-child--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
15
15
|
--#{$card}__title-text--Color: var(--pf-t--global--text--color--regular);
|
|
16
16
|
--#{$card}__title-text--FontFamily: var(--pf-t--global--font--family--heading);
|
|
17
|
-
--#{$card}__title-text--FontSize: var(--pf-t--global--font--size--heading--
|
|
17
|
+
--#{$card}__title-text--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
18
18
|
--#{$card}__title-text--FontWeight: var(--pf-t--global--font--weight--heading);
|
|
19
19
|
--#{$card}__title-text--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
20
20
|
--#{$card}--c-button--disabled--Color: var(--pf-t--global--text--color--on-disabled);
|
package/components/Hint/hint.css
CHANGED
|
@@ -9,10 +9,7 @@
|
|
|
9
9
|
--pf-v6-c-hint--BorderWidth: var(--pf-t--global--border--width--box--status--default);
|
|
10
10
|
--pf-v6-c-hint--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
11
11
|
--pf-v6-c-hint--Color: var(--pf-t--global--text--color--regular);
|
|
12
|
-
--pf-v6-c-hint__title--
|
|
13
|
-
--pf-v6-c-hint__title--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
14
|
-
--pf-v6-c-hint__title--FontWeight: var(--pf-t--global--font--weight--heading);
|
|
15
|
-
--pf-v6-c-hint__title--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
12
|
+
--pf-v6-c-hint__title--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
16
13
|
--pf-v6-c-hint__body--FontSize: var(--pf-t--global--font--size--body--default);
|
|
17
14
|
--pf-v6-c-hint__footer--MarginBlockStart: var(--pf-t--global--spacer--sm);
|
|
18
15
|
--pf-v6-c-hint__footer--child--MarginInlineEnd: var(--pf-t--global--spacer--md);
|
|
@@ -60,10 +57,7 @@
|
|
|
60
57
|
|
|
61
58
|
.pf-v6-c-hint__title {
|
|
62
59
|
align-self: center;
|
|
63
|
-
font-family: var(--pf-v6-c-hint__title--FontFamily);
|
|
64
|
-
font-size: var(--pf-v6-c-hint__title--FontSize);
|
|
65
60
|
font-weight: var(--pf-v6-c-hint__title--FontWeight);
|
|
66
|
-
line-height: var(--pf-v6-c-hint__title--LineHeight);
|
|
67
61
|
}
|
|
68
62
|
|
|
69
63
|
.pf-v6-c-hint__body {
|
|
@@ -13,10 +13,7 @@
|
|
|
13
13
|
--#{$hint}--Color: var(--pf-t--global--text--color--regular);
|
|
14
14
|
|
|
15
15
|
// Hint Title
|
|
16
|
-
--#{$hint}__title--
|
|
17
|
-
--#{$hint}__title--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
18
|
-
--#{$hint}__title--FontWeight: var(--pf-t--global--font--weight--heading);
|
|
19
|
-
--#{$hint}__title--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
16
|
+
--#{$hint}__title--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
20
17
|
|
|
21
18
|
// Hint Body
|
|
22
19
|
--#{$hint}__body--FontSize: var(--pf-t--global--font--size--body--default);
|
|
@@ -74,10 +71,7 @@
|
|
|
74
71
|
|
|
75
72
|
.#{$hint}__title {
|
|
76
73
|
align-self: center;
|
|
77
|
-
font-family: var(--#{$hint}__title--FontFamily);
|
|
78
|
-
font-size: var(--#{$hint}__title--FontSize);
|
|
79
74
|
font-weight: var(--#{$hint}__title--FontWeight);
|
|
80
|
-
line-height: var(--#{$hint}__title--LineHeight);
|
|
81
75
|
}
|
|
82
76
|
|
|
83
77
|
.#{$hint}__body {
|
|
@@ -44,10 +44,7 @@
|
|
|
44
44
|
--pf-v6-c-notification-drawer__list-item-header--MarginBlockEnd: var(--pf-t--global--spacer--xs);
|
|
45
45
|
--pf-v6-c-notification-drawer__list-item-header-icon--Color: inherit;
|
|
46
46
|
--pf-v6-c-notification-drawer__list-item-header-icon--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
47
|
-
--pf-v6-c-notification-drawer__list-item-header-title--
|
|
48
|
-
--pf-v6-c-notification-drawer__list-item-header-title--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
49
|
-
--pf-v6-c-notification-drawer__list-item-header-title--FontWeight: var(--pf-t--global--font--weight--heading--bold);
|
|
50
|
-
--pf-v6-c-notification-drawer__list-item-header-title--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
47
|
+
--pf-v6-c-notification-drawer__list-item-header-title--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
51
48
|
--pf-v6-c-notification-drawer__list-item-header-title--max-lines: 1;
|
|
52
49
|
--pf-v6-c-notification-drawer__list-item-description--MarginBlockEnd: var(--pf-t--global--spacer--sm);
|
|
53
50
|
--pf-v6-c-notification-drawer__list-item-timestamp--Color: var(--pf-t--global--text--color--subtle);
|
|
@@ -186,10 +183,7 @@
|
|
|
186
183
|
}
|
|
187
184
|
|
|
188
185
|
.pf-v6-c-notification-drawer__list-item-header-title {
|
|
189
|
-
font-family: var(--pf-v6-c-notification-drawer__list-item-header-title--FontFamily);
|
|
190
|
-
font-size: var(--pf-v6-c-notification-drawer__list-item-header-title--FontSize);
|
|
191
186
|
font-weight: var(--pf-v6-c-notification-drawer__list-item-header-title--FontWeight);
|
|
192
|
-
line-height: var(--pf-v6-c-notification-drawer__list-item-header-title--LineHeight);
|
|
193
187
|
word-break: break-word;
|
|
194
188
|
}
|
|
195
189
|
.pf-v6-c-notification-drawer__list-item-header-title.pf-m-truncate {
|
|
@@ -62,10 +62,7 @@
|
|
|
62
62
|
--#{$notification-drawer}__list-item-header-icon--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
63
63
|
|
|
64
64
|
// List item header title
|
|
65
|
-
--#{$notification-drawer}__list-item-header-title--
|
|
66
|
-
--#{$notification-drawer}__list-item-header-title--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
67
|
-
--#{$notification-drawer}__list-item-header-title--FontWeight: var(--pf-t--global--font--weight--heading--bold);
|
|
68
|
-
--#{$notification-drawer}__list-item-header-title--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
65
|
+
--#{$notification-drawer}__list-item-header-title--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
69
66
|
--#{$notification-drawer}__list-item-header-title--max-lines: 1;
|
|
70
67
|
|
|
71
68
|
// List item description
|
|
@@ -229,10 +226,7 @@
|
|
|
229
226
|
}
|
|
230
227
|
|
|
231
228
|
.#{$notification-drawer}__list-item-header-title {
|
|
232
|
-
font-family: var(--#{$notification-drawer}__list-item-header-title--FontFamily);
|
|
233
|
-
font-size: var(--#{$notification-drawer}__list-item-header-title--FontSize);
|
|
234
229
|
font-weight: var(--#{$notification-drawer}__list-item-header-title--FontWeight);
|
|
235
|
-
line-height: var(--#{$notification-drawer}__list-item-header-title--LineHeight);
|
|
236
230
|
word-break: break-word;
|
|
237
231
|
|
|
238
232
|
&.pf-m-truncate {
|
|
@@ -35,17 +35,16 @@
|
|
|
35
35
|
--pf-v6-c-popover__arrow--m-inline-bottom--InsetBlockEnd: var(--pf-t--global--border--radius--medium);
|
|
36
36
|
--pf-v6-c-popover__arrow--m-block-left--InsetInlineStart: var(--pf-t--global--border--radius--medium);
|
|
37
37
|
--pf-v6-c-popover__arrow--m-block-right--InsetInlineEnd: var(--pf-t--global--border--radius--medium);
|
|
38
|
-
--pf-v6-c-popover__close--InsetBlockStart: calc(var(--pf-v6-c-popover__content--PaddingBlockStart) -
|
|
38
|
+
--pf-v6-c-popover__close--InsetBlockStart: calc(var(--pf-v6-c-popover__content--PaddingBlockStart) - var(--pf-t--global--spacer--control--vertical--default));
|
|
39
39
|
--pf-v6-c-popover__close--InsetInlineEnd: var(--pf-v6-c-popover__content--PaddingInlineEnd);
|
|
40
40
|
--pf-v6-c-popover__close--sibling--PaddingInlineEnd: var(--pf-t--global--spacer--2xl);
|
|
41
41
|
--pf-v6-c-popover__header--MarginBlockEnd: var(--pf-t--global--spacer--sm);
|
|
42
42
|
--pf-v6-c-popover__title-text--Color: var(--pf-t--global--text--color--regular);
|
|
43
|
-
--pf-v6-c-popover__title-text--FontFamily: var(--pf-t--global--font--family--body);
|
|
44
|
-
--pf-v6-c-popover__title-text--FontSize: var(--pf-t--global--font--size--body--lg);
|
|
45
43
|
--pf-v6-c-popover__title-text--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
44
|
+
--pf-v6-c-popover__title-text--FontSize: var(--pf-t--global--font--size--body--default);
|
|
46
45
|
--pf-v6-c-popover__title-icon--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
47
46
|
--pf-v6-c-popover__title-icon--Color: var(--pf-t--global--icon--color--regular);
|
|
48
|
-
--pf-v6-c-popover__title-icon--FontSize: var(--pf-t--global--
|
|
47
|
+
--pf-v6-c-popover__title-icon--FontSize: var(--pf-t--global--icon--size--font--body--default);
|
|
49
48
|
--pf-v6-c-popover__footer--MarginBlockStart: var(--pf-t--global--spacer--md);
|
|
50
49
|
}
|
|
51
50
|
|
|
@@ -188,7 +187,6 @@
|
|
|
188
187
|
}
|
|
189
188
|
|
|
190
189
|
.pf-v6-c-popover__title-text {
|
|
191
|
-
font-family: var(--pf-v6-c-popover__title-text--FontFamily);
|
|
192
190
|
font-size: var(--pf-v6-c-popover__title-text--FontSize);
|
|
193
191
|
font-weight: var(--pf-v6-c-popover__title-text--FontWeight);
|
|
194
192
|
color: var(--pf-v6-c-popover__title-text--Color);
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
--#{$popover}__arrow--m-block-right--InsetInlineEnd: var(--pf-t--global--border--radius--medium);
|
|
48
48
|
|
|
49
49
|
// Close
|
|
50
|
-
--#{$popover}__close--InsetBlockStart: calc(var(--#{$popover}__content--PaddingBlockStart) -
|
|
50
|
+
--#{$popover}__close--InsetBlockStart: calc(var(--#{$popover}__content--PaddingBlockStart) - var(--pf-t--global--spacer--control--vertical--default)); // align top of button with top of text
|
|
51
51
|
--#{$popover}__close--InsetInlineEnd: var(--#{$popover}__content--PaddingInlineEnd); // align right of content
|
|
52
52
|
--#{$popover}__close--sibling--PaddingInlineEnd: var(--pf-t--global--spacer--2xl);
|
|
53
53
|
|
|
@@ -56,14 +56,13 @@
|
|
|
56
56
|
|
|
57
57
|
// Title text
|
|
58
58
|
--#{$popover}__title-text--Color: var(--pf-t--global--text--color--regular);
|
|
59
|
-
--#{$popover}__title-text--FontFamily: var(--pf-t--global--font--family--body);
|
|
60
|
-
--#{$popover}__title-text--FontSize: var(--pf-t--global--font--size--body--lg);
|
|
61
59
|
--#{$popover}__title-text--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
60
|
+
--#{$popover}__title-text--FontSize: var(--pf-t--global--font--size--body--default);
|
|
62
61
|
|
|
63
62
|
// Title icon
|
|
64
63
|
--#{$popover}__title-icon--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
65
64
|
--#{$popover}__title-icon--Color: var(--pf-t--global--icon--color--regular);
|
|
66
|
-
--#{$popover}__title-icon--FontSize: var(--pf-t--global--
|
|
65
|
+
--#{$popover}__title-icon--FontSize: var(--pf-t--global--icon--size--font--body--default);
|
|
67
66
|
|
|
68
67
|
// Footer
|
|
69
68
|
--#{$popover}__footer--MarginBlockStart: var(--pf-t--global--spacer--md);
|
|
@@ -238,6 +237,7 @@
|
|
|
238
237
|
.#{$popover}__title {
|
|
239
238
|
display: flex;
|
|
240
239
|
flex: 0 0 auto;
|
|
240
|
+
|
|
241
241
|
}
|
|
242
242
|
|
|
243
243
|
.#{$popover}__title-icon {
|
|
@@ -247,7 +247,6 @@
|
|
|
247
247
|
}
|
|
248
248
|
|
|
249
249
|
.#{$popover}__title-text {
|
|
250
|
-
font-family: var(--#{$popover}__title-text--FontFamily);
|
|
251
250
|
font-size: var(--#{$popover}__title-text--FontSize);
|
|
252
251
|
font-weight: var(--#{$popover}__title-text--FontWeight);
|
|
253
252
|
color: var(--#{$popover}__title-text--Color);
|
|
@@ -443,7 +443,9 @@
|
|
|
443
443
|
|
|
444
444
|
.pf-v6-c-wizard__main {
|
|
445
445
|
z-index: var(--pf-v6-c-wizard__main--ZIndex);
|
|
446
|
-
|
|
446
|
+
display: flex;
|
|
447
|
+
flex-direction: column;
|
|
448
|
+
flex-grow: 1;
|
|
447
449
|
overflow-x: hidden;
|
|
448
450
|
overflow-y: auto;
|
|
449
451
|
word-break: break-word;
|
|
@@ -458,6 +460,9 @@
|
|
|
458
460
|
.pf-v6-c-wizard__main-body.pf-m-no-padding {
|
|
459
461
|
padding: 0;
|
|
460
462
|
}
|
|
463
|
+
.pf-v6-c-wizard__main-body:last-child {
|
|
464
|
+
flex-grow: 1;
|
|
465
|
+
}
|
|
461
466
|
|
|
462
467
|
.pf-v6-c-wizard__footer {
|
|
463
468
|
position: relative;
|
|
@@ -538,7 +538,9 @@
|
|
|
538
538
|
|
|
539
539
|
.#{$wizard}__main {
|
|
540
540
|
z-index: var(--#{$wizard}__main--ZIndex);
|
|
541
|
-
|
|
541
|
+
display: flex;
|
|
542
|
+
flex-direction: column;
|
|
543
|
+
flex-grow: 1;
|
|
542
544
|
overflow-x: hidden;
|
|
543
545
|
overflow-y: auto;
|
|
544
546
|
word-break: break-word;
|
|
@@ -553,6 +555,10 @@
|
|
|
553
555
|
&.pf-m-no-padding {
|
|
554
556
|
padding: 0;
|
|
555
557
|
}
|
|
558
|
+
|
|
559
|
+
&:last-child {
|
|
560
|
+
flex-grow: 1;
|
|
561
|
+
}
|
|
556
562
|
}
|
|
557
563
|
|
|
558
564
|
.#{$wizard}__footer {
|
package/components/_index.css
CHANGED
|
@@ -391,8 +391,8 @@
|
|
|
391
391
|
--pf-v6-c-alert--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
392
392
|
--pf-v6-c-alert--PaddingInlineStart: var(--pf-t--global--spacer--md);
|
|
393
393
|
--pf-v6-c-alert--FontSize: var(--pf-t--global--font--size--body--default);
|
|
394
|
-
--pf-v6-c-alert__toggle--MarginBlockStart: calc(
|
|
395
|
-
--pf-v6-c-alert__toggle--MarginBlockEnd: calc(
|
|
394
|
+
--pf-v6-c-alert__toggle--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
395
|
+
--pf-v6-c-alert__toggle--MarginBlockEnd: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
396
396
|
--pf-v6-c-alert__toggle--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
397
397
|
--pf-v6-c-alert__toggle-icon--Rotate: 0;
|
|
398
398
|
--pf-v6-c-alert__toggle-icon--Transition: var(--pf-t--global--transition);
|
|
@@ -400,10 +400,7 @@
|
|
|
400
400
|
--pf-v6-c-alert__icon--MarginBlockStart: 0.25rem;
|
|
401
401
|
--pf-v6-c-alert__icon--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
402
402
|
--pf-v6-c-alert__icon--FontSize: var(--pf-t--global--icon--size--md);
|
|
403
|
-
--pf-v6-c-alert__title--
|
|
404
|
-
--pf-v6-c-alert__title--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
405
|
-
--pf-v6-c-alert__title--FontWeight: var(--pf-t--global--font--weight--heading);
|
|
406
|
-
--pf-v6-c-alert__title--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
403
|
+
--pf-v6-c-alert__title--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
407
404
|
--pf-v6-c-alert__title--Color: var(--pf-t--global--text--color--regular);
|
|
408
405
|
--pf-v6-c-alert__title--max-lines: 1;
|
|
409
406
|
--pf-v6-c-alert__action--MarginBlockStart: calc(var(--pf-t--global--spacer--control--vertical--default) * -1);
|
|
@@ -537,10 +534,7 @@
|
|
|
537
534
|
|
|
538
535
|
.pf-v6-c-alert__title {
|
|
539
536
|
grid-area: title;
|
|
540
|
-
font-family: var(--pf-v6-c-alert__title--FontFamily);
|
|
541
|
-
font-size: var(--pf-v6-c-alert__title--FontSize);
|
|
542
537
|
font-weight: var(--pf-v6-c-alert__title--FontWeight);
|
|
543
|
-
line-height: var(--pf-v6-c-alert__title--LineHeight);
|
|
544
538
|
color: var(--pf-v6-c-alert__title--Color);
|
|
545
539
|
word-break: break-word;
|
|
546
540
|
}
|
|
@@ -2211,7 +2205,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
2211
2205
|
--pf-v6-c-card__title--not--last-child--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
|
2212
2206
|
--pf-v6-c-card__title-text--Color: var(--pf-t--global--text--color--regular);
|
|
2213
2207
|
--pf-v6-c-card__title-text--FontFamily: var(--pf-t--global--font--family--heading);
|
|
2214
|
-
--pf-v6-c-card__title-text--FontSize: var(--pf-t--global--font--size--heading--
|
|
2208
|
+
--pf-v6-c-card__title-text--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
2215
2209
|
--pf-v6-c-card__title-text--FontWeight: var(--pf-t--global--font--weight--heading);
|
|
2216
2210
|
--pf-v6-c-card__title-text--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
2217
2211
|
--pf-v6-c-card--c-button--disabled--Color: var(--pf-t--global--text--color--on-disabled);
|
|
@@ -7054,10 +7048,7 @@ select ~ .pf-v6-c-form-control__utilities {
|
|
|
7054
7048
|
--pf-v6-c-hint--BorderWidth: var(--pf-t--global--border--width--box--status--default);
|
|
7055
7049
|
--pf-v6-c-hint--BorderRadius: var(--pf-t--global--border--radius--medium);
|
|
7056
7050
|
--pf-v6-c-hint--Color: var(--pf-t--global--text--color--regular);
|
|
7057
|
-
--pf-v6-c-hint__title--
|
|
7058
|
-
--pf-v6-c-hint__title--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
7059
|
-
--pf-v6-c-hint__title--FontWeight: var(--pf-t--global--font--weight--heading);
|
|
7060
|
-
--pf-v6-c-hint__title--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
7051
|
+
--pf-v6-c-hint__title--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
7061
7052
|
--pf-v6-c-hint__body--FontSize: var(--pf-t--global--font--size--body--default);
|
|
7062
7053
|
--pf-v6-c-hint__footer--MarginBlockStart: var(--pf-t--global--spacer--sm);
|
|
7063
7054
|
--pf-v6-c-hint__footer--child--MarginInlineEnd: var(--pf-t--global--spacer--md);
|
|
@@ -7105,10 +7096,7 @@ select ~ .pf-v6-c-form-control__utilities {
|
|
|
7105
7096
|
|
|
7106
7097
|
.pf-v6-c-hint__title {
|
|
7107
7098
|
align-self: center;
|
|
7108
|
-
font-family: var(--pf-v6-c-hint__title--FontFamily);
|
|
7109
|
-
font-size: var(--pf-v6-c-hint__title--FontSize);
|
|
7110
7099
|
font-weight: var(--pf-v6-c-hint__title--FontWeight);
|
|
7111
|
-
line-height: var(--pf-v6-c-hint__title--LineHeight);
|
|
7112
7100
|
}
|
|
7113
7101
|
|
|
7114
7102
|
.pf-v6-c-hint__body {
|
|
@@ -11273,10 +11261,7 @@ ul.pf-v6-c-list {
|
|
|
11273
11261
|
--pf-v6-c-notification-drawer__list-item-header--MarginBlockEnd: var(--pf-t--global--spacer--xs);
|
|
11274
11262
|
--pf-v6-c-notification-drawer__list-item-header-icon--Color: inherit;
|
|
11275
11263
|
--pf-v6-c-notification-drawer__list-item-header-icon--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
11276
|
-
--pf-v6-c-notification-drawer__list-item-header-title--
|
|
11277
|
-
--pf-v6-c-notification-drawer__list-item-header-title--FontSize: var(--pf-t--global--font--size--heading--xs);
|
|
11278
|
-
--pf-v6-c-notification-drawer__list-item-header-title--FontWeight: var(--pf-t--global--font--weight--heading--bold);
|
|
11279
|
-
--pf-v6-c-notification-drawer__list-item-header-title--LineHeight: var(--pf-t--global--font--line-height--heading);
|
|
11264
|
+
--pf-v6-c-notification-drawer__list-item-header-title--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
11280
11265
|
--pf-v6-c-notification-drawer__list-item-header-title--max-lines: 1;
|
|
11281
11266
|
--pf-v6-c-notification-drawer__list-item-description--MarginBlockEnd: var(--pf-t--global--spacer--sm);
|
|
11282
11267
|
--pf-v6-c-notification-drawer__list-item-timestamp--Color: var(--pf-t--global--text--color--subtle);
|
|
@@ -11415,10 +11400,7 @@ ul.pf-v6-c-list {
|
|
|
11415
11400
|
}
|
|
11416
11401
|
|
|
11417
11402
|
.pf-v6-c-notification-drawer__list-item-header-title {
|
|
11418
|
-
font-family: var(--pf-v6-c-notification-drawer__list-item-header-title--FontFamily);
|
|
11419
|
-
font-size: var(--pf-v6-c-notification-drawer__list-item-header-title--FontSize);
|
|
11420
11403
|
font-weight: var(--pf-v6-c-notification-drawer__list-item-header-title--FontWeight);
|
|
11421
|
-
line-height: var(--pf-v6-c-notification-drawer__list-item-header-title--LineHeight);
|
|
11422
11404
|
word-break: break-word;
|
|
11423
11405
|
}
|
|
11424
11406
|
.pf-v6-c-notification-drawer__list-item-header-title.pf-m-truncate {
|
|
@@ -12743,17 +12725,16 @@ ul.pf-v6-c-list {
|
|
|
12743
12725
|
--pf-v6-c-popover__arrow--m-inline-bottom--InsetBlockEnd: var(--pf-t--global--border--radius--medium);
|
|
12744
12726
|
--pf-v6-c-popover__arrow--m-block-left--InsetInlineStart: var(--pf-t--global--border--radius--medium);
|
|
12745
12727
|
--pf-v6-c-popover__arrow--m-block-right--InsetInlineEnd: var(--pf-t--global--border--radius--medium);
|
|
12746
|
-
--pf-v6-c-popover__close--InsetBlockStart: calc(var(--pf-v6-c-popover__content--PaddingBlockStart) -
|
|
12728
|
+
--pf-v6-c-popover__close--InsetBlockStart: calc(var(--pf-v6-c-popover__content--PaddingBlockStart) - var(--pf-t--global--spacer--control--vertical--default));
|
|
12747
12729
|
--pf-v6-c-popover__close--InsetInlineEnd: var(--pf-v6-c-popover__content--PaddingInlineEnd);
|
|
12748
12730
|
--pf-v6-c-popover__close--sibling--PaddingInlineEnd: var(--pf-t--global--spacer--2xl);
|
|
12749
12731
|
--pf-v6-c-popover__header--MarginBlockEnd: var(--pf-t--global--spacer--sm);
|
|
12750
12732
|
--pf-v6-c-popover__title-text--Color: var(--pf-t--global--text--color--regular);
|
|
12751
|
-
--pf-v6-c-popover__title-text--FontFamily: var(--pf-t--global--font--family--body);
|
|
12752
|
-
--pf-v6-c-popover__title-text--FontSize: var(--pf-t--global--font--size--body--lg);
|
|
12753
12733
|
--pf-v6-c-popover__title-text--FontWeight: var(--pf-t--global--font--weight--body--bold);
|
|
12734
|
+
--pf-v6-c-popover__title-text--FontSize: var(--pf-t--global--font--size--body--default);
|
|
12754
12735
|
--pf-v6-c-popover__title-icon--MarginInlineEnd: var(--pf-t--global--spacer--sm);
|
|
12755
12736
|
--pf-v6-c-popover__title-icon--Color: var(--pf-t--global--icon--color--regular);
|
|
12756
|
-
--pf-v6-c-popover__title-icon--FontSize: var(--pf-t--global--
|
|
12737
|
+
--pf-v6-c-popover__title-icon--FontSize: var(--pf-t--global--icon--size--font--body--default);
|
|
12757
12738
|
--pf-v6-c-popover__footer--MarginBlockStart: var(--pf-t--global--spacer--md);
|
|
12758
12739
|
}
|
|
12759
12740
|
|
|
@@ -12896,7 +12877,6 @@ ul.pf-v6-c-list {
|
|
|
12896
12877
|
}
|
|
12897
12878
|
|
|
12898
12879
|
.pf-v6-c-popover__title-text {
|
|
12899
|
-
font-family: var(--pf-v6-c-popover__title-text--FontFamily);
|
|
12900
12880
|
font-size: var(--pf-v6-c-popover__title-text--FontSize);
|
|
12901
12881
|
font-weight: var(--pf-v6-c-popover__title-text--FontWeight);
|
|
12902
12882
|
color: var(--pf-v6-c-popover__title-text--Color);
|
|
@@ -22865,7 +22845,9 @@ label.pf-v6-c-tree-view__node-text {
|
|
|
22865
22845
|
|
|
22866
22846
|
.pf-v6-c-wizard__main {
|
|
22867
22847
|
z-index: var(--pf-v6-c-wizard__main--ZIndex);
|
|
22868
|
-
|
|
22848
|
+
display: flex;
|
|
22849
|
+
flex-direction: column;
|
|
22850
|
+
flex-grow: 1;
|
|
22869
22851
|
overflow-x: hidden;
|
|
22870
22852
|
overflow-y: auto;
|
|
22871
22853
|
word-break: break-word;
|
|
@@ -22880,6 +22862,9 @@ label.pf-v6-c-tree-view__node-text {
|
|
|
22880
22862
|
.pf-v6-c-wizard__main-body.pf-m-no-padding {
|
|
22881
22863
|
padding: 0;
|
|
22882
22864
|
}
|
|
22865
|
+
.pf-v6-c-wizard__main-body:last-child {
|
|
22866
|
+
flex-grow: 1;
|
|
22867
|
+
}
|
|
22883
22868
|
|
|
22884
22869
|
.pf-v6-c-wizard__footer {
|
|
22885
22870
|
position: relative;
|
|
@@ -1835,7 +1835,7 @@ Sed hendrerit nisi in cursus maximus. Ut malesuada nisi turpis, in condimentum v
|
|
|
1835
1835
|
|
|
1836
1836
|
### Counts
|
|
1837
1837
|
|
|
1838
|
-
```html
|
|
1838
|
+
```html
|
|
1839
1839
|
<button class="pf-v6-c-button pf-m-primary" type="button">
|
|
1840
1840
|
<span class="pf-v6-c-button__text">View issues</span>
|
|
1841
1841
|
<span class="pf-v6-c-button__count">
|
|
@@ -6441,7 +6441,7 @@ This style of label is used to indicate overflow within a label group.
|
|
|
6441
6441
|
|
|
6442
6442
|
**Note: Editable label behavior must be handled with JavaScript.**
|
|
6443
6443
|
|
|
6444
|
-
```html
|
|
6444
|
+
```html
|
|
6445
6445
|
<span class="pf-v6-c-label pf-m-filled pf-m-editable pf-m-blue">
|
|
6446
6446
|
<button
|
|
6447
6447
|
class="pf-v6-c-label__content"
|
|
@@ -6523,7 +6523,7 @@ This style of label is used to indicate overflow within a label group.
|
|
|
6523
6523
|
|
|
6524
6524
|
This style of label is used to add new labels to a label group.
|
|
6525
6525
|
|
|
6526
|
-
```html
|
|
6526
|
+
```html
|
|
6527
6527
|
<button class="pf-v6-c-label pf-m-add" type="button">
|
|
6528
6528
|
<span class="pf-v6-c-label__content">
|
|
6529
6529
|
<span class="pf-v6-c-label__text">Add Label</span>
|
|
@@ -7190,7 +7190,7 @@ In addition to the JavaScript management of [editable labels](/components/label#
|
|
|
7190
7190
|
|
|
7191
7191
|
### Editable labels, dynamic label group
|
|
7192
7192
|
|
|
7193
|
-
```html
|
|
7193
|
+
```html
|
|
7194
7194
|
<div class="pf-v6-c-label-group pf-m-editable">
|
|
7195
7195
|
<div class="pf-v6-c-label-group__main">
|
|
7196
7196
|
<ul
|
|
@@ -7298,7 +7298,7 @@ In addition to the JavaScript management of [editable labels](/components/label#
|
|
|
7298
7298
|
|
|
7299
7299
|
### Editable labels, label active, dynamic label group
|
|
7300
7300
|
|
|
7301
|
-
```html
|
|
7301
|
+
```html
|
|
7302
7302
|
<div class="pf-v6-c-label-group pf-m-editable">
|
|
7303
7303
|
<div class="pf-v6-c-label-group__main">
|
|
7304
7304
|
<ul
|
|
@@ -7484,7 +7484,7 @@ In addition to the JavaScript management of [editable labels](/components/label#
|
|
|
7484
7484
|
|
|
7485
7485
|
### Mixed labels (static / editable), dynamic label group
|
|
7486
7486
|
|
|
7487
|
-
```html
|
|
7487
|
+
```html
|
|
7488
7488
|
<div class="pf-v6-c-label-group pf-m-editable">
|
|
7489
7489
|
<div class="pf-v6-c-label-group__main">
|
|
7490
7490
|
<ul
|
|
@@ -394,7 +394,7 @@ cssPrefix: pf-v6-c-menu
|
|
|
394
394
|
|
|
395
395
|
### With flyout
|
|
396
396
|
|
|
397
|
-
```html
|
|
397
|
+
```html
|
|
398
398
|
<div class="pf-v6-c-menu pf-m-flyout">
|
|
399
399
|
<div class="pf-v6-c-menu__content">
|
|
400
400
|
<ul class="pf-v6-c-menu__list" role="menu">
|
|
@@ -558,7 +558,7 @@ cssPrefix: pf-v6-c-menu
|
|
|
558
558
|
|
|
559
559
|
### With flyout menu top
|
|
560
560
|
|
|
561
|
-
```html
|
|
561
|
+
```html
|
|
562
562
|
<div class="pf-v6-c-menu pf-m-flyout">
|
|
563
563
|
<div class="pf-v6-c-menu__content">
|
|
564
564
|
<ul class="pf-v6-c-menu__list" role="menu">
|
|
@@ -722,7 +722,7 @@ cssPrefix: pf-v6-c-menu
|
|
|
722
722
|
|
|
723
723
|
### With flyout menu left
|
|
724
724
|
|
|
725
|
-
```html
|
|
725
|
+
```html
|
|
726
726
|
<div class="pf-v6-c-menu pf-m-flyout">
|
|
727
727
|
<div class="pf-v6-c-menu__content">
|
|
728
728
|
<ul class="pf-v6-c-menu__list" role="menu">
|
|
@@ -886,7 +886,7 @@ cssPrefix: pf-v6-c-menu
|
|
|
886
886
|
|
|
887
887
|
### With flyout menu left top
|
|
888
888
|
|
|
889
|
-
```html
|
|
889
|
+
```html
|
|
890
890
|
<div class="pf-v6-c-menu pf-m-flyout">
|
|
891
891
|
<div class="pf-v6-c-menu__content">
|
|
892
892
|
<ul class="pf-v6-c-menu__list" role="menu">
|
|
@@ -1050,7 +1050,7 @@ cssPrefix: pf-v6-c-menu
|
|
|
1050
1050
|
|
|
1051
1051
|
### Drilldown
|
|
1052
1052
|
|
|
1053
|
-
```html
|
|
1053
|
+
```html
|
|
1054
1054
|
<div class="pf-v6-c-menu pf-m-drilldown">
|
|
1055
1055
|
<div class="pf-v6-c-menu__content">
|
|
1056
1056
|
<ul class="pf-v6-c-menu__list" role="menu">
|
|
@@ -1569,7 +1569,7 @@ cssPrefix: pf-v6-c-menu
|
|
|
1569
1569
|
|
|
1570
1570
|
### Drilldown level two
|
|
1571
1571
|
|
|
1572
|
-
```html
|
|
1572
|
+
```html
|
|
1573
1573
|
<div class="pf-v6-c-menu pf-m-drilldown pf-m-drilled-in">
|
|
1574
1574
|
<div
|
|
1575
1575
|
class="pf-v6-c-menu__content"
|
|
@@ -2091,7 +2091,7 @@ cssPrefix: pf-v6-c-menu
|
|
|
2091
2091
|
|
|
2092
2092
|
### Drilldown level three
|
|
2093
2093
|
|
|
2094
|
-
```html
|
|
2094
|
+
```html
|
|
2095
2095
|
<div class="pf-v6-c-menu pf-m-drilldown pf-m-drilled-in">
|
|
2096
2096
|
<div
|
|
2097
2097
|
class="pf-v6-c-menu__content"
|
|
@@ -2613,7 +2613,7 @@ cssPrefix: pf-v6-c-menu
|
|
|
2613
2613
|
|
|
2614
2614
|
### Drilldown level four
|
|
2615
2615
|
|
|
2616
|
-
```html
|
|
2616
|
+
```html
|
|
2617
2617
|
<div class="pf-v6-c-menu pf-m-drilldown pf-m-drilled-in">
|
|
2618
2618
|
<div
|
|
2619
2619
|
class="pf-v6-c-menu__content"
|
|
@@ -3138,7 +3138,7 @@ cssPrefix: pf-v6-c-menu
|
|
|
3138
3138
|
|
|
3139
3139
|
### Scrollable drilldown
|
|
3140
3140
|
|
|
3141
|
-
```html
|
|
3141
|
+
```html
|
|
3142
3142
|
<div
|
|
3143
3143
|
class="pf-v6-c-menu pf-m-drilldown pf-m-scrollable"
|
|
3144
3144
|
style="--pf-v6-c-menu__content--MaxHeight: 180px;"
|
|
@@ -3660,7 +3660,7 @@ cssPrefix: pf-v6-c-menu
|
|
|
3660
3660
|
|
|
3661
3661
|
### Width modified drilldown
|
|
3662
3662
|
|
|
3663
|
-
```html
|
|
3663
|
+
```html
|
|
3664
3664
|
<div class="pf-v6-c-menu pf-m-drilldown" style="--pf-v6-c-menu--Width: 350px;">
|
|
3665
3665
|
<div class="pf-v6-c-menu__content">
|
|
3666
3666
|
<ul class="pf-v6-c-menu__list" role="menu">
|
|
@@ -4179,7 +4179,7 @@ cssPrefix: pf-v6-c-menu
|
|
|
4179
4179
|
|
|
4180
4180
|
### Drilldown with breadcrumbs - level 1
|
|
4181
4181
|
|
|
4182
|
-
```html
|
|
4182
|
+
```html
|
|
4183
4183
|
<div class="pf-v6-c-menu pf-m-drilldown">
|
|
4184
4184
|
<div class="pf-v6-c-menu__content">
|
|
4185
4185
|
<ul class="pf-v6-c-menu__list" role="menu">
|
|
@@ -4359,7 +4359,7 @@ cssPrefix: pf-v6-c-menu
|
|
|
4359
4359
|
|
|
4360
4360
|
### Drilldown with breadcrumbs - level 2
|
|
4361
4361
|
|
|
4362
|
-
```html
|
|
4362
|
+
```html
|
|
4363
4363
|
<div
|
|
4364
4364
|
class="pf-v6-c-menu pf-m-drilldown pf-m-drilled-in"
|
|
4365
4365
|
style="--pf-v6-c-menu__content--Height: 74px;"
|
|
@@ -4567,7 +4567,7 @@ cssPrefix: pf-v6-c-menu
|
|
|
4567
4567
|
|
|
4568
4568
|
### Drilldown with breadcrumbs - level 3
|
|
4569
4569
|
|
|
4570
|
-
```html
|
|
4570
|
+
```html
|
|
4571
4571
|
<div
|
|
4572
4572
|
class="pf-v6-c-menu pf-m-drilldown pf-m-drilled-in"
|
|
4573
4573
|
style="--pf-v6-c-menu__content--Height: 111px;"
|
|
@@ -4799,7 +4799,7 @@ cssPrefix: pf-v6-c-menu
|
|
|
4799
4799
|
|
|
4800
4800
|
### Drilldown with breadcrumbs - level 4
|
|
4801
4801
|
|
|
4802
|
-
```html
|
|
4802
|
+
```html
|
|
4803
4803
|
<div
|
|
4804
4804
|
class="pf-v6-c-menu pf-m-drilldown pf-m-drilled-in"
|
|
4805
4805
|
style="--pf-v6-c-menu__content--Height: 185px;"
|
|
@@ -5034,27 +5034,27 @@ cssPrefix: pf-v6-c-menu
|
|
|
5034
5034
|
|
|
5035
5035
|
<!--
|
|
5036
5036
|
### Drilldown managed height
|
|
5037
|
-
```hbs
|
|
5037
|
+
```hbs
|
|
5038
5038
|
{{> menu--Drilldown menu--Drilldown--id="drilldown-managed-height" menu--Drilldown--menu--attribute='style="--pf-v6-c-menu--MaxHeight: 120px; --pf-v6-c-menu__content--Height: 216px;"'}}
|
|
5039
5039
|
```
|
|
5040
5040
|
|
|
5041
5041
|
### Drilldown managed height level two
|
|
5042
|
-
```hbs
|
|
5042
|
+
```hbs
|
|
5043
5043
|
{{> menu--Drilldown menu--Drilldown--id="drilldown-managed-height-level-2" menu--Drilldown--IsDrilledIn--list-1="true" menu--Drilldown--menu--attribute='style="--pf-v6-c-menu--MaxHeight: 120px; --pf-v6-c-menu__content--Height: 193px;"'}}
|
|
5044
5044
|
```
|
|
5045
5045
|
|
|
5046
5046
|
### Drilldown managed height level three
|
|
5047
|
-
```hbs
|
|
5047
|
+
```hbs
|
|
5048
5048
|
{{> menu--Drilldown menu--Drilldown--id="drilldown-managed-height-level-3" menu--Drilldown--IsDrilledIn--list-1="true" menu--Drilldown--IsDrilledIn--list-2="true" menu--Drilldown--menu--attribute='style="--pf-v6-c-menu--MaxHeight: 120px; --pf-v6-c-menu__content--Height: 233px;"'}}
|
|
5049
5049
|
```
|
|
5050
5050
|
|
|
5051
5051
|
### Drilldown managed height level four
|
|
5052
|
-
```hbs
|
|
5052
|
+
```hbs
|
|
5053
5053
|
{{> menu--Drilldown menu--Drilldown--id="drilldown-managed-height-level-4" menu--Drilldown--IsDrilledIn--list-1="true" menu--Drilldown--IsDrilledIn--list-2="true" menu--Drilldown--IsDrilledIn--list-3="true" menu--Drilldown--menu--attribute='style="--pf-v6-c-menu--MaxHeight: 120px; --pf-v6-c-menu__content--Height: 216px;"'}}
|
|
5054
5054
|
```
|
|
5055
5055
|
|
|
5056
5056
|
### Drilldown with breadcrumbs and managed height - level 4
|
|
5057
|
-
```hbs
|
|
5057
|
+
```hbs
|
|
5058
5058
|
{{#> menu menu--id="drilldown-with-breadcrumbs-and-managed-height-level-4" menu--modifier="pf-m-drilldown pf-m-drilled-in" menu--attribute='style="--pf-v6-c-menu--MaxHeight: 120px; --pf-v6-c-menu__content--Height: 216px;"'}}
|
|
5059
5059
|
{{> menu-breadcrumbs--Drilldown breadcrumb--id="drilldown-with-breadcrumbs-level-4" menu-breadcrumbs--Drilldown--IsLevel4="true"}}
|
|
5060
5060
|
{{> menu-content--Breadcrumbs menu-content--Breadcrumbs--level2="true" menu-content--Breadcrumbs--level3="true" menu-content--Breadcrumbs--level4="true"}}
|