@patternfly/patternfly 5.0.0-alpha.2 → 5.0.0-alpha.21

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.
Files changed (224) hide show
  1. package/README.md +1 -1
  2. package/RELEASE-NOTES.md +47 -0
  3. package/assets/icons/iconUnicodes.json +1 -0
  4. package/assets/pficon/pficon.scss +6 -0
  5. package/assets/pficon/pficon.woff +0 -0
  6. package/assets/pficon/pficon.woff2 +0 -0
  7. package/base/_chart-globals.scss +0 -4
  8. package/base/_common.scss +0 -22
  9. package/base/patternfly-common.css +0 -10
  10. package/base/patternfly-icons.css +5 -1
  11. package/base/patternfly-pf-icons.css +5 -1
  12. package/components/Accordion/accordion.css +2 -0
  13. package/components/Accordion/accordion.scss +2 -0
  14. package/components/AppLauncher/app-launcher.css +2 -0
  15. package/components/AppLauncher/app-launcher.scss +2 -0
  16. package/components/Breadcrumb/breadcrumb.css +2 -0
  17. package/components/Breadcrumb/breadcrumb.scss +2 -0
  18. package/components/CalendarMonth/calendar-month.css +1 -1
  19. package/components/CalendarMonth/calendar-month.scss +1 -1
  20. package/components/Card/card.css +9 -12
  21. package/components/Card/card.scss +11 -17
  22. package/components/ChipGroup/chip-group.css +27 -17
  23. package/components/ChipGroup/chip-group.scss +36 -22
  24. package/components/Content/content.css +6 -0
  25. package/components/Content/content.scss +8 -0
  26. package/components/ContextSelector/context-selector.css +5 -1
  27. package/components/ContextSelector/context-selector.scss +6 -2
  28. package/components/DataList/data-list.css +2 -1
  29. package/components/DataList/data-list.scss +2 -1
  30. package/components/Drawer/drawer.css +13 -14
  31. package/components/Drawer/drawer.scss +0 -1
  32. package/components/Dropdown/dropdown.css +27 -10
  33. package/components/Dropdown/dropdown.scss +22 -0
  34. package/components/EmptyState/empty-state.css +46 -52
  35. package/components/EmptyState/empty-state.scss +58 -57
  36. package/components/ExpandableSection/expandable-section.css +2 -0
  37. package/components/ExpandableSection/expandable-section.scss +2 -0
  38. package/components/FormControl/form-control.css +1 -1
  39. package/components/FormControl/themes/dark/form-control.scss +1 -1
  40. package/components/InputGroup/input-group.css +14 -0
  41. package/components/InputGroup/input-group.scss +9 -0
  42. package/components/InputGroup/themes/dark/input-group.scss +8 -0
  43. package/components/Label/label.css +2 -0
  44. package/components/Label/label.scss +2 -0
  45. package/components/LabelGroup/label-group.css +26 -22
  46. package/components/LabelGroup/label-group.scss +31 -26
  47. package/components/Login/login.css +1 -1
  48. package/components/Menu/menu.css +7 -0
  49. package/components/Menu/menu.scss +8 -0
  50. package/components/MenuToggle/menu-toggle.css +2 -0
  51. package/components/MenuToggle/menu-toggle.scss +2 -0
  52. package/components/ModalBox/modal-box.css +9 -8
  53. package/components/ModalBox/modal-box.scss +11 -11
  54. package/components/Page/page.css +60 -60
  55. package/components/Pagination/pagination.css +122 -2
  56. package/components/Pagination/pagination.scss +24 -1
  57. package/components/Popover/popover.css +2 -7
  58. package/components/Popover/themes/dark/popover.scss +2 -8
  59. package/components/Progress/progress.css +5 -2
  60. package/components/Progress/progress.scss +5 -2
  61. package/components/SearchInput/search-input.css +2 -0
  62. package/components/SearchInput/search-input.scss +2 -0
  63. package/components/Slider/slider.css +0 -7
  64. package/components/Slider/slider.scss +0 -9
  65. package/components/Table/table-grid.css +28 -28
  66. package/components/Table/table-tree-view.css +4 -4
  67. package/components/Table/table.css +4 -0
  68. package/components/Table/table.scss +4 -0
  69. package/components/Tabs/tabs.css +0 -4
  70. package/components/Tabs/tabs.scss +0 -7
  71. package/components/TextInputGroup/text-input-group.css +4 -2
  72. package/components/TextInputGroup/text-input-group.scss +4 -3
  73. package/components/Toolbar/toolbar.css +65 -37
  74. package/components/Toolbar/toolbar.scss +37 -3
  75. package/components/Tooltip/themes/dark/tooltip.scss +1 -11
  76. package/components/Tooltip/tooltip.css +7 -12
  77. package/components/Tooltip/tooltip.scss +6 -3
  78. package/components/TreeView/tree-view.css +7 -15
  79. package/components/TreeView/tree-view.scss +7 -18
  80. package/components/Wizard/wizard.css +2 -0
  81. package/components/Wizard/wizard.scss +2 -0
  82. package/docs/components/AboutModalBox/examples/AboutModalBox.md +13 -13
  83. package/docs/components/Accordion/examples/Accordion.md +12 -12
  84. package/docs/components/ActionList/examples/ActionList.md +6 -6
  85. package/docs/components/Alert/examples/Alert.md +19 -19
  86. package/docs/components/AlertGroup/examples/AlertGroup.md +12 -12
  87. package/docs/components/AppLauncher/examples/application-launcher.md +51 -46
  88. package/docs/components/Avatar/examples/Avatar.md +11 -11
  89. package/docs/components/BackToTop/examples/BackToTop.md +4 -4
  90. package/docs/components/Backdrop/examples/Backdrop.md +4 -4
  91. package/docs/components/BackgroundImage/examples/BackgroundImage.md +4 -4
  92. package/docs/components/Badge/examples/Badge.md +5 -5
  93. package/docs/components/Banner/examples/Banner.md +8 -8
  94. package/docs/components/Brand/examples/Brand.md +9 -9
  95. package/docs/components/Breadcrumb/examples/Breadcrumb.md +20 -20
  96. package/docs/components/Button/examples/Button.md +35 -35
  97. package/docs/components/CalendarMonth/examples/CalendarMonth.md +32 -32
  98. package/docs/components/Card/examples/Card.md +61 -44
  99. package/docs/components/Check/examples/Check.md +15 -19
  100. package/docs/components/Chip/examples/Chip.md +13 -13
  101. package/docs/components/ChipGroup/examples/ChipGroup.md +15 -344
  102. package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +22 -22
  103. package/docs/components/CodeBlock/examples/CodeBlock.md +9 -9
  104. package/docs/components/CodeEditor/examples/CodeEditor.md +54 -35
  105. package/docs/components/Content/examples/Content.md +37 -9
  106. package/docs/components/ContextSelector/examples/context-selector.css +5 -1
  107. package/docs/components/ContextSelector/examples/context-selector.md +86 -80
  108. package/docs/components/DataList/examples/DataList.md +187 -148
  109. package/docs/components/DatePicker/examples/DatePicker.md +10 -10
  110. package/docs/components/DescriptionList/examples/DescriptionList.md +24 -24
  111. package/docs/components/Divider/examples/Divider.md +10 -10
  112. package/docs/components/DragDrop/examples/DragDrop.md +5 -5
  113. package/docs/components/Drawer/examples/Drawer.md +43 -43
  114. package/docs/components/Dropdown/examples/Dropdown.css +5 -2
  115. package/docs/components/Dropdown/examples/Dropdown.md +311 -71
  116. package/docs/components/DualListSelector/examples/DualListSelector.md +201 -197
  117. package/docs/components/EmptyState/examples/EmptyState.md +130 -82
  118. package/docs/components/ExpandableSection/examples/ExpandableSection.md +23 -23
  119. package/docs/components/FileUpload/examples/FileUpload.md +8 -8
  120. package/docs/components/Form/examples/Form.md +64 -64
  121. package/docs/components/FormControl/examples/FormControl.md +20 -20
  122. package/docs/components/HelperText/examples/HelperText.md +12 -12
  123. package/docs/components/Hint/examples/Hint.md +7 -7
  124. package/docs/components/Icon/examples/Icon.md +10 -10
  125. package/docs/components/InlineEdit/examples/InlineEdit.md +24 -24
  126. package/docs/components/InputGroup/examples/InputGroup.md +10 -9
  127. package/docs/components/JumpLinks/examples/JumpLinks.md +35 -35
  128. package/docs/components/Label/examples/Label.md +31 -31
  129. package/docs/components/LabelGroup/examples/LabelGroup.md +24 -36
  130. package/docs/components/List/examples/List.md +18 -18
  131. package/docs/components/LogViewer/examples/LogViewer.md +69 -69
  132. package/docs/components/Login/examples/Login.md +32 -32
  133. package/docs/components/Masthead/examples/masthead.md +9 -9
  134. package/docs/components/Menu/examples/Menu.md +82 -80
  135. package/docs/components/MenuToggle/examples/MenuToggle.md +28 -28
  136. package/docs/components/ModalBox/examples/ModalBox.md +106 -85
  137. package/docs/components/MultipleFileUpload/examples/MultipleFileUpload.md +25 -25
  138. package/docs/components/Nav/examples/Navigation.md +69 -69
  139. package/docs/components/NotificationBadge/examples/NotificationBadge.md +8 -8
  140. package/docs/components/NotificationDrawer/examples/NotificationDrawer.md +44 -44
  141. package/docs/components/NumberInput/examples/NumberInput.md +12 -12
  142. package/docs/components/OptionsMenu/examples/options-menu.md +27 -28
  143. package/docs/components/OverflowMenu/examples/overflow-menu.md +25 -25
  144. package/docs/components/Page/examples/Page.md +54 -54
  145. package/docs/components/Pagination/examples/Pagination.md +129 -30
  146. package/docs/components/Panel/examples/Panel.md +10 -10
  147. package/docs/components/Popover/examples/Popover.md +34 -34
  148. package/docs/components/Progress/examples/Progress.md +31 -60
  149. package/docs/components/ProgressStepper/examples/ProgressStepper.md +45 -38
  150. package/docs/components/Radio/examples/Radio.md +11 -11
  151. package/docs/components/SearchInput/examples/SearchInput.md +34 -34
  152. package/docs/components/Select/examples/Select.md +143 -143
  153. package/docs/components/Sidebar/examples/Sidebar.md +14 -14
  154. package/docs/components/SimpleList/examples/SimpleList.md +15 -15
  155. package/docs/components/Skeleton/examples/Skeleton.md +8 -8
  156. package/docs/components/SkipToContent/examples/SkipToContent.md +5 -5
  157. package/docs/components/Slider/examples/Slider.md +30 -30
  158. package/docs/components/Spinner/examples/Spinner.md +24 -24
  159. package/docs/components/Switch/examples/Switch.md +19 -19
  160. package/docs/components/TabContent/examples/TabContent.md +13 -13
  161. package/docs/components/Table/examples/Table.md +1272 -855
  162. package/docs/components/Tabs/examples/Tabs.md +149 -149
  163. package/docs/components/TextInputGroup/examples/TextInputGroup.md +19 -19
  164. package/docs/components/Tile/examples/Tile.md +15 -15
  165. package/docs/components/Timestamp/examples/Timestamp.md +5 -5
  166. package/docs/components/Title/examples/Title.md +17 -17
  167. package/docs/components/ToggleGroup/examples/toggle-group.md +13 -13
  168. package/docs/components/Toolbar/examples/Toolbar.md +165 -144
  169. package/docs/components/Tooltip/examples/Tooltip.md +10 -10
  170. package/docs/components/TreeView/examples/TreeView.md +34 -34
  171. package/docs/components/Truncate/examples/Truncate.md +4 -4
  172. package/docs/components/Wizard/examples/Wizard.md +63 -70
  173. package/docs/demos/AboutModal/examples/AboutModal.md +4 -4
  174. package/docs/demos/Alert/examples/Alert.md +13 -13
  175. package/docs/demos/BackToTop/examples/BackToTop.md +4 -4
  176. package/docs/demos/Banner/examples/Banner.md +10 -11
  177. package/docs/demos/Card/examples/Card.md +151 -116
  178. package/docs/demos/CardView/examples/CardView.md +16 -15
  179. package/docs/demos/ContextSelector/examples/ContextSelector.md +18 -18
  180. package/docs/demos/Dashboard/examples/Dashboard.md +10 -9
  181. package/docs/demos/DataList/examples/DataList.md +160 -111
  182. package/docs/demos/DescriptionList/examples/DescriptionList.md +12 -13
  183. package/docs/demos/Drawer/examples/Drawer.md +20 -20
  184. package/docs/demos/HelperText/examples/HelperText.md +8 -9
  185. package/docs/demos/JumpLinks/examples/JumpLinks.md +28 -28
  186. package/docs/demos/Masthead/examples/Masthead.md +32 -35
  187. package/docs/demos/Modal/examples/Modal.md +54 -66
  188. package/docs/demos/Nav/examples/Nav.md +720 -767
  189. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +40 -28
  190. package/docs/demos/Page/examples/Page.md +37 -37
  191. package/docs/demos/PasswordStrength/examples/PasswordStrength.md +32 -33
  192. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +53 -49
  193. package/docs/demos/Skeleton/examples/Skeleton.md +4 -4
  194. package/docs/demos/Table/examples/Table.md +522 -378
  195. package/docs/demos/Tabs/examples/Tabs.md +120 -601
  196. package/docs/demos/Toolbar/examples/Toolbar.md +1781 -171
  197. package/docs/demos/Wizard/examples/Wizard.md +229 -225
  198. package/docs/layouts/Bullseye/examples/Bullseye.md +4 -4
  199. package/docs/layouts/Flex/examples/Flex.md +98 -98
  200. package/docs/layouts/Gallery/examples/Gallery.md +7 -7
  201. package/docs/layouts/Grid/examples/Grid.md +9 -9
  202. package/docs/layouts/Level/examples/Level.md +5 -5
  203. package/docs/layouts/Split/examples/Split.md +7 -7
  204. package/docs/layouts/Stack/examples/Stack.md +6 -6
  205. package/docs/utilities/Accessibility/examples/Accessibility.md +4 -4
  206. package/docs/utilities/Alignment/examples/Alignment.md +6 -6
  207. package/docs/utilities/BackgroundColor/examples/BackgroundColor.md +12 -12
  208. package/docs/utilities/BoxShadow/examples/box-shadow.md +22 -22
  209. package/docs/utilities/Display/examples/Display.md +11 -11
  210. package/docs/utilities/Flex/examples/Flex.md +34 -34
  211. package/docs/utilities/Float/examples/Float.md +4 -4
  212. package/docs/utilities/Sizing/examples/Sizing.md +50 -50
  213. package/docs/utilities/Spacing/examples/Spacing.md +34 -34
  214. package/docs/utilities/Text/examples/Text.md +27 -27
  215. package/icons/{pf-icons.json → pf-icons.mjs} +2 -1
  216. package/layouts/Grid/grid.css +5 -5
  217. package/package.json +59 -64
  218. package/patternfly-base-no-reset.css +5 -11
  219. package/patternfly-base.css +5 -11
  220. package/patternfly-no-reset.css +528 -336
  221. package/patternfly.css +528 -336
  222. package/patternfly.min.css +1 -1
  223. package/patternfly.min.css.map +1 -1
  224. package/sass-utilities/scss-variables.scss +0 -1
