@patternfly/patternfly 5.2.0-prerelease.3 → 5.2.0-prerelease.5
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/base/_globals.scss +2 -4
- package/base/patternfly-globals.css +2 -2
- package/components/Accordion/accordion.css +10 -1
- package/components/Accordion/accordion.scss +13 -1
- package/docs/components/Accordion/examples/Accordion.md +95 -0
- package/docs/components/LogViewer/examples/LogViewer.md +130 -130
- package/docs/components/Menu/examples/Menu.md +507 -473
- package/docs/components/MenuToggle/examples/MenuToggle.md +106 -114
- package/docs/components/Nav/examples/Navigation.md +140 -113
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +9 -9
- package/docs/components/Toolbar/examples/Toolbar.md +462 -2791
- package/docs/demos/CardView/examples/CardView.md +32 -51
- package/docs/demos/DataList/examples/DataList.md +182 -318
- package/docs/demos/Masthead/examples/Masthead.md +48 -207
- package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +2 -1
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +80 -268
- package/docs/demos/Table/examples/Table.md +1004 -1787
- package/docs/demos/Tabs/examples/Tabs.md +2 -2
- package/docs/demos/Toolbar/examples/Toolbar.css +10 -0
- package/docs/demos/Toolbar/examples/Toolbar.md +691 -1015
- package/package.json +2 -2
- package/patternfly-base-theme-dark-unversioned.css +2 -2
- package/patternfly-base.css +2 -2
- package/patternfly-no-globals.css +10 -1
- package/patternfly-theme-dark-unversioned.css +12 -3
- package/patternfly.css +12 -3
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -1596,10 +1596,10 @@ section: components
|
|
|
1596
1596
|
>
|
|
1597
1597
|
<div class="pf-v5-c-toolbar__toggle">
|
|
1598
1598
|
<button
|
|
1599
|
-
class="pf-v5-c-
|
|
1599
|
+
class="pf-v5-c-menu-toggle pf-m-plain"
|
|
1600
1600
|
type="button"
|
|
1601
|
-
aria-label="Show filters"
|
|
1602
1601
|
aria-expanded="false"
|
|
1602
|
+
aria-label="Show filters"
|
|
1603
1603
|
aria-controls="table-tabs-example-tabs-toolbar-expandable-content"
|
|
1604
1604
|
>
|
|
1605
1605
|
<i class="fas fa-filter" aria-hidden="true"></i>
|
|
@@ -13,3 +13,13 @@
|
|
|
13
13
|
#ws-html-demos-c-toolbar-toolbar-attribute-value-search-filter-on-mobile {
|
|
14
14
|
min-height: 175px;
|
|
15
15
|
}
|
|
16
|
+
|
|
17
|
+
.pf-v5-c-menu-toggle + .pf-v5-c-panel {
|
|
18
|
+
position: absolute;
|
|
19
|
+
top: calc(100% + 2px);
|
|
20
|
+
z-index: var(--pf-v5-global--ZIndex--sm);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.ws-html-demos-c-toolbar .pf-v5-c-toolbar__item {
|
|
24
|
+
position: relative;
|
|
25
|
+
}
|