@patternfly/patternfly 6.5.0-prerelease.51 → 6.5.0-prerelease.52
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/Button/button.css +22 -2
- package/components/Button/button.scss +26 -2
- package/components/Masthead/masthead.css +38 -4
- package/components/Masthead/masthead.scss +52 -4
- package/components/MenuToggle/menu-toggle.css +26 -2
- package/components/MenuToggle/menu-toggle.scss +30 -2
- package/components/Nav/nav.css +16 -8
- package/components/Nav/nav.scss +16 -8
- package/components/Page/page.css +59 -7
- package/components/Page/page.scss +79 -15
- package/components/_index.css +161 -23
- package/docs/components/Breadcrumb/examples/Breadcrumb.md +0 -1
- package/docs/components/Button/examples/Button.md +339 -0
- package/docs/components/Masthead/examples/masthead.md +1 -1
- package/docs/components/Menu/examples/Menu.md +0 -2
- package/docs/components/MenuToggle/examples/MenuToggle.md +1 -4
- package/docs/components/Pagination/examples/Pagination.md +0 -13
- package/docs/components/Toolbar/examples/Toolbar.md +0 -2
- package/docs/demos/AboutModal/examples/AboutModal.md +1 -0
- package/docs/demos/Alert/examples/Alert.md +3 -0
- package/docs/demos/BackToTop/examples/BackToTop.md +1 -0
- package/docs/demos/Banner/examples/Banner.md +2 -0
- package/docs/demos/CardView/examples/CardView.md +1 -2
- package/docs/demos/Compass/examples/Compass.md +158 -52
- package/docs/demos/Dashboard/examples/Dashboard.md +1 -0
- package/docs/demos/DataList/examples/DataList.md +4 -8
- package/docs/demos/DescriptionList/examples/DescriptionList.md +3 -0
- package/docs/demos/Drawer/examples/Drawer.md +5 -0
- package/docs/demos/JumpLinks/examples/JumpLinks.md +6 -0
- package/docs/demos/Masthead/examples/Masthead.md +9 -58
- package/docs/demos/Modal/examples/Modal.md +6 -0
- package/docs/demos/Nav/examples/Nav.md +305 -160
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +5 -0
- package/docs/demos/Page/examples/Page.md +14 -0
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +7 -6
- package/docs/demos/Skeleton/examples/Skeleton.md +1 -0
- package/docs/demos/Table/examples/Table.md +16 -27
- package/docs/demos/Tabs/examples/Tabs.md +6 -0
- package/docs/demos/Toolbar/examples/Toolbar.md +2 -8
- package/docs/demos/Wizard/examples/Wizard.md +9 -0
- package/package.json +1 -1
- package/patternfly-no-globals.css +161 -23
- package/patternfly.css +161 -23
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/scss-variables.scss +3 -0
|
@@ -9,11 +9,25 @@ $pf-page-v6--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
|
|
|
9
9
|
--#{$page}--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
|
|
10
10
|
--#{$page}--inset: var(--pf-t--global--spacer--inset--page-chrome);
|
|
11
11
|
|
|
12
|
+
// Docked nav
|
|
13
|
+
--#{$page}--m-dock__main-container--MaxHeight: calc(100% - var(--pf-t--global--spacer--lg) * 2);
|
|
14
|
+
--#{$page}--m-dock__main-container--MarginBlockStart: 0;
|
|
15
|
+
--#{$page}--m-dock__main-container--xl--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
|
16
|
+
--#{$page}--m-dock--ColumnGap: var(--pf-t--global--spacer--inset--page-chrome);
|
|
17
|
+
--#{$page}--m-dock--c-masthead--m-display-inline--GridTemplateColumns: min-content 1fr;
|
|
18
|
+
|
|
12
19
|
// Header
|
|
13
20
|
--#{$page}--c-masthead--ZIndex: var(--pf-t--global--z-index--md);
|
|
14
21
|
|
|
15
22
|
// Dock
|
|
23
|
+
--#{$page}__dock--Width: #{pf-size-prem(250px)};
|
|
24
|
+
--#{$page}__dock--desktop--Width: auto;
|
|
16
25
|
--#{$page}__dock--ZIndex: var(--pf-t--global--z-index--md);
|
|
26
|
+
--#{$page}__dock--BorderInlineEndWidth: var(--pf-t--global--border--width--regular);
|
|
27
|
+
--#{$page}__dock--BorderInlineEndColor: var(--pf-t--global--border--color--default);
|
|
28
|
+
--#{$page}__dock--TransitionDuration--slide: 0s;
|
|
29
|
+
--#{$page}__dock--m-expanded--TransitionDuration--slide: 0s;
|
|
30
|
+
--#{$page}__dock--TransitionTimingFunction--slide: var(--pf-t--global--motion--timing-function--decelerate);
|
|
17
31
|
|
|
18
32
|
// Sidebar
|
|
19
33
|
--#{$page}__sidebar--ZIndex: var(--pf-t--global--z-index--sm);
|
|
@@ -45,6 +59,8 @@ $pf-page-v6--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
|
|
|
45
59
|
--#{$page}__sidebar--Opacity: 1;
|
|
46
60
|
--#{$page}__sidebar--TransitionProperty: transform;
|
|
47
61
|
--#{$page}__sidebar--TransitionDuration: var(--pf-t--global--motion--duration--slide-in--default);
|
|
62
|
+
--#{$page}__dock--TransitionDuration--slide: var(--pf-t--global--motion--duration--slide-out--short);
|
|
63
|
+
--#{$page}__dock--m-expanded--TransitionDuration--slide: var(--pf-t--global--motion--duration--slide-in--default);
|
|
48
64
|
}
|
|
49
65
|
|
|
50
66
|
// Sidebar header
|
|
@@ -169,11 +185,6 @@ $pf-page-v6--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
|
|
|
169
185
|
// Drawer section
|
|
170
186
|
--#{$page}__drawer--c-drawer--BorderBlockStartWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
171
187
|
--#{$page}__drawer--c-drawer--BorderBlockStartColor: var(--pf-t--global--border--color--high-contrast);
|
|
172
|
-
|
|
173
|
-
// Docked nav
|
|
174
|
-
--#{$page}--m-dock__main-container--MaxHeight: calc(100% - var(--pf-t--global--spacer--lg) * 2);
|
|
175
|
-
--#{$page}--m-dock__main-container--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
|
176
|
-
--#{$page}--m-dock--ColumnGap: var(--pf-t--global--spacer--inset--page-chrome);
|
|
177
188
|
}
|
|
178
189
|
|
|
179
190
|
.#{$page} {
|
|
@@ -202,12 +213,26 @@ $pf-page-v6--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
|
|
|
202
213
|
--#{$page}--masthead--main-container--GridArea: main;
|
|
203
214
|
--#{$page}__main-container--MaxHeight: var(--#{$page}--m-dock__main-container--MaxHeight);
|
|
204
215
|
--#{$page}__main-container--MarginBlockStart: var(--#{$page}--m-dock__main-container--MarginBlockStart);
|
|
205
|
-
--#{$page}__main-container--MarginInlineStart: 0;
|
|
206
216
|
|
|
207
|
-
grid-template-areas:
|
|
208
|
-
|
|
217
|
+
grid-template-areas:
|
|
218
|
+
"header header"
|
|
219
|
+
"dock main";
|
|
220
|
+
grid-template-rows: max-content 1fr;
|
|
209
221
|
grid-template-columns: auto 1fr;
|
|
210
|
-
|
|
222
|
+
|
|
223
|
+
@media (min-width: $pf-v6-global--breakpoint--dock--expand) {
|
|
224
|
+
--#{$page}__main-container--MarginBlockStart: var(--#{$page}--m-dock__main-container--xl--MarginBlockStart);
|
|
225
|
+
--#{$page}__main-container--MarginInlineStart: 0;
|
|
226
|
+
|
|
227
|
+
grid-template-areas: "dock main";
|
|
228
|
+
grid-template-rows: auto;
|
|
229
|
+
grid-template-columns: auto 1fr;
|
|
230
|
+
column-gap: var(--#{$page}--m-dock--ColumnGap);
|
|
231
|
+
|
|
232
|
+
> .#{$masthead} {
|
|
233
|
+
display: none;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
211
236
|
}
|
|
212
237
|
|
|
213
238
|
// Hamburger menu animation
|
|
@@ -241,19 +266,58 @@ $pf-page-v6--height-breakpoint-map: build-breakpoint-map("base", "sm", "md", "lg
|
|
|
241
266
|
}
|
|
242
267
|
|
|
243
268
|
// Header
|
|
244
|
-
.#{$page}
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
269
|
+
.#{$page} {
|
|
270
|
+
> .#{$masthead} {
|
|
271
|
+
@media (min-width: $pf-v6-global--breakpoint--xl) {
|
|
272
|
+
--#{$masthead}--m-display-inline--GridTemplateColumns: var(--#{$masthead}--m-display-inline--breakpoint--xl--GridTemplateColumns);
|
|
273
|
+
}
|
|
248
274
|
|
|
249
|
-
|
|
250
|
-
|
|
275
|
+
z-index: var(--#{$page}--c-masthead--ZIndex);
|
|
276
|
+
grid-area: header;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
&.pf-m-dock {
|
|
280
|
+
> .#{$masthead} {
|
|
281
|
+
--#{$masthead}--m-display-inline--GridTemplateColumns: var(--#{$page}--m-dock--c-masthead--m-display-inline--GridTemplateColumns);
|
|
282
|
+
}
|
|
283
|
+
}
|
|
251
284
|
}
|
|
252
285
|
|
|
253
286
|
// Dock
|
|
254
287
|
.#{$page}__dock {
|
|
288
|
+
position: fixed;
|
|
289
|
+
inset-block-start: 0;
|
|
290
|
+
inset-block-end: 0;
|
|
291
|
+
inset-inline-start: 0;
|
|
255
292
|
z-index: var(--#{$page}__dock--ZIndex);
|
|
256
293
|
grid-area: dock;
|
|
294
|
+
width: var(--#{$page}__dock--Width);
|
|
295
|
+
transition: translate var(--#{$page}__dock--TransitionDuration--slide) var(--#{$page}__dock--TransitionTimingFunction--slide);
|
|
296
|
+
translate: -100% 0;
|
|
297
|
+
|
|
298
|
+
&.pf-m-expanded {
|
|
299
|
+
--#{$page}__dock--TransitionDuration--slide: var(--#{$page}__dock--m-expanded--TransitionDuration--slide);
|
|
300
|
+
|
|
301
|
+
border-inline-end: var(--#{$page}__dock--BorderInlineEndWidth) solid var(--#{$page}__dock--BorderInlineEndColor);
|
|
302
|
+
translate: 0;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
@media (min-width: $pf-v6-global--breakpoint--dock--expand) {
|
|
306
|
+
--#{$page}__dock--BorderInlineEndWidth: 0;
|
|
307
|
+
|
|
308
|
+
position: revert;
|
|
309
|
+
inset: revert;
|
|
310
|
+
width: auto;
|
|
311
|
+
translate: 0;
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.#{$toolbar}.pf-m-vertical :is(.#{$toolbar}__content-section, .#{$toolbar}__group, .#{$toolbar}__item) {
|
|
315
|
+
align-items: stretch;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
&.pf-m-text-expanded {
|
|
319
|
+
width: var(--#{$page}__dock--Width);
|
|
320
|
+
}
|
|
257
321
|
}
|
|
258
322
|
|
|
259
323
|
// Sidebar
|
package/components/_index.css
CHANGED
|
@@ -1605,7 +1605,7 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
1605
1605
|
--pf-v6-c-button--AlignItems: baseline;
|
|
1606
1606
|
--pf-v6-c-button--JustifyContent: center;
|
|
1607
1607
|
--pf-v6-c-button--Gap: var(--pf-t--global--spacer--gap--text-to-element--default);
|
|
1608
|
-
--pf-v6-c-button--MinWidth:
|
|
1608
|
+
--pf-v6-c-button--MinWidth: initial;
|
|
1609
1609
|
--pf-v6-c-button--PaddingBlockStart: var(--pf-t--global--spacer--control--vertical--default);
|
|
1610
1610
|
--pf-v6-c-button--PaddingInlineEnd: var(--pf-t--global--spacer--action--horizontal--default);
|
|
1611
1611
|
--pf-v6-c-button--PaddingBlockEnd: var(--pf-t--global--spacer--control--vertical--default);
|
|
@@ -1973,7 +1973,7 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
1973
1973
|
gap: var(--pf-v6-c-button--Gap);
|
|
1974
1974
|
align-items: var(--pf-v6-c-button--AlignItems);
|
|
1975
1975
|
justify-content: var(--pf-v6-c-button--JustifyContent);
|
|
1976
|
-
min-width: var(--pf-v6-c-button--MinWidth);
|
|
1976
|
+
min-width: var(--pf-v6-c-button--MinWidth, revert);
|
|
1977
1977
|
padding-block-start: var(--pf-v6-c-button--PaddingBlockStart);
|
|
1978
1978
|
padding-block-end: var(--pf-v6-c-button--PaddingBlockEnd);
|
|
1979
1979
|
padding-inline-start: var(--pf-v6-c-button--PaddingInlineStart);
|
|
@@ -2460,8 +2460,28 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
2460
2460
|
animation-duration: var(--pf-v6-c-button--m-notify__icon--AnimationDuration--notify);
|
|
2461
2461
|
animation-timing-function: var(--pf-v6-c-button--m-notify__icon--AnimationTimingFunction--notify);
|
|
2462
2462
|
}
|
|
2463
|
+
.pf-v6-c-button.pf-m-dock {
|
|
2464
|
+
justify-content: flex-start;
|
|
2465
|
+
width: 100%;
|
|
2466
|
+
}
|
|
2467
|
+
@media (min-width: 62rem) {
|
|
2468
|
+
.pf-v6-c-button.pf-m-dock {
|
|
2469
|
+
justify-content: center;
|
|
2470
|
+
}
|
|
2471
|
+
.pf-v6-c-button.pf-m-dock .pf-v6-c-button__text {
|
|
2472
|
+
display: none;
|
|
2473
|
+
}
|
|
2474
|
+
}
|
|
2475
|
+
.pf-v6-c-page__dock.pf-m-text-expanded .pf-v6-c-button, .pf-v6-c-button.pf-m-text-expanded {
|
|
2476
|
+
justify-content: flex-start;
|
|
2477
|
+
width: 100%;
|
|
2478
|
+
}
|
|
2479
|
+
.pf-v6-c-page__dock.pf-m-text-expanded .pf-v6-c-button .pf-v6-c-button__text, .pf-v6-c-button.pf-m-text-expanded .pf-v6-c-button__text {
|
|
2480
|
+
display: revert;
|
|
2481
|
+
}
|
|
2463
2482
|
|
|
2464
2483
|
.pf-v6-c-button__icon {
|
|
2484
|
+
min-width: 1lh;
|
|
2465
2485
|
margin-inline-start: var(--pf-v6-c-button__icon--MarginInlineStart);
|
|
2466
2486
|
margin-inline-end: var(--pf-v6-c-button__icon--MarginInlineEnd);
|
|
2467
2487
|
color: var(--pf-v6-c-button__icon--Color);
|
|
@@ -10379,6 +10399,7 @@ ul.pf-v6-c-list {
|
|
|
10379
10399
|
--pf-v6-c-masthead--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
|
|
10380
10400
|
--pf-v6-c-masthead__main--ColumnGap: var(--pf-t--global--spacer--md);
|
|
10381
10401
|
--pf-v6-c-masthead__main--MarginInlineEnd: var(--pf-t--global--spacer--inset--page-chrome);
|
|
10402
|
+
--pf-v6-c-masthead--m-docked__main--RowGap: var(--pf-t--global--spacer--gap--group--vertical);
|
|
10382
10403
|
--pf-v6-c-masthead__logo--MaxHeight: 2.375rem;
|
|
10383
10404
|
--pf-v6-c-masthead__logo--Width: 11.8125rem;
|
|
10384
10405
|
--pf-v6-c-masthead__toggle--Size: var(--pf-t--global--icon--size--xl);
|
|
@@ -10495,24 +10516,57 @@ ul.pf-v6-c-list {
|
|
|
10495
10516
|
--pf-v6-c-masthead--m-display-inline--breakpoint--xl--GridTemplateColumns: auto;
|
|
10496
10517
|
--pf-v6-c-masthead__main--GridColumn: auto;
|
|
10497
10518
|
--pf-v6-c-masthead__content--GridColumn: auto;
|
|
10498
|
-
--pf-v6-c-masthead__logo--Width: auto;
|
|
10499
10519
|
--pf-v6-c-masthead__main--MarginInlineEnd: 0;
|
|
10500
10520
|
display: flex;
|
|
10501
10521
|
flex-direction: column;
|
|
10502
|
-
align-items:
|
|
10503
|
-
width: fit-content;
|
|
10522
|
+
align-items: stretch;
|
|
10504
10523
|
height: 100%;
|
|
10505
10524
|
backdrop-filter: var(--pf-v6-c-masthead--m-docked--BackdropFilter);
|
|
10506
10525
|
}
|
|
10526
|
+
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__logo {
|
|
10527
|
+
width: revert;
|
|
10528
|
+
}
|
|
10529
|
+
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__logo.pf-m-compact {
|
|
10530
|
+
display: none;
|
|
10531
|
+
max-width: 2.3125rem;
|
|
10532
|
+
max-height: revert;
|
|
10533
|
+
}
|
|
10534
|
+
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__main {
|
|
10535
|
+
flex-direction: column;
|
|
10536
|
+
row-gap: var(--pf-v6-c-masthead--m-docked__main--RowGap);
|
|
10537
|
+
align-items: flex-start;
|
|
10538
|
+
}
|
|
10507
10539
|
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__content {
|
|
10508
10540
|
flex-grow: 1;
|
|
10509
10541
|
flex-direction: column;
|
|
10542
|
+
align-items: stretch;
|
|
10510
10543
|
align-self: revert;
|
|
10511
10544
|
}
|
|
10512
10545
|
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-toolbar {
|
|
10513
|
-
--pf-v6-c-
|
|
10546
|
+
--pf-v6-c-toolbar--m-vertical--Width: auto;
|
|
10514
10547
|
height: var(--pf-v6-c-masthead--m-docked--c-toolbar--Height);
|
|
10515
10548
|
}
|
|
10549
|
+
@media (min-width: 62rem) {
|
|
10550
|
+
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__main {
|
|
10551
|
+
align-items: center;
|
|
10552
|
+
}
|
|
10553
|
+
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__logo {
|
|
10554
|
+
display: none;
|
|
10555
|
+
}
|
|
10556
|
+
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__logo.pf-m-compact {
|
|
10557
|
+
display: revert;
|
|
10558
|
+
}
|
|
10559
|
+
}
|
|
10560
|
+
.pf-v6-c-page__dock.pf-m-text-expanded .pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__logo {
|
|
10561
|
+
display: revert;
|
|
10562
|
+
}
|
|
10563
|
+
.pf-v6-c-page__dock.pf-m-text-expanded .pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__logo.pf-m-compact {
|
|
10564
|
+
display: none;
|
|
10565
|
+
}
|
|
10566
|
+
.pf-v6-c-page__dock.pf-m-text-expanded .pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__main {
|
|
10567
|
+
align-items: flex-start;
|
|
10568
|
+
}
|
|
10569
|
+
|
|
10516
10570
|
.pf-v6-c-masthead .pf-v6-c-toolbar__content-section {
|
|
10517
10571
|
flex-wrap: nowrap;
|
|
10518
10572
|
min-width: 0;
|
|
@@ -11604,7 +11658,7 @@ ul.pf-v6-c-list {
|
|
|
11604
11658
|
--pf-v6-c-menu-toggle--PaddingInlineEnd: var(--pf-t--global--spacer--control--horizontal--default);
|
|
11605
11659
|
--pf-v6-c-menu-toggle--PaddingBlockEnd: var(--pf-t--global--spacer--control--vertical--default);
|
|
11606
11660
|
--pf-v6-c-menu-toggle--PaddingInlineStart: var(--pf-t--global--spacer--control--horizontal--default);
|
|
11607
|
-
--pf-v6-c-menu-toggle--MinWidth:
|
|
11661
|
+
--pf-v6-c-menu-toggle--MinWidth: initial;
|
|
11608
11662
|
--pf-v6-c-menu-toggle--FontSize: var(--pf-t--global--font--size--body--default);
|
|
11609
11663
|
--pf-v6-c-menu-toggle--Color: var(--pf-t--global--text--color--regular);
|
|
11610
11664
|
--pf-v6-c-menu-toggle--LineHeight: var(--pf-t--global--font--line-height--body);
|
|
@@ -11755,7 +11809,7 @@ ul.pf-v6-c-list {
|
|
|
11755
11809
|
gap: var(--pf-v6-c-menu-toggle--Gap);
|
|
11756
11810
|
align-items: center;
|
|
11757
11811
|
justify-content: center;
|
|
11758
|
-
min-width: var(--pf-v6-c-menu-toggle--MinWidth);
|
|
11812
|
+
min-width: var(--pf-v6-c-menu-toggle--MinWidth, revert);
|
|
11759
11813
|
max-width: 100%;
|
|
11760
11814
|
padding-block-start: var(--pf-v6-c-menu-toggle--PaddingBlockStart);
|
|
11761
11815
|
padding-block-end: var(--pf-v6-c-menu-toggle--PaddingBlockEnd);
|
|
@@ -11949,6 +12003,29 @@ ul.pf-v6-c-list {
|
|
|
11949
12003
|
.pf-v6-c-menu-toggle:is(:disabled, .pf-m-disabled) .pf-v6-c-button {
|
|
11950
12004
|
pointer-events: none;
|
|
11951
12005
|
}
|
|
12006
|
+
.pf-v6-c-menu-toggle.pf-m-dock {
|
|
12007
|
+
justify-content: flex-start;
|
|
12008
|
+
width: 100%;
|
|
12009
|
+
}
|
|
12010
|
+
@media (min-width: 62rem) {
|
|
12011
|
+
.pf-v6-c-menu-toggle.pf-m-dock {
|
|
12012
|
+
justify-content: center;
|
|
12013
|
+
width: auto;
|
|
12014
|
+
}
|
|
12015
|
+
.pf-v6-c-menu-toggle.pf-m-dock .pf-v6-c-menu-toggle__text,
|
|
12016
|
+
.pf-v6-c-menu-toggle.pf-m-dock .pf-v6-c-menu-toggle__controls {
|
|
12017
|
+
display: none;
|
|
12018
|
+
}
|
|
12019
|
+
}
|
|
12020
|
+
.pf-v6-c-page__dock.pf-m-text-expanded .pf-v6-c-menu-toggle, .pf-v6-c-menu-toggle.pf-m-text-expanded {
|
|
12021
|
+
justify-content: flex-start;
|
|
12022
|
+
width: 100%;
|
|
12023
|
+
}
|
|
12024
|
+
.pf-v6-c-page__dock.pf-m-text-expanded .pf-v6-c-menu-toggle .pf-v6-c-menu-toggle__text,
|
|
12025
|
+
.pf-v6-c-page__dock.pf-m-text-expanded .pf-v6-c-menu-toggle .pf-v6-c-menu-toggle__controls, .pf-v6-c-menu-toggle.pf-m-text-expanded .pf-v6-c-menu-toggle__text,
|
|
12026
|
+
.pf-v6-c-menu-toggle.pf-m-text-expanded .pf-v6-c-menu-toggle__controls {
|
|
12027
|
+
display: revert;
|
|
12028
|
+
}
|
|
11952
12029
|
|
|
11953
12030
|
@property --pf-v6-c-menu-toggle--m-danger--TranslateX {
|
|
11954
12031
|
syntax: "<length>";
|
|
@@ -12096,6 +12173,7 @@ ul.pf-v6-c-list {
|
|
|
12096
12173
|
|
|
12097
12174
|
.pf-v6-c-menu-toggle__icon {
|
|
12098
12175
|
flex-shrink: 0;
|
|
12176
|
+
min-width: 1lh;
|
|
12099
12177
|
transition-delay: var(--pf-v6-c-menu-toggle__icon--TransitionDelay);
|
|
12100
12178
|
transition-duration: var(--pf-v6-c-menu-toggle__icon--TransitionDuration);
|
|
12101
12179
|
transition-property: var(--pf-v6-c-menu-toggle__icon--TransitionProperty);
|
|
@@ -12702,17 +12780,23 @@ ul.pf-v6-c-list {
|
|
|
12702
12780
|
--pf-v6-c-nav__link--PaddingInlineEnd: var(--pf-v6-c-nav--m-docked__link--PaddingInlineEnd);
|
|
12703
12781
|
--pf-v6-c-nav__link--hover--BackgroundColor: var(--pf-v6-c-nav--m-docked__link--hover--BackgroundColor);
|
|
12704
12782
|
--pf-v6-c-nav__link--m-current--BackgroundColor: var(--pf-v6-c-nav--m-docked__link--m-current--BackgroundColor);
|
|
12705
|
-
width:
|
|
12783
|
+
width: 100%;
|
|
12706
12784
|
}
|
|
12707
|
-
|
|
12708
|
-
|
|
12709
|
-
|
|
12710
|
-
|
|
12711
|
-
|
|
12785
|
+
@media (min-width: 62rem) {
|
|
12786
|
+
.pf-v6-c-nav.pf-m-docked {
|
|
12787
|
+
width: fit-content;
|
|
12788
|
+
}
|
|
12789
|
+
.pf-v6-c-nav.pf-m-docked .pf-v6-c-nav__link-text {
|
|
12790
|
+
display: none;
|
|
12791
|
+
}
|
|
12712
12792
|
}
|
|
12713
|
-
.pf-v6-c-nav.pf-m-docked .pf-v6-c-
|
|
12714
|
-
|
|
12793
|
+
.pf-v6-c-page__dock.pf-m-text-expanded .pf-v6-c-nav.pf-m-docked, .pf-v6-c-nav.pf-m-docked.pf-m-text-expanded {
|
|
12794
|
+
width: 100%;
|
|
12795
|
+
}
|
|
12796
|
+
.pf-v6-c-page__dock.pf-m-text-expanded .pf-v6-c-nav.pf-m-docked .pf-v6-c-nav__link-text, .pf-v6-c-nav.pf-m-docked.pf-m-text-expanded .pf-v6-c-nav__link-text {
|
|
12797
|
+
display: revert;
|
|
12715
12798
|
}
|
|
12799
|
+
|
|
12716
12800
|
.pf-v6-c-nav .pf-v6-c-menu {
|
|
12717
12801
|
--pf-v6-c-menu--MinWidth: 100%;
|
|
12718
12802
|
}
|
|
@@ -12862,7 +12946,9 @@ ul.pf-v6-c-list {
|
|
|
12862
12946
|
}
|
|
12863
12947
|
|
|
12864
12948
|
.pf-v6-c-nav__link-icon {
|
|
12949
|
+
min-width: 1lh;
|
|
12865
12950
|
color: var(--pf-v6-c-nav__link-icon--Color);
|
|
12951
|
+
text-align: center;
|
|
12866
12952
|
}
|
|
12867
12953
|
|
|
12868
12954
|
.pf-v6-c-nav__link-text {
|
|
@@ -13301,8 +13387,20 @@ ul.pf-v6-c-list {
|
|
|
13301
13387
|
.pf-v6-c-page {
|
|
13302
13388
|
--pf-v6-c-page--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
|
|
13303
13389
|
--pf-v6-c-page--inset: var(--pf-t--global--spacer--inset--page-chrome);
|
|
13390
|
+
--pf-v6-c-page--m-dock__main-container--MaxHeight: calc(100% - var(--pf-t--global--spacer--lg) * 2);
|
|
13391
|
+
--pf-v6-c-page--m-dock__main-container--MarginBlockStart: 0;
|
|
13392
|
+
--pf-v6-c-page--m-dock__main-container--xl--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
|
13393
|
+
--pf-v6-c-page--m-dock--ColumnGap: var(--pf-t--global--spacer--inset--page-chrome);
|
|
13394
|
+
--pf-v6-c-page--m-dock--c-masthead--m-display-inline--GridTemplateColumns: min-content 1fr;
|
|
13304
13395
|
--pf-v6-c-page--c-masthead--ZIndex: var(--pf-t--global--z-index--md);
|
|
13396
|
+
--pf-v6-c-page__dock--Width: 15.625rem;
|
|
13397
|
+
--pf-v6-c-page__dock--desktop--Width: auto;
|
|
13305
13398
|
--pf-v6-c-page__dock--ZIndex: var(--pf-t--global--z-index--md);
|
|
13399
|
+
--pf-v6-c-page__dock--BorderInlineEndWidth: var(--pf-t--global--border--width--regular);
|
|
13400
|
+
--pf-v6-c-page__dock--BorderInlineEndColor: var(--pf-t--global--border--color--default);
|
|
13401
|
+
--pf-v6-c-page__dock--TransitionDuration--slide: 0s;
|
|
13402
|
+
--pf-v6-c-page__dock--m-expanded--TransitionDuration--slide: 0s;
|
|
13403
|
+
--pf-v6-c-page__dock--TransitionTimingFunction--slide: var(--pf-t--global--motion--timing-function--decelerate);
|
|
13306
13404
|
--pf-v6-c-page__sidebar--ZIndex: var(--pf-t--global--z-index--sm);
|
|
13307
13405
|
--pf-v6-c-page__sidebar--Width--base: 18.125rem;
|
|
13308
13406
|
--pf-v6-c-page__sidebar--Width: var(--pf-v6-c-page__sidebar--Width--base);
|
|
@@ -13331,6 +13429,8 @@ ul.pf-v6-c-list {
|
|
|
13331
13429
|
--pf-v6-c-page__sidebar--Opacity: 1;
|
|
13332
13430
|
--pf-v6-c-page__sidebar--TransitionProperty: transform;
|
|
13333
13431
|
--pf-v6-c-page__sidebar--TransitionDuration: var(--pf-t--global--motion--duration--slide-in--default);
|
|
13432
|
+
--pf-v6-c-page__dock--TransitionDuration--slide: var(--pf-t--global--motion--duration--slide-out--short);
|
|
13433
|
+
--pf-v6-c-page__dock--m-expanded--TransitionDuration--slide: var(--pf-t--global--motion--duration--slide-in--default);
|
|
13334
13434
|
}
|
|
13335
13435
|
}
|
|
13336
13436
|
.pf-v6-c-page {
|
|
@@ -13439,9 +13539,6 @@ ul.pf-v6-c-list {
|
|
|
13439
13539
|
--pf-v6-c-page__main-wizard--BorderBlockStartWidth: var(--pf-t--global--border--width--action--default);
|
|
13440
13540
|
--pf-v6-c-page__drawer--c-drawer--BorderBlockStartWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
13441
13541
|
--pf-v6-c-page__drawer--c-drawer--BorderBlockStartColor: var(--pf-t--global--border--color--high-contrast);
|
|
13442
|
-
--pf-v6-c-page--m-dock__main-container--MaxHeight: calc(100% - var(--pf-t--global--spacer--lg) * 2);
|
|
13443
|
-
--pf-v6-c-page--m-dock__main-container--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
|
13444
|
-
--pf-v6-c-page--m-dock--ColumnGap: var(--pf-t--global--spacer--inset--page-chrome);
|
|
13445
13542
|
}
|
|
13446
13543
|
|
|
13447
13544
|
.pf-v6-c-page {
|
|
@@ -13465,11 +13562,22 @@ ul.pf-v6-c-list {
|
|
|
13465
13562
|
--pf-v6-c-page--masthead--main-container--GridArea: main;
|
|
13466
13563
|
--pf-v6-c-page__main-container--MaxHeight: var(--pf-v6-c-page--m-dock__main-container--MaxHeight);
|
|
13467
13564
|
--pf-v6-c-page__main-container--MarginBlockStart: var(--pf-v6-c-page--m-dock__main-container--MarginBlockStart);
|
|
13468
|
-
|
|
13469
|
-
grid-template-
|
|
13470
|
-
grid-template-rows: auto;
|
|
13565
|
+
grid-template-areas: "header header" "dock main";
|
|
13566
|
+
grid-template-rows: max-content 1fr;
|
|
13471
13567
|
grid-template-columns: auto 1fr;
|
|
13472
|
-
|
|
13568
|
+
}
|
|
13569
|
+
@media (min-width: 62rem) {
|
|
13570
|
+
.pf-v6-c-page.pf-m-dock {
|
|
13571
|
+
--pf-v6-c-page__main-container--MarginBlockStart: var(--pf-v6-c-page--m-dock__main-container--xl--MarginBlockStart);
|
|
13572
|
+
--pf-v6-c-page__main-container--MarginInlineStart: 0;
|
|
13573
|
+
grid-template-areas: "dock main";
|
|
13574
|
+
grid-template-rows: auto;
|
|
13575
|
+
grid-template-columns: auto 1fr;
|
|
13576
|
+
column-gap: var(--pf-v6-c-page--m-dock--ColumnGap);
|
|
13577
|
+
}
|
|
13578
|
+
.pf-v6-c-page.pf-m-dock > .pf-v6-c-masthead {
|
|
13579
|
+
display: none;
|
|
13580
|
+
}
|
|
13473
13581
|
}
|
|
13474
13582
|
.pf-v6-c-page > .pf-v6-c-masthead .pf-v6-c-masthead__toggle .pf-v6-c-button.pf-m-hamburger:is(:hover, :focus-visible) {
|
|
13475
13583
|
--pf-v6-c-button--hamburger-icon--top--path: var(--pf-v6-c-button--hamburger-icon--top--collapse--path);
|
|
@@ -13526,10 +13634,40 @@ ul.pf-v6-c-list {
|
|
|
13526
13634
|
z-index: var(--pf-v6-c-page--c-masthead--ZIndex);
|
|
13527
13635
|
grid-area: header;
|
|
13528
13636
|
}
|
|
13637
|
+
.pf-v6-c-page.pf-m-dock > .pf-v6-c-masthead {
|
|
13638
|
+
--pf-v6-c-masthead--m-display-inline--GridTemplateColumns: var(--pf-v6-c-page--m-dock--c-masthead--m-display-inline--GridTemplateColumns);
|
|
13639
|
+
}
|
|
13529
13640
|
|
|
13530
13641
|
.pf-v6-c-page__dock {
|
|
13642
|
+
position: fixed;
|
|
13643
|
+
inset-block-start: 0;
|
|
13644
|
+
inset-block-end: 0;
|
|
13645
|
+
inset-inline-start: 0;
|
|
13531
13646
|
z-index: var(--pf-v6-c-page__dock--ZIndex);
|
|
13532
13647
|
grid-area: dock;
|
|
13648
|
+
width: var(--pf-v6-c-page__dock--Width);
|
|
13649
|
+
transition: translate var(--pf-v6-c-page__dock--TransitionDuration--slide) var(--pf-v6-c-page__dock--TransitionTimingFunction--slide);
|
|
13650
|
+
translate: -100% 0;
|
|
13651
|
+
}
|
|
13652
|
+
.pf-v6-c-page__dock.pf-m-expanded {
|
|
13653
|
+
--pf-v6-c-page__dock--TransitionDuration--slide: var(--pf-v6-c-page__dock--m-expanded--TransitionDuration--slide);
|
|
13654
|
+
border-inline-end: var(--pf-v6-c-page__dock--BorderInlineEndWidth) solid var(--pf-v6-c-page__dock--BorderInlineEndColor);
|
|
13655
|
+
translate: 0;
|
|
13656
|
+
}
|
|
13657
|
+
@media (min-width: 62rem) {
|
|
13658
|
+
.pf-v6-c-page__dock {
|
|
13659
|
+
--pf-v6-c-page__dock--BorderInlineEndWidth: 0;
|
|
13660
|
+
position: revert;
|
|
13661
|
+
inset: revert;
|
|
13662
|
+
width: auto;
|
|
13663
|
+
translate: 0;
|
|
13664
|
+
}
|
|
13665
|
+
}
|
|
13666
|
+
.pf-v6-c-page__dock .pf-v6-c-toolbar.pf-m-vertical :is(.pf-v6-c-toolbar__content-section, .pf-v6-c-toolbar__group, .pf-v6-c-toolbar__item) {
|
|
13667
|
+
align-items: stretch;
|
|
13668
|
+
}
|
|
13669
|
+
.pf-v6-c-page__dock.pf-m-text-expanded {
|
|
13670
|
+
width: var(--pf-v6-c-page__dock--Width);
|
|
13533
13671
|
}
|
|
13534
13672
|
|
|
13535
13673
|
.pf-v6-c-page__sidebar {
|
|
@@ -380,7 +380,6 @@ cssPrefix: pf-v6-c-breadcrumb
|
|
|
380
380
|
class="pf-v6-c-menu-toggle pf-m-text pf-m-small pf-m-plain"
|
|
381
381
|
type="button"
|
|
382
382
|
aria-expanded="false"
|
|
383
|
-
aria-label="Menu toggle"
|
|
384
383
|
>
|
|
385
384
|
<span class="pf-v6-c-menu-toggle__count">
|
|
386
385
|
<span class="pf-v6-c-badge pf-m-unread">
|