@@ -1,7 +1,21 @@
1
1
  .pf-c-label-group {
2
- // List
3
- --pf-c-label-group__list--MarginBottom: calc(var(--pf-global--spacer--xs) * -1);
4
- --pf-c-label-group__list--MarginRight: calc(var(--pf-global--spacer--xs) * -1);
2
+ // Label group - spaces main with the close button
3
+ --pf-c-label-group--RowGap: var(--pf-global--spacer--sm);
4
+ --pf-c-label-group--ColumnGap: 0;
5
+ --pf-c-label-group-m-vertical--RowGap: var(--pf-global--spacer--sm);
6
+ --pf-c-label-group-m-vertical--ColumnGap: var(--pf-global--spacer--sm);
7
+
8
+ // Main - spaces the category label with the list
9
+ --pf-c-label-group__main--RowGap: var(--pf-global--spacer--xs);
10
+ --pf-c-label-group__main--ColumnGap: var(--pf-global--spacer--sm);
11
+ --pf-c-label-group-m-vertical__main--RowGap: var(--pf-global--spacer--sm);
12
+ --pf-c-label-group-m-vertical__main--ColumnGap: var(--pf-global--spacer--xs);
13
+
14
+ // List - spaces the items
15
+ --pf-c-label-group__list--RowGap: var(--pf-global--spacer--xs);
16
+ --pf-c-label-group__list--ColumnGap: var(--pf-global--spacer--xs);
17
+ --pf-c-label-group-m-vertical__list--RowGap: var(--pf-global--spacer--xs);
18
+ --pf-c-label-group-m-vertical__list--ColumnGap: var(--pf-global--spacer--xs);
5
19
 
6
20
  // Category
7
21
  --pf-c-label-group--m-category--PaddingTop: var(--pf-global--spacer--xs);
@@ -15,9 +29,6 @@
15
29
  --pf-c-label-group--m-category--BackgroundColor: var(--pf-global--BackgroundColor--100);
16
30
 
17
31
  // Label
18
- --pf-c-label-group__label--MarginRight: var(--pf-global--spacer--sm);
19
- --pf-c-label-group__label--MarginBottom: 0;
20
- --pf-c-label-group--m-vertical__label--MarginBottom: var(--pf-global--spacer--sm);
21
32
  --pf-c-label-group__label--FontSize: var(--pf-global--FontSize--sm);
22
33
  --pf-c-label-group__label--MaxWidth: 18ch;
23
34
 
@@ -26,14 +37,9 @@
26
37
  --pf-c-label-group__close--MarginBottom: calc(var(--pf-global--spacer--xs) * -1);
27
38
  --pf-c-label-group--m-vertical__close--MarginTop: calc(var(--pf-global--spacer--form-element) * -1);
28
39
  --pf-c-label-group--m-vertical__close--MarginRight: calc(var(--pf-global--spacer--form-element) * -1);
29
- --pf-c-label-group--m-vertical__close--MarginLeft: var(--pf-global--spacer--sm);
30
40
  --pf-c-label-group--m-vertical__close--c-button--PaddingRight: var(--pf-global--spacer--sm);
31
41
  --pf-c-label-group--m-vertical__close--c-button--PaddingLeft: var(--pf-global--spacer--sm);
32
42
 
33
- // List item
34
- --pf-c-label-group__list-item--MarginRight: var(--pf-global--spacer--xs);
35
- --pf-c-label-group__list-item--MarginBottom: var(--pf-global--spacer--xs);
36
-
37
43
  // Textarea
38
44
  --pf-c-label-group__textarea--MinWidth: #{pf-size-prem(200px)};
39
45
  --pf-c-label-group__textarea--PaddingTop: #{pf-size-prem(2px)};
@@ -43,6 +49,8 @@
43
49
 
44
50
  display: inline-flex;
45
51
  align-items: center;
52
+ row-gap: var(--pf-c-label-group--RowGap);
53
+ column-gap: var(--pf-c-label-group--ColumnGap);
46
54
 
47
55
  &.pf-m-category {
48
56
  padding-top: var(--pf-c-label-group--m-category--PaddingTop);
@@ -55,11 +63,12 @@
55
63
  }
56
64
 
57
65
  &.pf-m-vertical {
58
- --pf-c-label-group__list--MarginRight: 0;
59
- --pf-c-label-group__list--MarginBottom: 0;
60
- --pf-c-label-group__list-item--MarginRight: 0;
61
- --pf-c-label-group__label--MarginRight: 0;
62
- --pf-c-label-group__label--MarginBottom: var(--pf-c-label-group--m-vertical__label--MarginBottom);
66
+ --pf-c-label-group--RowGap: var(--pf-c-label-group-m-vertical--RowGap);
67
+ --pf-c-label-group--ColumnGap: var(--pf-c-label-group-m-vertical--ColumnGap);
68
+ --pf-c-label-group__main--RowGap: var(--pf-c-label-group-m-vertical__main--RowGap);
69
+ --pf-c-label-group__main--ColumnGap: var(--pf-c-label-group-m-vertical__main--ColumnGap);
70
+ --pf-c-label-group__list--RowGap: var(--pf-c-label-group-m-vertical__list--RowGap);
71
+ --pf-c-label-group__list--ColumnGap: var(--pf-c-label-group-m-vertical__list--ColumnGap);
63
72
  --pf-c-label-group__close--MarginTop: var(--pf-c-label-group--m-vertical__close--MarginTop);
64
73
  --pf-c-label-group__close--MarginLeft: var(--pf-c-label-group--m-vertical__close--MarginLeft);
65
74
  --pf-c-label-group__close--MarginBottom: 0;
@@ -79,10 +88,6 @@
79
88
  flex-direction: column;
80
89
  }
81
90
 
82
- .pf-c-label-group__list-item:last-child {
83
- --pf-c-label-group__list-item--MarginBottom: 0;
84
- }
85
-
86
91
  .pf-c-label-group__close .pf-c-button {
87
92
  --pf-c-button--PaddingLeft: var(--pf-c-label-group--m-vertical__close--c-button--PaddingLeft);
88
93
  --pf-c-button--PaddingRight: var(--pf-c-label-group--m-vertical__close--c-button--PaddingRight);
@@ -110,31 +115,31 @@
110
115
  flex: 1;
111
116
  flex-wrap: wrap;
112
117
  align-items: baseline;
118
+ row-gap: var(--pf-c-label-group__main--RowGap);
119
+ column-gap: var(--pf-c-label-group__main--ColumnGap);
113
120
  }
114
121
 
115
122
  .pf-c-label-group__list {
116
123
  display: inline-flex;
117
124
  flex-wrap: wrap;
118
- margin-right: var(--pf-c-label-group__list--MarginRight);
119
- margin-bottom: var(--pf-c-label-group__list--MarginBottom);
125
+ row-gap: var(--pf-c-label-group__list--RowGap);
126
+ column-gap: var(--pf-c-label-group__list--ColumnGap);
120
127
  }
121
128
 
122
129
  .pf-c-label-group__list-item {
123
130
  display: inline-flex;
124
- margin-right: var(--pf-c-label-group__list-item--MarginRight);
125
- margin-bottom: var(--pf-c-label-group__list-item--MarginBottom);
126
131
  }
127
132
 
128
133
  .pf-c-label-group__label {
129
134
  @include pf-text-overflow;
130
135
 
131
136
  max-width: var(--pf-c-label-group__label--MaxWidth);
132
- margin-right: var(--pf-c-label-group__label--MarginRight);
133
- margin-bottom: var(--pf-c-label-group__label--MarginBottom);
134
137
  font-size: var(--pf-c-label-group__label--FontSize);
135
138
  }
136
139
 
137
140
  .pf-c-label-group__close {
141
+ display: flex;
142
+ align-self: start;
138
143
  margin-top: var(--pf-c-label-group__close--MarginTop);
139
144
  margin-right: var(--pf-c-label-group__close--MarginRight);
140
145
  margin-bottom: var(--pf-c-label-group__close--MarginBottom);
@@ -215,7 +215,7 @@
215
215
  }
216
216
  @media (min-width: 768px) {
217
217
  .pf-c-login__main-header-utilities,
218
- .pf-c-login__main-header .pf-c-dropdown {
218
+ .pf-c-login__main-header .pf-c-dropdown {
219
219
  grid-column: 2/3;
220
220
  grid-row: 1;
221
221
  }
@@ -150,6 +150,7 @@
150
150
  --pf-c-menu__item-action--PaddingBottom: var(--pf-global--spacer--sm);
151
151
  --pf-c-menu__item-action--PaddingLeft: var(--pf-global--spacer--md);
152
152
  --pf-c-menu__item-action--Color: var(--pf-global--Color--200);
153
+ --pf-c-menu__item-action--BackgroundColor: transparent;
153
154
  --pf-c-menu__item-action--hover--Color: var(--pf-global--Color--100);
154
155
  --pf-c-menu__item-action--disabled--Color: var(--pf-global--disabled-color--200);
155
156
  --pf-c-menu__item-action--m-favorited--Color: var(--pf-global--palette--gold-400);
@@ -270,6 +271,7 @@
270
271
  .pf-c-menu.pf-m-drilldown .pf-c-menu__list {
271
272
  position: relative;
272
273
  overflow: hidden;
274
+ visibility: visible;
273
275
  transition: var(--pf-c-menu--m-drilldown__list--Transition);
274
276
  }
275
277
  .pf-c-menu.pf-m-drilldown .pf-c-menu__list .pf-c-menu__list {
@@ -296,11 +298,15 @@
296
298
  }
297
299
  .pf-c-menu.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list {
298
300
  overflow: visible;
301
+ visibility: hidden;
299
302
  }
300
303
  .pf-c-menu.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list > .pf-c-divider,
301
304
  .pf-c-menu.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list > .pf-c-menu__list-item:not(.pf-m-current-path) {
302
305
  display: none;
303
306
  }
307
+ .pf-c-menu.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list > .pf-c-menu__list-item.pf-m-current-path {
308
+ visibility: hidden;
309
+ }
304
310
  .pf-c-menu.pf-m-plain {
305
311
  --pf-c-menu--BoxShadow: var(--pf-c-menu--m-plain--BoxShadow);
306
312
  }
@@ -576,6 +582,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
576
582
  padding-bottom: var(--pf-c-menu__item-action--PaddingBottom);
577
583
  padding-left: var(--pf-c-menu__item-action--PaddingLeft);
578
584
  color: var(--pf-c-menu__item-action--Color);
585
+ background-color: var(--pf-c-menu__item-action--BackgroundColor);
579
586
  border: none;
580
587
  }
581
588
  .pf-c-menu__item-action.pf-m-favorite .pf-c-menu__item-action-icon {
@@ -141,6 +141,7 @@
141
141
  --pf-c-menu__item-action--PaddingBottom: var(--pf-global--spacer--sm);
142
142
  --pf-c-menu__item-action--PaddingLeft: var(--pf-global--spacer--md);
143
143
  --pf-c-menu__item-action--Color: var(--pf-global--Color--200);
144
+ --pf-c-menu__item-action--BackgroundColor: transparent;
144
145
  --pf-c-menu__item-action--hover--Color: var(--pf-global--Color--100);
145
146
  --pf-c-menu__item-action--disabled--Color: var(--pf-global--disabled-color--200);
146
147
  --pf-c-menu__item-action--m-favorited--Color: var(--pf-global--palette--gold-400);
@@ -274,6 +275,7 @@
274
275
  .pf-c-menu__list {
275
276
  position: relative;
276
277
  overflow: hidden;
278
+ visibility: visible;
277
279
  transition: var(--pf-c-menu--m-drilldown__list--Transition);
278
280
 
279
281
  & .pf-c-menu__list {
@@ -316,11 +318,16 @@
316
318
  // stylelint-disable selector-max-class
317
319
  &.pf-m-drilled-in > .pf-c-menu__content > .pf-c-menu__list {
318
320
  overflow: visible;
321
+ visibility: hidden;
319
322
 
320
323
  > .pf-c-divider,
321
324
  > .pf-c-menu__list-item:not(.pf-m-current-path) {
322
325
  display: none; // hide all siblings of current path to maintain proper menu height
323
326
  }
327
+
328
+ > .pf-c-menu__list-item.pf-m-current-path {
329
+ visibility: hidden;
330
+ }
324
331
  }
325
332
  // stylelint-enable
326
333
 
@@ -696,6 +703,7 @@
696
703
  padding-bottom: var(--pf-c-menu__item-action--PaddingBottom);
697
704
  padding-left: var(--pf-c-menu__item-action--PaddingLeft);
698
705
  color: var(--pf-c-menu__item-action--Color);
706
+ background-color: var(--pf-c-menu__item-action--BackgroundColor);
699
707
  border: none;
700
708
 
701
709
  &.pf-m-favorite {
@@ -106,6 +106,7 @@
106
106
  --pf-c-menu-toggle--m-split-button--m-action--m-primary--child--BorderLeftColor: var(--pf-global--primary-color--200);
107
107
  --pf-c-menu-toggle--m-split-button--m-action--m-primary--m-expanded--child--BackgroundColor: var(--pf-global--primary-color--200);
108
108
  --pf-c-menu-toggle--m-split-button--m-action--m-secondary--child--BorderLeftColor: var(--pf-global--primary-color--100);
109
+ --pf-c-menu-toggle__button--BackgroundColor: transparent;
109
110
  --pf-c-menu-toggle__button__controls--MarginRight: var(--pf-global--spacer--sm);
110
111
  --pf-c-menu-toggle__button__controls--MarginLeft: var(--pf-global--spacer--sm);
111
112
  --pf-c-menu-toggle--m-typeahead__controls--MarginRight: var(--pf-global--spacer--md);
@@ -361,6 +362,7 @@
361
362
  --pf-c-menu-toggle__controls--MarginRight: var(--pf-c-menu-toggle__button__controls--MarginRight);
362
363
  --pf-c-menu-toggle__controls--MarginLeft: var(--pf-c-menu-toggle__button__controls--MarginLeft);
363
364
  color: inherit;
365
+ background-color: var(--pf-c-menu-toggle__button--BackgroundColor);
364
366
  border: 0;
365
367
  }
366
368
 
@@ -149,6 +149,7 @@
149
149
  --pf-c-menu-toggle--m-split-button--m-action--m-secondary--child--BorderLeftColor: var(--pf-global--primary-color--100);
150
150
 
151
151
  // Split button, controls, check
152
+ --pf-c-menu-toggle__button--BackgroundColor: transparent;
152
153
  --pf-c-menu-toggle__button__controls--MarginRight: var(--pf-global--spacer--sm);
153
154
  --pf-c-menu-toggle__button__controls--MarginLeft: var(--pf-global--spacer--sm);
154
155
 
@@ -502,6 +503,7 @@
502
503
  --pf-c-menu-toggle__controls--MarginLeft: var(--pf-c-menu-toggle__button__controls--MarginLeft);
503
504
 
504
505
  color: inherit;
506
+ background-color: var(--pf-c-menu-toggle__button--BackgroundColor);
505
507
  border: 0;
506
508
  }
507
509
 
@@ -34,9 +34,9 @@
34
34
  --pf-c-modal-box__body--PaddingLeft: var(--pf-global--spacer--lg);
35
35
  --pf-c-modal-box__body--last-child--PaddingBottom: var(--pf-global--spacer--lg);
36
36
  --pf-c-modal-box__header--body--PaddingTop: var(--pf-global--spacer--md);
37
- --pf-c-modal-box--c-button--Top: calc(var(--pf-global--spacer--lg));
38
- --pf-c-modal-box--c-button--Right: var(--pf-global--spacer--md);
39
- --pf-c-modal-box--c-button--sibling--MarginRight: calc(var(--pf-global--spacer--xl) + var(--pf-global--spacer--sm));
37
+ --pf-c-modal-box__close--Top: calc(var(--pf-global--spacer--lg));
38
+ --pf-c-modal-box__close--Right: var(--pf-global--spacer--md);
39
+ --pf-c-modal-box__close--sibling--MarginRight: calc(var(--pf-global--spacer--xl) + var(--pf-global--spacer--sm));
40
40
  --pf-c-modal-box__footer--PaddingTop: var(--pf-global--spacer--lg);
41
41
  --pf-c-modal-box__footer--PaddingRight: var(--pf-global--spacer--lg);
42
42
  --pf-c-modal-box__footer--PaddingBottom: var(--pf-global--spacer--lg);
@@ -88,13 +88,14 @@
88
88
  .pf-c-modal-box.pf-m-info {
89
89
  --pf-c-modal-box__title-icon--Color: var(--pf-c-modal-box--m-info__title-icon--Color);
90
90
  }
91
- .pf-c-modal-box > .pf-c-button {
91
+
92
+ .pf-c-modal-box__close {
92
93
  position: absolute;
93
- top: var(--pf-c-modal-box--c-button--Top);
94
- right: var(--pf-c-modal-box--c-button--Right);
94
+ top: var(--pf-c-modal-box__close--Top);
95
+ right: var(--pf-c-modal-box__close--Right);
95
96
  }
96
- .pf-c-modal-box > .pf-c-button + * {
97
- margin-right: var(--pf-c-modal-box--c-button--sibling--MarginRight);
97
+ .pf-c-modal-box__close + * {
98
+ margin-right: var(--pf-c-modal-box__close--sibling--MarginRight);
98
99
  }
99
100
 
100
101
  .pf-c-modal-box__header {
@@ -52,9 +52,9 @@
52
52
  --pf-c-modal-box__header--body--PaddingTop: var(--pf-global--spacer--md);
53
53
 
54
54
  // Close
55
- --pf-c-modal-box--c-button--Top: calc(var(--pf-global--spacer--lg));
56
- --pf-c-modal-box--c-button--Right: var(--pf-global--spacer--md);
57
- --pf-c-modal-box--c-button--sibling--MarginRight: calc(var(--pf-global--spacer--xl) + var(--pf-global--spacer--sm));
55
+ --pf-c-modal-box__close--Top: calc(var(--pf-global--spacer--lg));
56
+ --pf-c-modal-box__close--Right: var(--pf-global--spacer--md);
57
+ --pf-c-modal-box__close--sibling--MarginRight: calc(var(--pf-global--spacer--xl) + var(--pf-global--spacer--sm));
58
58
 
59
59
  // Footer
60
60
  --pf-c-modal-box__footer--PaddingTop: var(--pf-global--spacer--lg);
@@ -114,16 +114,16 @@
114
114
  &.pf-m-info {
115
115
  --pf-c-modal-box__title-icon--Color: var(--pf-c-modal-box--m-info__title-icon--Color);
116
116
  }
117
+ }
117
118
 
118
- // Close button
119
- > .pf-c-button {
120
- position: absolute;
121
- top: var(--pf-c-modal-box--c-button--Top);
122
- right: var(--pf-c-modal-box--c-button--Right);
119
+ // Close button
120
+ .pf-c-modal-box__close {
121
+ position: absolute;
122
+ top: var(--pf-c-modal-box__close--Top);
123
+ right: var(--pf-c-modal-box__close--Right);
123
124
 
124
- + * {
125
- margin-right: var(--pf-c-modal-box--c-button--sibling--MarginRight); // Create room for the close button
126
- }
125
+ + * {
126
+ margin-right: var(--pf-c-modal-box__close--sibling--MarginRight); // Create room for the close button
127
127
  }
128
128
  }
129
129
 
@@ -547,24 +547,24 @@
547
547
  }
548
548
  @media (min-height: 0) {
549
549
  .pf-c-page__main-nav.pf-m-sticky-top-on-sm-height,
550
- .pf-c-page__main-breadcrumb.pf-m-sticky-top-on-sm-height,
551
- .pf-c-page__main-tabs.pf-m-sticky-top-on-sm-height,
552
- .pf-c-page__main-section.pf-m-sticky-top-on-sm-height,
553
- .pf-c-page__main-wizard.pf-m-sticky-top-on-sm-height,
554
- .pf-c-page__main-group.pf-m-sticky-top-on-sm-height,
555
- .pf-c-page__main-subnav.pf-m-sticky-top-on-sm-height {
550
+ .pf-c-page__main-breadcrumb.pf-m-sticky-top-on-sm-height,
551
+ .pf-c-page__main-tabs.pf-m-sticky-top-on-sm-height,
552
+ .pf-c-page__main-section.pf-m-sticky-top-on-sm-height,
553
+ .pf-c-page__main-wizard.pf-m-sticky-top-on-sm-height,
554
+ .pf-c-page__main-group.pf-m-sticky-top-on-sm-height,
555
+ .pf-c-page__main-subnav.pf-m-sticky-top-on-sm-height {
556
556
  position: sticky;
557
557
  top: 0;
558
558
  z-index: var(--pf-c-page--section--m-sticky-top--ZIndex);
559
559
  box-shadow: var(--pf-c-page--section--m-sticky-top--BoxShadow);
560
560
  }
561
561
  .pf-c-page__main-nav.pf-m-sticky-bottom-on-sm-height,
562
- .pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-sm-height,
563
- .pf-c-page__main-tabs.pf-m-sticky-bottom-on-sm-height,
564
- .pf-c-page__main-section.pf-m-sticky-bottom-on-sm-height,
565
- .pf-c-page__main-wizard.pf-m-sticky-bottom-on-sm-height,
566
- .pf-c-page__main-group.pf-m-sticky-bottom-on-sm-height,
567
- .pf-c-page__main-subnav.pf-m-sticky-bottom-on-sm-height {
562
+ .pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-sm-height,
563
+ .pf-c-page__main-tabs.pf-m-sticky-bottom-on-sm-height,
564
+ .pf-c-page__main-section.pf-m-sticky-bottom-on-sm-height,
565
+ .pf-c-page__main-wizard.pf-m-sticky-bottom-on-sm-height,
566
+ .pf-c-page__main-group.pf-m-sticky-bottom-on-sm-height,
567
+ .pf-c-page__main-subnav.pf-m-sticky-bottom-on-sm-height {
568
568
  position: sticky;
569
569
  bottom: 0;
570
570
  z-index: var(--pf-c-page--section--m-sticky-bottom--ZIndex);
@@ -573,24 +573,24 @@
573
573
  }
574
574
  @media (min-height: 40rem) {
575
575
  .pf-c-page__main-nav.pf-m-sticky-top-on-md-height,
576
- .pf-c-page__main-breadcrumb.pf-m-sticky-top-on-md-height,
577
- .pf-c-page__main-tabs.pf-m-sticky-top-on-md-height,
578
- .pf-c-page__main-section.pf-m-sticky-top-on-md-height,
579
- .pf-c-page__main-wizard.pf-m-sticky-top-on-md-height,
580
- .pf-c-page__main-group.pf-m-sticky-top-on-md-height,
581
- .pf-c-page__main-subnav.pf-m-sticky-top-on-md-height {
576
+ .pf-c-page__main-breadcrumb.pf-m-sticky-top-on-md-height,
577
+ .pf-c-page__main-tabs.pf-m-sticky-top-on-md-height,
578
+ .pf-c-page__main-section.pf-m-sticky-top-on-md-height,
579
+ .pf-c-page__main-wizard.pf-m-sticky-top-on-md-height,
580
+ .pf-c-page__main-group.pf-m-sticky-top-on-md-height,
581
+ .pf-c-page__main-subnav.pf-m-sticky-top-on-md-height {
582
582
  position: sticky;
583
583
  top: 0;
584
584
  z-index: var(--pf-c-page--section--m-sticky-top--ZIndex);
585
585
  box-shadow: var(--pf-c-page--section--m-sticky-top--BoxShadow);
586
586
  }
587
587
  .pf-c-page__main-nav.pf-m-sticky-bottom-on-md-height,
588
- .pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-md-height,
589
- .pf-c-page__main-tabs.pf-m-sticky-bottom-on-md-height,
590
- .pf-c-page__main-section.pf-m-sticky-bottom-on-md-height,
591
- .pf-c-page__main-wizard.pf-m-sticky-bottom-on-md-height,
592
- .pf-c-page__main-group.pf-m-sticky-bottom-on-md-height,
593
- .pf-c-page__main-subnav.pf-m-sticky-bottom-on-md-height {
588
+ .pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-md-height,
589
+ .pf-c-page__main-tabs.pf-m-sticky-bottom-on-md-height,
590
+ .pf-c-page__main-section.pf-m-sticky-bottom-on-md-height,
591
+ .pf-c-page__main-wizard.pf-m-sticky-bottom-on-md-height,
592
+ .pf-c-page__main-group.pf-m-sticky-bottom-on-md-height,
593
+ .pf-c-page__main-subnav.pf-m-sticky-bottom-on-md-height {
594
594
  position: sticky;
595
595
  bottom: 0;
596
596
  z-index: var(--pf-c-page--section--m-sticky-bottom--ZIndex);
@@ -599,24 +599,24 @@
599
599
  }
600
600
  @media (min-height: 48rem) {
601
601
  .pf-c-page__main-nav.pf-m-sticky-top-on-lg-height,
602
- .pf-c-page__main-breadcrumb.pf-m-sticky-top-on-lg-height,
603
- .pf-c-page__main-tabs.pf-m-sticky-top-on-lg-height,
604
- .pf-c-page__main-section.pf-m-sticky-top-on-lg-height,
605
- .pf-c-page__main-wizard.pf-m-sticky-top-on-lg-height,
606
- .pf-c-page__main-group.pf-m-sticky-top-on-lg-height,
607
- .pf-c-page__main-subnav.pf-m-sticky-top-on-lg-height {
602
+ .pf-c-page__main-breadcrumb.pf-m-sticky-top-on-lg-height,
603
+ .pf-c-page__main-tabs.pf-m-sticky-top-on-lg-height,
604
+ .pf-c-page__main-section.pf-m-sticky-top-on-lg-height,
605
+ .pf-c-page__main-wizard.pf-m-sticky-top-on-lg-height,
606
+ .pf-c-page__main-group.pf-m-sticky-top-on-lg-height,
607
+ .pf-c-page__main-subnav.pf-m-sticky-top-on-lg-height {
608
608
  position: sticky;
609
609
  top: 0;
610
610
  z-index: var(--pf-c-page--section--m-sticky-top--ZIndex);
611
611
  box-shadow: var(--pf-c-page--section--m-sticky-top--BoxShadow);
612
612
  }
613
613
  .pf-c-page__main-nav.pf-m-sticky-bottom-on-lg-height,
614
- .pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-lg-height,
615
- .pf-c-page__main-tabs.pf-m-sticky-bottom-on-lg-height,
616
- .pf-c-page__main-section.pf-m-sticky-bottom-on-lg-height,
617
- .pf-c-page__main-wizard.pf-m-sticky-bottom-on-lg-height,
618
- .pf-c-page__main-group.pf-m-sticky-bottom-on-lg-height,
619
- .pf-c-page__main-subnav.pf-m-sticky-bottom-on-lg-height {
614
+ .pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-lg-height,
615
+ .pf-c-page__main-tabs.pf-m-sticky-bottom-on-lg-height,
616
+ .pf-c-page__main-section.pf-m-sticky-bottom-on-lg-height,
617
+ .pf-c-page__main-wizard.pf-m-sticky-bottom-on-lg-height,
618
+ .pf-c-page__main-group.pf-m-sticky-bottom-on-lg-height,
619
+ .pf-c-page__main-subnav.pf-m-sticky-bottom-on-lg-height {
620
620
  position: sticky;
621
621
  bottom: 0;
622
622
  z-index: var(--pf-c-page--section--m-sticky-bottom--ZIndex);
@@ -625,24 +625,24 @@
625
625
  }
626
626
  @media (min-height: 60rem) {
627
627
  .pf-c-page__main-nav.pf-m-sticky-top-on-xl-height,
628
- .pf-c-page__main-breadcrumb.pf-m-sticky-top-on-xl-height,
629
- .pf-c-page__main-tabs.pf-m-sticky-top-on-xl-height,
630
- .pf-c-page__main-section.pf-m-sticky-top-on-xl-height,
631
- .pf-c-page__main-wizard.pf-m-sticky-top-on-xl-height,
632
- .pf-c-page__main-group.pf-m-sticky-top-on-xl-height,
633
- .pf-c-page__main-subnav.pf-m-sticky-top-on-xl-height {
628
+ .pf-c-page__main-breadcrumb.pf-m-sticky-top-on-xl-height,
629
+ .pf-c-page__main-tabs.pf-m-sticky-top-on-xl-height,
630
+ .pf-c-page__main-section.pf-m-sticky-top-on-xl-height,
631
+ .pf-c-page__main-wizard.pf-m-sticky-top-on-xl-height,
632
+ .pf-c-page__main-group.pf-m-sticky-top-on-xl-height,
633
+ .pf-c-page__main-subnav.pf-m-sticky-top-on-xl-height {
634
634
  position: sticky;
635
635
  top: 0;
636
636
  z-index: var(--pf-c-page--section--m-sticky-top--ZIndex);
637
637
  box-shadow: var(--pf-c-page--section--m-sticky-top--BoxShadow);
638
638
  }
639
639
  .pf-c-page__main-nav.pf-m-sticky-bottom-on-xl-height,
640
- .pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-xl-height,
641
- .pf-c-page__main-tabs.pf-m-sticky-bottom-on-xl-height,
642
- .pf-c-page__main-section.pf-m-sticky-bottom-on-xl-height,
643
- .pf-c-page__main-wizard.pf-m-sticky-bottom-on-xl-height,
644
- .pf-c-page__main-group.pf-m-sticky-bottom-on-xl-height,
645
- .pf-c-page__main-subnav.pf-m-sticky-bottom-on-xl-height {
640
+ .pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-xl-height,
641
+ .pf-c-page__main-tabs.pf-m-sticky-bottom-on-xl-height,
642
+ .pf-c-page__main-section.pf-m-sticky-bottom-on-xl-height,
643
+ .pf-c-page__main-wizard.pf-m-sticky-bottom-on-xl-height,
644
+ .pf-c-page__main-group.pf-m-sticky-bottom-on-xl-height,
645
+ .pf-c-page__main-subnav.pf-m-sticky-bottom-on-xl-height {
646
646
  position: sticky;
647
647
  bottom: 0;
648
648
  z-index: var(--pf-c-page--section--m-sticky-bottom--ZIndex);
@@ -651,24 +651,24 @@
651
651
  }
652
652
  @media (min-height: 80rem) {
653
653
  .pf-c-page__main-nav.pf-m-sticky-top-on-2xl-height,
654
- .pf-c-page__main-breadcrumb.pf-m-sticky-top-on-2xl-height,
655
- .pf-c-page__main-tabs.pf-m-sticky-top-on-2xl-height,
656
- .pf-c-page__main-section.pf-m-sticky-top-on-2xl-height,
657
- .pf-c-page__main-wizard.pf-m-sticky-top-on-2xl-height,
658
- .pf-c-page__main-group.pf-m-sticky-top-on-2xl-height,
659
- .pf-c-page__main-subnav.pf-m-sticky-top-on-2xl-height {
654
+ .pf-c-page__main-breadcrumb.pf-m-sticky-top-on-2xl-height,
655
+ .pf-c-page__main-tabs.pf-m-sticky-top-on-2xl-height,
656
+ .pf-c-page__main-section.pf-m-sticky-top-on-2xl-height,
657
+ .pf-c-page__main-wizard.pf-m-sticky-top-on-2xl-height,
658
+ .pf-c-page__main-group.pf-m-sticky-top-on-2xl-height,
659
+ .pf-c-page__main-subnav.pf-m-sticky-top-on-2xl-height {
660
660
  position: sticky;
661
661
  top: 0;
662
662
  z-index: var(--pf-c-page--section--m-sticky-top--ZIndex);
663
663
  box-shadow: var(--pf-c-page--section--m-sticky-top--BoxShadow);
664
664
  }
665
665
  .pf-c-page__main-nav.pf-m-sticky-bottom-on-2xl-height,
666
- .pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-2xl-height,
667
- .pf-c-page__main-tabs.pf-m-sticky-bottom-on-2xl-height,
668
- .pf-c-page__main-section.pf-m-sticky-bottom-on-2xl-height,
669
- .pf-c-page__main-wizard.pf-m-sticky-bottom-on-2xl-height,
670
- .pf-c-page__main-group.pf-m-sticky-bottom-on-2xl-height,
671
- .pf-c-page__main-subnav.pf-m-sticky-bottom-on-2xl-height {
666
+ .pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-2xl-height,
667
+ .pf-c-page__main-tabs.pf-m-sticky-bottom-on-2xl-height,
668
+ .pf-c-page__main-section.pf-m-sticky-bottom-on-2xl-height,
669
+ .pf-c-page__main-wizard.pf-m-sticky-bottom-on-2xl-height,
670
+ .pf-c-page__main-group.pf-m-sticky-bottom-on-2xl-height,
671
+ .pf-c-page__main-subnav.pf-m-sticky-bottom-on-2xl-height {
672
672
  position: sticky;
673
673
  bottom: 0;
674
674
  z-index: var(--pf-c-page--section--m-sticky-bottom--ZIndex);