@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
package/patternfly.css
CHANGED
|
@@ -10811,7 +10811,7 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
10811
10811
|
--pf-v6-c-button--AlignItems: baseline;
|
|
10812
10812
|
--pf-v6-c-button--JustifyContent: center;
|
|
10813
10813
|
--pf-v6-c-button--Gap: var(--pf-t--global--spacer--gap--text-to-element--default);
|
|
10814
|
-
--pf-v6-c-button--MinWidth:
|
|
10814
|
+
--pf-v6-c-button--MinWidth: initial;
|
|
10815
10815
|
--pf-v6-c-button--PaddingBlockStart: var(--pf-t--global--spacer--control--vertical--default);
|
|
10816
10816
|
--pf-v6-c-button--PaddingInlineEnd: var(--pf-t--global--spacer--action--horizontal--default);
|
|
10817
10817
|
--pf-v6-c-button--PaddingBlockEnd: var(--pf-t--global--spacer--control--vertical--default);
|
|
@@ -11179,7 +11179,7 @@ button.pf-v6-c-breadcrumb__link {
|
|
|
11179
11179
|
gap: var(--pf-v6-c-button--Gap);
|
|
11180
11180
|
align-items: var(--pf-v6-c-button--AlignItems);
|
|
11181
11181
|
justify-content: var(--pf-v6-c-button--JustifyContent);
|
|
11182
|
-
min-width: var(--pf-v6-c-button--MinWidth);
|
|
11182
|
+
min-width: var(--pf-v6-c-button--MinWidth, revert);
|
|
11183
11183
|
padding-block-start: var(--pf-v6-c-button--PaddingBlockStart);
|
|
11184
11184
|
padding-block-end: var(--pf-v6-c-button--PaddingBlockEnd);
|
|
11185
11185
|
padding-inline-start: var(--pf-v6-c-button--PaddingInlineStart);
|
|
@@ -11666,8 +11666,28 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
|
|
|
11666
11666
|
animation-duration: var(--pf-v6-c-button--m-notify__icon--AnimationDuration--notify);
|
|
11667
11667
|
animation-timing-function: var(--pf-v6-c-button--m-notify__icon--AnimationTimingFunction--notify);
|
|
11668
11668
|
}
|
|
11669
|
+
.pf-v6-c-button.pf-m-dock {
|
|
11670
|
+
justify-content: flex-start;
|
|
11671
|
+
width: 100%;
|
|
11672
|
+
}
|
|
11673
|
+
@media (min-width: 62rem) {
|
|
11674
|
+
.pf-v6-c-button.pf-m-dock {
|
|
11675
|
+
justify-content: center;
|
|
11676
|
+
}
|
|
11677
|
+
.pf-v6-c-button.pf-m-dock .pf-v6-c-button__text {
|
|
11678
|
+
display: none;
|
|
11679
|
+
}
|
|
11680
|
+
}
|
|
11681
|
+
.pf-v6-c-page__dock.pf-m-text-expanded .pf-v6-c-button, .pf-v6-c-button.pf-m-text-expanded {
|
|
11682
|
+
justify-content: flex-start;
|
|
11683
|
+
width: 100%;
|
|
11684
|
+
}
|
|
11685
|
+
.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 {
|
|
11686
|
+
display: revert;
|
|
11687
|
+
}
|
|
11669
11688
|
|
|
11670
11689
|
.pf-v6-c-button__icon {
|
|
11690
|
+
min-width: 1lh;
|
|
11671
11691
|
margin-inline-start: var(--pf-v6-c-button__icon--MarginInlineStart);
|
|
11672
11692
|
margin-inline-end: var(--pf-v6-c-button__icon--MarginInlineEnd);
|
|
11673
11693
|
color: var(--pf-v6-c-button__icon--Color);
|
|
@@ -19585,6 +19605,7 @@ ul.pf-v6-c-list {
|
|
|
19585
19605
|
--pf-v6-c-masthead--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
|
|
19586
19606
|
--pf-v6-c-masthead__main--ColumnGap: var(--pf-t--global--spacer--md);
|
|
19587
19607
|
--pf-v6-c-masthead__main--MarginInlineEnd: var(--pf-t--global--spacer--inset--page-chrome);
|
|
19608
|
+
--pf-v6-c-masthead--m-docked__main--RowGap: var(--pf-t--global--spacer--gap--group--vertical);
|
|
19588
19609
|
--pf-v6-c-masthead__logo--MaxHeight: 2.375rem;
|
|
19589
19610
|
--pf-v6-c-masthead__logo--Width: 11.8125rem;
|
|
19590
19611
|
--pf-v6-c-masthead__toggle--Size: var(--pf-t--global--icon--size--xl);
|
|
@@ -19701,24 +19722,57 @@ ul.pf-v6-c-list {
|
|
|
19701
19722
|
--pf-v6-c-masthead--m-display-inline--breakpoint--xl--GridTemplateColumns: auto;
|
|
19702
19723
|
--pf-v6-c-masthead__main--GridColumn: auto;
|
|
19703
19724
|
--pf-v6-c-masthead__content--GridColumn: auto;
|
|
19704
|
-
--pf-v6-c-masthead__logo--Width: auto;
|
|
19705
19725
|
--pf-v6-c-masthead__main--MarginInlineEnd: 0;
|
|
19706
19726
|
display: flex;
|
|
19707
19727
|
flex-direction: column;
|
|
19708
|
-
align-items:
|
|
19709
|
-
width: fit-content;
|
|
19728
|
+
align-items: stretch;
|
|
19710
19729
|
height: 100%;
|
|
19711
19730
|
backdrop-filter: var(--pf-v6-c-masthead--m-docked--BackdropFilter);
|
|
19712
19731
|
}
|
|
19732
|
+
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__logo {
|
|
19733
|
+
width: revert;
|
|
19734
|
+
}
|
|
19735
|
+
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__logo.pf-m-compact {
|
|
19736
|
+
display: none;
|
|
19737
|
+
max-width: 2.3125rem;
|
|
19738
|
+
max-height: revert;
|
|
19739
|
+
}
|
|
19740
|
+
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__main {
|
|
19741
|
+
flex-direction: column;
|
|
19742
|
+
row-gap: var(--pf-v6-c-masthead--m-docked__main--RowGap);
|
|
19743
|
+
align-items: flex-start;
|
|
19744
|
+
}
|
|
19713
19745
|
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__content {
|
|
19714
19746
|
flex-grow: 1;
|
|
19715
19747
|
flex-direction: column;
|
|
19748
|
+
align-items: stretch;
|
|
19716
19749
|
align-self: revert;
|
|
19717
19750
|
}
|
|
19718
19751
|
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-toolbar {
|
|
19719
|
-
--pf-v6-c-
|
|
19752
|
+
--pf-v6-c-toolbar--m-vertical--Width: auto;
|
|
19720
19753
|
height: var(--pf-v6-c-masthead--m-docked--c-toolbar--Height);
|
|
19721
19754
|
}
|
|
19755
|
+
@media (min-width: 62rem) {
|
|
19756
|
+
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__main {
|
|
19757
|
+
align-items: center;
|
|
19758
|
+
}
|
|
19759
|
+
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__logo {
|
|
19760
|
+
display: none;
|
|
19761
|
+
}
|
|
19762
|
+
.pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__logo.pf-m-compact {
|
|
19763
|
+
display: revert;
|
|
19764
|
+
}
|
|
19765
|
+
}
|
|
19766
|
+
.pf-v6-c-page__dock.pf-m-text-expanded .pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__logo {
|
|
19767
|
+
display: revert;
|
|
19768
|
+
}
|
|
19769
|
+
.pf-v6-c-page__dock.pf-m-text-expanded .pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__logo.pf-m-compact {
|
|
19770
|
+
display: none;
|
|
19771
|
+
}
|
|
19772
|
+
.pf-v6-c-page__dock.pf-m-text-expanded .pf-v6-c-masthead.pf-m-docked .pf-v6-c-masthead__main {
|
|
19773
|
+
align-items: flex-start;
|
|
19774
|
+
}
|
|
19775
|
+
|
|
19722
19776
|
.pf-v6-c-masthead .pf-v6-c-toolbar__content-section {
|
|
19723
19777
|
flex-wrap: nowrap;
|
|
19724
19778
|
min-width: 0;
|
|
@@ -20810,7 +20864,7 @@ ul.pf-v6-c-list {
|
|
|
20810
20864
|
--pf-v6-c-menu-toggle--PaddingInlineEnd: var(--pf-t--global--spacer--control--horizontal--default);
|
|
20811
20865
|
--pf-v6-c-menu-toggle--PaddingBlockEnd: var(--pf-t--global--spacer--control--vertical--default);
|
|
20812
20866
|
--pf-v6-c-menu-toggle--PaddingInlineStart: var(--pf-t--global--spacer--control--horizontal--default);
|
|
20813
|
-
--pf-v6-c-menu-toggle--MinWidth:
|
|
20867
|
+
--pf-v6-c-menu-toggle--MinWidth: initial;
|
|
20814
20868
|
--pf-v6-c-menu-toggle--FontSize: var(--pf-t--global--font--size--body--default);
|
|
20815
20869
|
--pf-v6-c-menu-toggle--Color: var(--pf-t--global--text--color--regular);
|
|
20816
20870
|
--pf-v6-c-menu-toggle--LineHeight: var(--pf-t--global--font--line-height--body);
|
|
@@ -20961,7 +21015,7 @@ ul.pf-v6-c-list {
|
|
|
20961
21015
|
gap: var(--pf-v6-c-menu-toggle--Gap);
|
|
20962
21016
|
align-items: center;
|
|
20963
21017
|
justify-content: center;
|
|
20964
|
-
min-width: var(--pf-v6-c-menu-toggle--MinWidth);
|
|
21018
|
+
min-width: var(--pf-v6-c-menu-toggle--MinWidth, revert);
|
|
20965
21019
|
max-width: 100%;
|
|
20966
21020
|
padding-block-start: var(--pf-v6-c-menu-toggle--PaddingBlockStart);
|
|
20967
21021
|
padding-block-end: var(--pf-v6-c-menu-toggle--PaddingBlockEnd);
|
|
@@ -21155,6 +21209,29 @@ ul.pf-v6-c-list {
|
|
|
21155
21209
|
.pf-v6-c-menu-toggle:is(:disabled, .pf-m-disabled) .pf-v6-c-button {
|
|
21156
21210
|
pointer-events: none;
|
|
21157
21211
|
}
|
|
21212
|
+
.pf-v6-c-menu-toggle.pf-m-dock {
|
|
21213
|
+
justify-content: flex-start;
|
|
21214
|
+
width: 100%;
|
|
21215
|
+
}
|
|
21216
|
+
@media (min-width: 62rem) {
|
|
21217
|
+
.pf-v6-c-menu-toggle.pf-m-dock {
|
|
21218
|
+
justify-content: center;
|
|
21219
|
+
width: auto;
|
|
21220
|
+
}
|
|
21221
|
+
.pf-v6-c-menu-toggle.pf-m-dock .pf-v6-c-menu-toggle__text,
|
|
21222
|
+
.pf-v6-c-menu-toggle.pf-m-dock .pf-v6-c-menu-toggle__controls {
|
|
21223
|
+
display: none;
|
|
21224
|
+
}
|
|
21225
|
+
}
|
|
21226
|
+
.pf-v6-c-page__dock.pf-m-text-expanded .pf-v6-c-menu-toggle, .pf-v6-c-menu-toggle.pf-m-text-expanded {
|
|
21227
|
+
justify-content: flex-start;
|
|
21228
|
+
width: 100%;
|
|
21229
|
+
}
|
|
21230
|
+
.pf-v6-c-page__dock.pf-m-text-expanded .pf-v6-c-menu-toggle .pf-v6-c-menu-toggle__text,
|
|
21231
|
+
.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,
|
|
21232
|
+
.pf-v6-c-menu-toggle.pf-m-text-expanded .pf-v6-c-menu-toggle__controls {
|
|
21233
|
+
display: revert;
|
|
21234
|
+
}
|
|
21158
21235
|
|
|
21159
21236
|
@property --pf-v6-c-menu-toggle--m-danger--TranslateX {
|
|
21160
21237
|
syntax: "<length>";
|
|
@@ -21302,6 +21379,7 @@ ul.pf-v6-c-list {
|
|
|
21302
21379
|
|
|
21303
21380
|
.pf-v6-c-menu-toggle__icon {
|
|
21304
21381
|
flex-shrink: 0;
|
|
21382
|
+
min-width: 1lh;
|
|
21305
21383
|
transition-delay: var(--pf-v6-c-menu-toggle__icon--TransitionDelay);
|
|
21306
21384
|
transition-duration: var(--pf-v6-c-menu-toggle__icon--TransitionDuration);
|
|
21307
21385
|
transition-property: var(--pf-v6-c-menu-toggle__icon--TransitionProperty);
|
|
@@ -21908,17 +21986,23 @@ ul.pf-v6-c-list {
|
|
|
21908
21986
|
--pf-v6-c-nav__link--PaddingInlineEnd: var(--pf-v6-c-nav--m-docked__link--PaddingInlineEnd);
|
|
21909
21987
|
--pf-v6-c-nav__link--hover--BackgroundColor: var(--pf-v6-c-nav--m-docked__link--hover--BackgroundColor);
|
|
21910
21988
|
--pf-v6-c-nav__link--m-current--BackgroundColor: var(--pf-v6-c-nav--m-docked__link--m-current--BackgroundColor);
|
|
21911
|
-
width:
|
|
21989
|
+
width: 100%;
|
|
21912
21990
|
}
|
|
21913
|
-
|
|
21914
|
-
|
|
21915
|
-
|
|
21916
|
-
|
|
21917
|
-
|
|
21991
|
+
@media (min-width: 62rem) {
|
|
21992
|
+
.pf-v6-c-nav.pf-m-docked {
|
|
21993
|
+
width: fit-content;
|
|
21994
|
+
}
|
|
21995
|
+
.pf-v6-c-nav.pf-m-docked .pf-v6-c-nav__link-text {
|
|
21996
|
+
display: none;
|
|
21997
|
+
}
|
|
21918
21998
|
}
|
|
21919
|
-
.pf-v6-c-nav.pf-m-docked .pf-v6-c-
|
|
21920
|
-
|
|
21999
|
+
.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 {
|
|
22000
|
+
width: 100%;
|
|
22001
|
+
}
|
|
22002
|
+
.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 {
|
|
22003
|
+
display: revert;
|
|
21921
22004
|
}
|
|
22005
|
+
|
|
21922
22006
|
.pf-v6-c-nav .pf-v6-c-menu {
|
|
21923
22007
|
--pf-v6-c-menu--MinWidth: 100%;
|
|
21924
22008
|
}
|
|
@@ -22068,7 +22152,9 @@ ul.pf-v6-c-list {
|
|
|
22068
22152
|
}
|
|
22069
22153
|
|
|
22070
22154
|
.pf-v6-c-nav__link-icon {
|
|
22155
|
+
min-width: 1lh;
|
|
22071
22156
|
color: var(--pf-v6-c-nav__link-icon--Color);
|
|
22157
|
+
text-align: center;
|
|
22072
22158
|
}
|
|
22073
22159
|
|
|
22074
22160
|
.pf-v6-c-nav__link-text {
|
|
@@ -22507,8 +22593,20 @@ ul.pf-v6-c-list {
|
|
|
22507
22593
|
.pf-v6-c-page {
|
|
22508
22594
|
--pf-v6-c-page--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
|
|
22509
22595
|
--pf-v6-c-page--inset: var(--pf-t--global--spacer--inset--page-chrome);
|
|
22596
|
+
--pf-v6-c-page--m-dock__main-container--MaxHeight: calc(100% - var(--pf-t--global--spacer--lg) * 2);
|
|
22597
|
+
--pf-v6-c-page--m-dock__main-container--MarginBlockStart: 0;
|
|
22598
|
+
--pf-v6-c-page--m-dock__main-container--xl--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
|
22599
|
+
--pf-v6-c-page--m-dock--ColumnGap: var(--pf-t--global--spacer--inset--page-chrome);
|
|
22600
|
+
--pf-v6-c-page--m-dock--c-masthead--m-display-inline--GridTemplateColumns: min-content 1fr;
|
|
22510
22601
|
--pf-v6-c-page--c-masthead--ZIndex: var(--pf-t--global--z-index--md);
|
|
22602
|
+
--pf-v6-c-page__dock--Width: 15.625rem;
|
|
22603
|
+
--pf-v6-c-page__dock--desktop--Width: auto;
|
|
22511
22604
|
--pf-v6-c-page__dock--ZIndex: var(--pf-t--global--z-index--md);
|
|
22605
|
+
--pf-v6-c-page__dock--BorderInlineEndWidth: var(--pf-t--global--border--width--regular);
|
|
22606
|
+
--pf-v6-c-page__dock--BorderInlineEndColor: var(--pf-t--global--border--color--default);
|
|
22607
|
+
--pf-v6-c-page__dock--TransitionDuration--slide: 0s;
|
|
22608
|
+
--pf-v6-c-page__dock--m-expanded--TransitionDuration--slide: 0s;
|
|
22609
|
+
--pf-v6-c-page__dock--TransitionTimingFunction--slide: var(--pf-t--global--motion--timing-function--decelerate);
|
|
22512
22610
|
--pf-v6-c-page__sidebar--ZIndex: var(--pf-t--global--z-index--sm);
|
|
22513
22611
|
--pf-v6-c-page__sidebar--Width--base: 18.125rem;
|
|
22514
22612
|
--pf-v6-c-page__sidebar--Width: var(--pf-v6-c-page__sidebar--Width--base);
|
|
@@ -22537,6 +22635,8 @@ ul.pf-v6-c-list {
|
|
|
22537
22635
|
--pf-v6-c-page__sidebar--Opacity: 1;
|
|
22538
22636
|
--pf-v6-c-page__sidebar--TransitionProperty: transform;
|
|
22539
22637
|
--pf-v6-c-page__sidebar--TransitionDuration: var(--pf-t--global--motion--duration--slide-in--default);
|
|
22638
|
+
--pf-v6-c-page__dock--TransitionDuration--slide: var(--pf-t--global--motion--duration--slide-out--short);
|
|
22639
|
+
--pf-v6-c-page__dock--m-expanded--TransitionDuration--slide: var(--pf-t--global--motion--duration--slide-in--default);
|
|
22540
22640
|
}
|
|
22541
22641
|
}
|
|
22542
22642
|
.pf-v6-c-page {
|
|
@@ -22645,9 +22745,6 @@ ul.pf-v6-c-list {
|
|
|
22645
22745
|
--pf-v6-c-page__main-wizard--BorderBlockStartWidth: var(--pf-t--global--border--width--action--default);
|
|
22646
22746
|
--pf-v6-c-page__drawer--c-drawer--BorderBlockStartWidth: var(--pf-t--global--border--width--high-contrast--regular);
|
|
22647
22747
|
--pf-v6-c-page__drawer--c-drawer--BorderBlockStartColor: var(--pf-t--global--border--color--high-contrast);
|
|
22648
|
-
--pf-v6-c-page--m-dock__main-container--MaxHeight: calc(100% - var(--pf-t--global--spacer--lg) * 2);
|
|
22649
|
-
--pf-v6-c-page--m-dock__main-container--MarginBlockStart: var(--pf-t--global--spacer--lg);
|
|
22650
|
-
--pf-v6-c-page--m-dock--ColumnGap: var(--pf-t--global--spacer--inset--page-chrome);
|
|
22651
22748
|
}
|
|
22652
22749
|
|
|
22653
22750
|
.pf-v6-c-page {
|
|
@@ -22671,11 +22768,22 @@ ul.pf-v6-c-list {
|
|
|
22671
22768
|
--pf-v6-c-page--masthead--main-container--GridArea: main;
|
|
22672
22769
|
--pf-v6-c-page__main-container--MaxHeight: var(--pf-v6-c-page--m-dock__main-container--MaxHeight);
|
|
22673
22770
|
--pf-v6-c-page__main-container--MarginBlockStart: var(--pf-v6-c-page--m-dock__main-container--MarginBlockStart);
|
|
22674
|
-
|
|
22675
|
-
grid-template-
|
|
22676
|
-
grid-template-rows: auto;
|
|
22771
|
+
grid-template-areas: "header header" "dock main";
|
|
22772
|
+
grid-template-rows: max-content 1fr;
|
|
22677
22773
|
grid-template-columns: auto 1fr;
|
|
22678
|
-
|
|
22774
|
+
}
|
|
22775
|
+
@media (min-width: 62rem) {
|
|
22776
|
+
.pf-v6-c-page.pf-m-dock {
|
|
22777
|
+
--pf-v6-c-page__main-container--MarginBlockStart: var(--pf-v6-c-page--m-dock__main-container--xl--MarginBlockStart);
|
|
22778
|
+
--pf-v6-c-page__main-container--MarginInlineStart: 0;
|
|
22779
|
+
grid-template-areas: "dock main";
|
|
22780
|
+
grid-template-rows: auto;
|
|
22781
|
+
grid-template-columns: auto 1fr;
|
|
22782
|
+
column-gap: var(--pf-v6-c-page--m-dock--ColumnGap);
|
|
22783
|
+
}
|
|
22784
|
+
.pf-v6-c-page.pf-m-dock > .pf-v6-c-masthead {
|
|
22785
|
+
display: none;
|
|
22786
|
+
}
|
|
22679
22787
|
}
|
|
22680
22788
|
.pf-v6-c-page > .pf-v6-c-masthead .pf-v6-c-masthead__toggle .pf-v6-c-button.pf-m-hamburger:is(:hover, :focus-visible) {
|
|
22681
22789
|
--pf-v6-c-button--hamburger-icon--top--path: var(--pf-v6-c-button--hamburger-icon--top--collapse--path);
|
|
@@ -22732,10 +22840,40 @@ ul.pf-v6-c-list {
|
|
|
22732
22840
|
z-index: var(--pf-v6-c-page--c-masthead--ZIndex);
|
|
22733
22841
|
grid-area: header;
|
|
22734
22842
|
}
|
|
22843
|
+
.pf-v6-c-page.pf-m-dock > .pf-v6-c-masthead {
|
|
22844
|
+
--pf-v6-c-masthead--m-display-inline--GridTemplateColumns: var(--pf-v6-c-page--m-dock--c-masthead--m-display-inline--GridTemplateColumns);
|
|
22845
|
+
}
|
|
22735
22846
|
|
|
22736
22847
|
.pf-v6-c-page__dock {
|
|
22848
|
+
position: fixed;
|
|
22849
|
+
inset-block-start: 0;
|
|
22850
|
+
inset-block-end: 0;
|
|
22851
|
+
inset-inline-start: 0;
|
|
22737
22852
|
z-index: var(--pf-v6-c-page__dock--ZIndex);
|
|
22738
22853
|
grid-area: dock;
|
|
22854
|
+
width: var(--pf-v6-c-page__dock--Width);
|
|
22855
|
+
transition: translate var(--pf-v6-c-page__dock--TransitionDuration--slide) var(--pf-v6-c-page__dock--TransitionTimingFunction--slide);
|
|
22856
|
+
translate: -100% 0;
|
|
22857
|
+
}
|
|
22858
|
+
.pf-v6-c-page__dock.pf-m-expanded {
|
|
22859
|
+
--pf-v6-c-page__dock--TransitionDuration--slide: var(--pf-v6-c-page__dock--m-expanded--TransitionDuration--slide);
|
|
22860
|
+
border-inline-end: var(--pf-v6-c-page__dock--BorderInlineEndWidth) solid var(--pf-v6-c-page__dock--BorderInlineEndColor);
|
|
22861
|
+
translate: 0;
|
|
22862
|
+
}
|
|
22863
|
+
@media (min-width: 62rem) {
|
|
22864
|
+
.pf-v6-c-page__dock {
|
|
22865
|
+
--pf-v6-c-page__dock--BorderInlineEndWidth: 0;
|
|
22866
|
+
position: revert;
|
|
22867
|
+
inset: revert;
|
|
22868
|
+
width: auto;
|
|
22869
|
+
translate: 0;
|
|
22870
|
+
}
|
|
22871
|
+
}
|
|
22872
|
+
.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) {
|
|
22873
|
+
align-items: stretch;
|
|
22874
|
+
}
|
|
22875
|
+
.pf-v6-c-page__dock.pf-m-text-expanded {
|
|
22876
|
+
width: var(--pf-v6-c-page__dock--Width);
|
|
22739
22877
|
}
|
|
22740
22878
|
|
|
22741
22879
|
.pf-v6-c-page__sidebar {
|