@patternfly/patternfly 6.0.0-alpha.82 → 6.0.0-alpha.84
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/Breadcrumb/breadcrumb.css +9 -1
- package/components/Breadcrumb/breadcrumb.scss +10 -3
- package/components/Button/button.css +1 -1
- package/components/Button/button.scss +1 -1
- package/components/Menu/menu.css +388 -419
- package/components/Menu/menu.scss +369 -529
- package/components/MenuToggle/menu-toggle.css +229 -265
- package/components/MenuToggle/menu-toggle.scss +330 -370
- package/components/TextInputGroup/text-input-group.css +0 -14
- package/components/TextInputGroup/text-input-group.scss +3 -16
- package/docs/components/Button/examples/Button.md +134 -134
- package/docs/components/CalendarMonth/examples/CalendarMonth.md +4 -4
- package/docs/components/Card/examples/Card.md +8 -8
- package/docs/components/DualListSelector/examples/DualListSelector.md +2 -2
- package/docs/components/Form/examples/Form.md +11 -11
- package/docs/components/Label/examples/Label.md +157 -157
- package/docs/components/LogViewer/examples/LogViewer.md +110 -110
- package/docs/components/Menu/examples/Menu.css +7 -11
- package/docs/components/Menu/examples/Menu.md +637 -944
- package/docs/components/MenuToggle/examples/MenuToggle.md +88 -51
- package/docs/components/Nav/examples/Navigation.md +113 -140
- package/docs/components/Tabs/examples/Tabs.md +24 -24
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +9 -9
- package/docs/components/Toolbar/examples/Toolbar.md +28 -28
- package/docs/demos/AboutModal/examples/AboutModal.md +2 -2
- package/docs/demos/Alert/examples/Alert.md +6 -6
- package/docs/demos/BackToTop/examples/BackToTop.md +2 -2
- package/docs/demos/Banner/examples/Banner.md +4 -4
- package/docs/demos/Button/examples/Button.md +1 -1
- package/docs/demos/CardView/examples/CardView.md +3 -3
- package/docs/demos/ContextSelector/examples/ContextSelector.md +7 -7
- package/docs/demos/Dashboard/examples/Dashboard.md +2 -2
- package/docs/demos/DataList/examples/DataList.md +13 -13
- package/docs/demos/DescriptionList/examples/DescriptionList.md +6 -6
- package/docs/demos/Drawer/examples/Drawer.md +10 -10
- package/docs/demos/Form/examples/BasicForms.md +12 -12
- package/docs/demos/JumpLinks/examples/JumpLinks.md +12 -12
- package/docs/demos/Masthead/examples/Masthead.md +9 -9
- package/docs/demos/Modal/examples/Modal.md +15 -15
- package/docs/demos/Nav/examples/Nav.md +12 -12
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +10 -10
- package/docs/demos/Page/examples/Page.md +18 -18
- package/docs/demos/Page/examples/Penta.md +4 -4
- package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +11 -11
- package/docs/demos/PasswordStrength/examples/PasswordStrength.md +4 -4
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +18 -18
- package/docs/demos/Skeleton/examples/Skeleton.md +2 -2
- package/docs/demos/Table/examples/Table.md +54 -54
- package/docs/demos/Tabs/examples/Tabs.md +12 -12
- package/docs/demos/Toolbar/examples/Toolbar.md +27 -27
- package/docs/demos/Wizard/examples/Wizard.md +18 -18
- package/package.json +1 -1
- package/patternfly-no-globals.css +746 -711
- package/patternfly-theme-dark-unversioned.css +746 -711
- package/patternfly.css +746 -711
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/components/MenuToggle/themes/dark/menu-toggle.scss +0 -27
- package/components/TextInputGroup/themes/dark/text-input-group.scss +0 -11
|
@@ -1,19 +1,11 @@
|
|
|
1
1
|
[id^="ws-core-c-menu-with-flyout"],
|
|
2
2
|
[id^="ws-core-c-menu-standard-menu-flyout-child"] {
|
|
3
3
|
display: flex;
|
|
4
|
-
height:
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
#ws-core-c-menu-with-flyout-menu-top {
|
|
8
|
-
align-items: flex-end;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
#ws-core-c-menu-with-flyout-menu-left {
|
|
12
|
-
justify-content: flex-end;
|
|
4
|
+
height: 360px;
|
|
13
5
|
}
|
|
14
6
|
|
|
7
|
+
#ws-core-c-menu-with-flyout-menu-left,
|
|
15
8
|
#ws-core-c-menu-with-flyout-menu-left-top {
|
|
16
|
-
align-items: flex-end;
|
|
17
9
|
justify-content: flex-end;
|
|
18
10
|
}
|
|
19
11
|
|
|
@@ -23,4 +15,8 @@
|
|
|
23
15
|
|
|
24
16
|
:is([id="ws-core-c-menu-drilldown-with-breadcrumbs---level-3"], [id="ws-core-c-menu-drilldown-with-breadcrumbs---level-4"]) .pf-v5-c-breadcrumb__dropdown .pf-v5-c-menu {
|
|
25
17
|
position: absolute;
|
|
26
|
-
}
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.pf-v5-c-menu__breadcrumb .pf-v5-c-menu {
|
|
21
|
+
z-index: 1;
|
|
22
|
+
}
|