@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
@@ -7,6 +7,11 @@
7
7
  }
8
8
 
9
9
  .pf-c-pagination {
10
+ --pf-c-pagination--inset: 0;
11
+ --pf-c-pagination--PaddingRight: var(--pf-c-pagination--inset);
12
+ --pf-c-pagination--PaddingLeft: var(--pf-c-pagination--inset);
13
+ --pf-c-pagination--m-page-insets--inset: var(--pf-global--spacer--md);
14
+ --pf-c-pagination--m-page-insets--xl--inset: var(--pf-global--spacer--lg);
10
15
  --pf-c-pagination--child--MarginRight: var(--pf-global--spacer--lg);
11
16
  --pf-c-pagination--m-bottom--child--MarginRight: 0;
12
17
  --pf-c-pagination--m-bottom--child--md--MarginRight: var(--pf-global--spacer--lg);
@@ -62,6 +67,8 @@
62
67
  flex-wrap: wrap;
63
68
  align-items: center;
64
69
  justify-content: flex-end;
70
+ padding-right: var(--pf-c-pagination--PaddingRight);
71
+ padding-left: var(--pf-c-pagination--PaddingLeft);
65
72
  }
66
73
  @media screen and (min-width: 768px) {
67
74
  .pf-c-pagination {
@@ -81,6 +88,8 @@
81
88
  .pf-c-pagination {
82
89
  --pf-c-pagination--m-bottom--md--PaddingRight: var(--pf-c-pagination--m-bottom--xl--PaddingRight);
83
90
  --pf-c-pagination--m-bottom--md--PaddingLeft: var(--pf-c-pagination--m-bottom--xl--PaddingLeft);
91
+ --pf-c-pagination__scroll-button--Width: var(--pf-c-pagination__scroll-button--xl--Width);
92
+ --pf-c-pagination--m-page-insets--inset: var(--pf-c-pagination--m-page-insets--xl--inset);
84
93
  }
85
94
  }
86
95
  .pf-c-pagination > *:not(:last-child):not(.pf-c-pagination__total-items) {
@@ -136,8 +145,8 @@
136
145
  padding: var(--pf-c-pagination--m-bottom--md--PaddingTop) var(--pf-c-pagination--m-bottom--md--PaddingRight) var(--pf-c-pagination--m-bottom--md--PaddingBottom) var(--pf-c-pagination--m-bottom--md--PaddingLeft);
137
146
  }
138
147
  .pf-c-pagination.pf-m-bottom .pf-c-pagination__nav-control.pf-m-first,
139
- .pf-c-pagination.pf-m-bottom .pf-c-pagination__nav-control.pf-m-last,
140
- .pf-c-pagination.pf-m-bottom .pf-c-pagination__nav-page-select {
148
+ .pf-c-pagination.pf-m-bottom .pf-c-pagination__nav-control.pf-m-last,
149
+ .pf-c-pagination.pf-m-bottom .pf-c-pagination__nav-page-select {
141
150
  display: block;
142
151
  }
143
152
  .pf-c-pagination.pf-m-bottom .pf-c-options-menu {
@@ -171,6 +180,9 @@
171
180
  .pf-c-pagination.pf-m-compact {
172
181
  --pf-c-pagination--child--MarginRight: var(--pf-c-pagination--m-compact--child--MarginRight);
173
182
  }
183
+ .pf-c-pagination.pf-m-page-insets {
184
+ --pf-c-pagination--inset: var(--pf-c-pagination--m-page-insets--inset);
185
+ }
174
186
 
175
187
  .pf-c-pagination__nav {
176
188
  display: var(--pf-c-pagination__nav--Display);
@@ -217,6 +229,24 @@
217
229
  --pf-c-pagination--c-options-menu--Display: var(--pf-c-pagination--m-display-full--c-options-menu--Display);
218
230
  --pf-c-pagination__total-items--Display: var(--pf-c-pagination--m-display-full__total-items--Display);
219
231
  }
232
+ .pf-c-pagination.pf-m-inset-none {
233
+ --pf-c-pagination--inset: 0;
234
+ }
235
+ .pf-c-pagination.pf-m-inset-sm {
236
+ --pf-c-pagination--inset: var(--pf-global--spacer--sm);
237
+ }
238
+ .pf-c-pagination.pf-m-inset-md {
239
+ --pf-c-pagination--inset: var(--pf-global--spacer--md);
240
+ }
241
+ .pf-c-pagination.pf-m-inset-lg {
242
+ --pf-c-pagination--inset: var(--pf-global--spacer--lg);
243
+ }
244
+ .pf-c-pagination.pf-m-inset-xl {
245
+ --pf-c-pagination--inset: var(--pf-global--spacer--xl);
246
+ }
247
+ .pf-c-pagination.pf-m-inset-2xl {
248
+ --pf-c-pagination--inset: var(--pf-global--spacer--2xl);
249
+ }
220
250
  @media (min-width: 576px) {
221
251
  .pf-c-pagination.pf-m-display-summary-on-sm {
222
252
  --pf-c-pagination__nav--Display: var(--pf-c-pagination--m-display-summary__nav--Display);
@@ -228,6 +258,24 @@
228
258
  --pf-c-pagination--c-options-menu--Display: var(--pf-c-pagination--m-display-full--c-options-menu--Display);
229
259
  --pf-c-pagination__total-items--Display: var(--pf-c-pagination--m-display-full__total-items--Display);
230
260
  }
261
+ .pf-c-pagination.pf-m-inset-none-on-sm {
262
+ --pf-c-pagination--inset: 0;
263
+ }
264
+ .pf-c-pagination.pf-m-inset-sm-on-sm {
265
+ --pf-c-pagination--inset: var(--pf-global--spacer--sm);
266
+ }
267
+ .pf-c-pagination.pf-m-inset-md-on-sm {
268
+ --pf-c-pagination--inset: var(--pf-global--spacer--md);
269
+ }
270
+ .pf-c-pagination.pf-m-inset-lg-on-sm {
271
+ --pf-c-pagination--inset: var(--pf-global--spacer--lg);
272
+ }
273
+ .pf-c-pagination.pf-m-inset-xl-on-sm {
274
+ --pf-c-pagination--inset: var(--pf-global--spacer--xl);
275
+ }
276
+ .pf-c-pagination.pf-m-inset-2xl-on-sm {
277
+ --pf-c-pagination--inset: var(--pf-global--spacer--2xl);
278
+ }
231
279
  }
232
280
  @media (min-width: 768px) {
233
281
  .pf-c-pagination.pf-m-display-summary-on-md {
@@ -240,6 +288,24 @@
240
288
  --pf-c-pagination--c-options-menu--Display: var(--pf-c-pagination--m-display-full--c-options-menu--Display);
241
289
  --pf-c-pagination__total-items--Display: var(--pf-c-pagination--m-display-full__total-items--Display);
242
290
  }
291
+ .pf-c-pagination.pf-m-inset-none-on-md {
292
+ --pf-c-pagination--inset: 0;
293
+ }
294
+ .pf-c-pagination.pf-m-inset-sm-on-md {
295
+ --pf-c-pagination--inset: var(--pf-global--spacer--sm);
296
+ }
297
+ .pf-c-pagination.pf-m-inset-md-on-md {
298
+ --pf-c-pagination--inset: var(--pf-global--spacer--md);
299
+ }
300
+ .pf-c-pagination.pf-m-inset-lg-on-md {
301
+ --pf-c-pagination--inset: var(--pf-global--spacer--lg);
302
+ }
303
+ .pf-c-pagination.pf-m-inset-xl-on-md {
304
+ --pf-c-pagination--inset: var(--pf-global--spacer--xl);
305
+ }
306
+ .pf-c-pagination.pf-m-inset-2xl-on-md {
307
+ --pf-c-pagination--inset: var(--pf-global--spacer--2xl);
308
+ }
243
309
  }
244
310
  @media (min-width: 992px) {
245
311
  .pf-c-pagination.pf-m-display-summary-on-lg {
@@ -252,6 +318,24 @@
252
318
  --pf-c-pagination--c-options-menu--Display: var(--pf-c-pagination--m-display-full--c-options-menu--Display);
253
319
  --pf-c-pagination__total-items--Display: var(--pf-c-pagination--m-display-full__total-items--Display);
254
320
  }
321
+ .pf-c-pagination.pf-m-inset-none-on-lg {
322
+ --pf-c-pagination--inset: 0;
323
+ }
324
+ .pf-c-pagination.pf-m-inset-sm-on-lg {
325
+ --pf-c-pagination--inset: var(--pf-global--spacer--sm);
326
+ }
327
+ .pf-c-pagination.pf-m-inset-md-on-lg {
328
+ --pf-c-pagination--inset: var(--pf-global--spacer--md);
329
+ }
330
+ .pf-c-pagination.pf-m-inset-lg-on-lg {
331
+ --pf-c-pagination--inset: var(--pf-global--spacer--lg);
332
+ }
333
+ .pf-c-pagination.pf-m-inset-xl-on-lg {
334
+ --pf-c-pagination--inset: var(--pf-global--spacer--xl);
335
+ }
336
+ .pf-c-pagination.pf-m-inset-2xl-on-lg {
337
+ --pf-c-pagination--inset: var(--pf-global--spacer--2xl);
338
+ }
255
339
  }
256
340
  @media (min-width: 1200px) {
257
341
  .pf-c-pagination.pf-m-display-summary-on-xl {
@@ -264,6 +348,24 @@
264
348
  --pf-c-pagination--c-options-menu--Display: var(--pf-c-pagination--m-display-full--c-options-menu--Display);
265
349
  --pf-c-pagination__total-items--Display: var(--pf-c-pagination--m-display-full__total-items--Display);
266
350
  }
351
+ .pf-c-pagination.pf-m-inset-none-on-xl {
352
+ --pf-c-pagination--inset: 0;
353
+ }
354
+ .pf-c-pagination.pf-m-inset-sm-on-xl {
355
+ --pf-c-pagination--inset: var(--pf-global--spacer--sm);
356
+ }
357
+ .pf-c-pagination.pf-m-inset-md-on-xl {
358
+ --pf-c-pagination--inset: var(--pf-global--spacer--md);
359
+ }
360
+ .pf-c-pagination.pf-m-inset-lg-on-xl {
361
+ --pf-c-pagination--inset: var(--pf-global--spacer--lg);
362
+ }
363
+ .pf-c-pagination.pf-m-inset-xl-on-xl {
364
+ --pf-c-pagination--inset: var(--pf-global--spacer--xl);
365
+ }
366
+ .pf-c-pagination.pf-m-inset-2xl-on-xl {
367
+ --pf-c-pagination--inset: var(--pf-global--spacer--2xl);
368
+ }
267
369
  }
268
370
  @media (min-width: 1450px) {
269
371
  .pf-c-pagination.pf-m-display-summary-on-2xl {
@@ -276,6 +378,24 @@
276
378
  --pf-c-pagination--c-options-menu--Display: var(--pf-c-pagination--m-display-full--c-options-menu--Display);
277
379
  --pf-c-pagination__total-items--Display: var(--pf-c-pagination--m-display-full__total-items--Display);
278
380
  }
381
+ .pf-c-pagination.pf-m-inset-none-on-2xl {
382
+ --pf-c-pagination--inset: 0;
383
+ }
384
+ .pf-c-pagination.pf-m-inset-sm-on-2xl {
385
+ --pf-c-pagination--inset: var(--pf-global--spacer--sm);
386
+ }
387
+ .pf-c-pagination.pf-m-inset-md-on-2xl {
388
+ --pf-c-pagination--inset: var(--pf-global--spacer--md);
389
+ }
390
+ .pf-c-pagination.pf-m-inset-lg-on-2xl {
391
+ --pf-c-pagination--inset: var(--pf-global--spacer--lg);
392
+ }
393
+ .pf-c-pagination.pf-m-inset-xl-on-2xl {
394
+ --pf-c-pagination--inset: var(--pf-global--spacer--xl);
395
+ }
396
+ .pf-c-pagination.pf-m-inset-2xl-on-2xl {
397
+ --pf-c-pagination--inset: var(--pf-global--spacer--2xl);
398
+ }
279
399
  }
280
400
 
281
401
  :where(.pf-theme-dark) .pf-c-pagination {
@@ -1,6 +1,15 @@
1
1
  $pf-c-pagination--breakpoint-map: build-breakpoint-map();
2
+ $pf-c-pagination--variable-map: build-spacer-map("none", "sm", "md", "lg", "xl", "2xl");
2
3
 
3
4
  .pf-c-pagination {
5
+ --pf-c-pagination--inset: 0;
6
+ --pf-c-pagination--PaddingRight: var(--pf-c-pagination--inset);
7
+ --pf-c-pagination--PaddingLeft: var(--pf-c-pagination--inset);
8
+
9
+ // Page insets
10
+ --pf-c-pagination--m-page-insets--inset: var(--pf-global--spacer--md);
11
+ --pf-c-pagination--m-page-insets--xl--inset: var(--pf-global--spacer--lg);
12
+
4
13
  // children
5
14
  --pf-c-pagination--child--MarginRight: var(--pf-global--spacer--lg);
6
15
  --pf-c-pagination--m-bottom--child--MarginRight: 0;
@@ -86,12 +95,16 @@ $pf-c-pagination--breakpoint-map: build-breakpoint-map();
86
95
  @media screen and (min-width: $pf-global--breakpoint--xl) {
87
96
  --pf-c-pagination--m-bottom--md--PaddingRight: var(--pf-c-pagination--m-bottom--xl--PaddingRight);
88
97
  --pf-c-pagination--m-bottom--md--PaddingLeft: var(--pf-c-pagination--m-bottom--xl--PaddingLeft);
98
+ --pf-c-pagination__scroll-button--Width: var(--pf-c-pagination__scroll-button--xl--Width);
99
+ --pf-c-pagination--m-page-insets--inset: var(--pf-c-pagination--m-page-insets--xl--inset);
89
100
  }
90
101
 
91
102
  display: flex;
92
103
  flex-wrap: wrap;
93
104
  align-items: center;
94
105
  justify-content: flex-end;
106
+ padding-right: var(--pf-c-pagination--PaddingRight);
107
+ padding-left: var(--pf-c-pagination--PaddingLeft);
95
108
 
96
109
  // stylelint-disable selector-not-notation
97
110
  // update to single :not() in breaking change
@@ -194,7 +207,6 @@ $pf-c-pagination--breakpoint-map: build-breakpoint-map();
194
207
  }
195
208
  }
196
209
 
197
-
198
210
  .pf-c-options-menu__toggle {
199
211
  font-size: var(--pf-c-pagination--c-options-menu__toggle--FontSize);
200
212
  }
@@ -202,8 +214,13 @@ $pf-c-pagination--breakpoint-map: build-breakpoint-map();
202
214
  &.pf-m-compact {
203
215
  --pf-c-pagination--child--MarginRight: var(--pf-c-pagination--m-compact--child--MarginRight);
204
216
  }
217
+
218
+ &.pf-m-page-insets {
219
+ --pf-c-pagination--inset: var(--pf-c-pagination--m-page-insets--inset);
220
+ }
205
221
  }
206
222
 
223
+
207
224
  // nav
208
225
  .pf-c-pagination__nav {
209
226
  display: var(--pf-c-pagination__nav--Display);
@@ -268,6 +285,12 @@ $pf-c-pagination--breakpoint-map: build-breakpoint-map();
268
285
  --pf-c-pagination--c-options-menu--Display: var(--pf-c-pagination--m-display-full--c-options-menu--Display);
269
286
  --pf-c-pagination__total-items--Display: var(--pf-c-pagination--m-display-full__total-items--Display);
270
287
  }
288
+
289
+ @each $spacer, $spacer-value in $pf-c-pagination--variable-map {
290
+ &.pf-m-inset-#{$spacer}#{$breakpoint-name} {
291
+ --pf-c-pagination--inset: #{$spacer-value};
292
+ }
293
+ }
271
294
  }
272
295
  }
273
296
  }
@@ -172,14 +172,9 @@
172
172
  }
173
173
 
174
174
  :where(.pf-theme-dark) .pf-c-popover {
175
- --pf-c-popover--BoxShadow: none;
176
- --pf-c-popover__arrow--BoxShadow: none;
177
- --pf-c-popover__arrow--BackgroundColor: var(--pf-c-popover__content--BackgroundColor);
175
+ --pf-c-popover__content--BackgroundColor: var(--pf-global--BackgroundColor--300);
176
+ --pf-c-popover__arrow--BackgroundColor: var(--pf-global--BackgroundColor--300);
178
177
  --pf-c-popover--m-default__title-text--Color: var(--pf-global--default-color--200);
179
178
  --pf-c-popover--m-info__title-text--Color: var(--pf-global--info-color--100);
180
179
  --pf-c-popover--m-success__title-text--Color: var(--pf-global--success-color--100);
181
- }
182
- :where(.pf-theme-dark) .pf-c-popover,
183
- :where(.pf-theme-dark) .pf-c-popover .pf-c-popover__arrow {
184
- border: 4px solid var(--pf-global--BorderColor--400);
185
180
  }
@@ -2,16 +2,10 @@
2
2
 
3
3
  @mixin pf-theme-dark-popover() {
4
4
  .pf-c-popover {
5
- --pf-c-popover--BoxShadow: none;
6
- --pf-c-popover__arrow--BoxShadow: none;
7
- --pf-c-popover__arrow--BackgroundColor: var(--pf-c-popover__content--BackgroundColor);
5
+ --pf-c-popover__content--BackgroundColor: var(--pf-global--BackgroundColor--300);
6
+ --pf-c-popover__arrow--BackgroundColor: var(--pf-global--BackgroundColor--300);
8
7
  --pf-c-popover--m-default__title-text--Color: var(--pf-global--default-color--200);
9
8
  --pf-c-popover--m-info__title-text--Color: var(--pf-global--info-color--100);
10
9
  --pf-c-popover--m-success__title-text--Color: var(--pf-global--success-color--100);
11
-
12
- &,
13
- .pf-c-popover__arrow {
14
- border: 4px solid var(--pf-global--BorderColor--400);
15
- }
16
10
  }
17
11
  }
@@ -4,8 +4,8 @@
4
4
  --pf-c-progress__bar--Height: var(--pf-global--spacer--md);
5
5
  --pf-c-progress__bar--BackgroundColor: var(--pf-global--BackgroundColor--light-100);
6
6
  --pf-c-progress__measure--m-static-width--MinWidth: 4.5ch;
7
+ --pf-c-progress__status--Gap: var(--pf-global--spacer--sm);
7
8
  --pf-c-progress__status-icon--Color: var(--pf-global--Color--100);
8
- --pf-c-progress__status-icon--MarginLeft: var(--pf-global--spacer--sm);
9
9
  --pf-c-progress__bar--before--Opacity: .2;
10
10
  --pf-c-progress__indicator--Height: var(--pf-c-progress__bar--Height);
11
11
  --pf-c-progress__indicator--BackgroundColor: var(--pf-c-progress__bar--before--BackgroundColor);
@@ -118,14 +118,17 @@
118
118
  }
119
119
 
120
120
  .pf-c-progress__status {
121
+ display: flex;
122
+ align-items: flex-start;
123
+ justify-content: flex-end;
121
124
  grid-column: 2/3;
122
125
  grid-row: 1/2;
123
126
  text-align: right;
124
127
  word-break: break-word;
128
+ gap: var(--pf-c-progress__status--Gap);
125
129
  }
126
130
 
127
131
  .pf-c-progress__status-icon {
128
- margin-left: var(--pf-c-progress__status-icon--MarginLeft);
129
132
  color: var(--pf-c-progress__status-icon--Color);
130
133
  }
131
134
 
@@ -7,8 +7,8 @@
7
7
  --pf-c-progress__bar--Height: var(--pf-global--spacer--md);
8
8
  --pf-c-progress__bar--BackgroundColor: var(--pf-global--BackgroundColor--light-100); // the bar always needs white under it so that the semi-transparent color shows correctly
9
9
  --pf-c-progress__measure--m-static-width--MinWidth: 4.5ch; // 4.5 because the % character is wider than a 0
10
+ --pf-c-progress__status--Gap: var(--pf-global--spacer--sm);
10
11
  --pf-c-progress__status-icon--Color: var(--pf-global--Color--100); // the status icon default color is the default text color
11
- --pf-c-progress__status-icon--MarginLeft: var(--pf-global--spacer--sm);
12
12
  --pf-c-progress__bar--before--Opacity: .2; // one-off change in opacity to allow progress bar to automatically coordinate with the indicator color
13
13
  --pf-c-progress__indicator--Height: var(--pf-c-progress__bar--Height);
14
14
  --pf-c-progress__indicator--BackgroundColor: var(--pf-c-progress__bar--before--BackgroundColor);
@@ -158,15 +158,18 @@
158
158
 
159
159
  // the progress__status is displayed in the upper right
160
160
  .pf-c-progress__status {
161
+ display: flex;
162
+ align-items: flex-start;
163
+ justify-content: flex-end;
161
164
  grid-column: 2 / 3;
162
165
  grid-row: 1 / 2;
163
166
  text-align: right;
164
167
  word-break: break-word;
168
+ gap: var(--pf-c-progress__status--Gap);
165
169
  }
166
170
 
167
171
  // the progress__status-icon is an icon displayed always in the upper right
168
172
  .pf-c-progress__status-icon {
169
- margin-left: var(--pf-c-progress__status-icon--MarginLeft);
170
173
  color: var(--pf-c-progress__status-icon--Color);
171
174
  }
172
175
 
@@ -12,6 +12,7 @@
12
12
  --pf-c-search-input__text-input--PaddingLeft: var(--pf-global--spacer--xl);
13
13
  --pf-c-search-input__text-input--MinWidth: 6ch;
14
14
  --pf-c-search-input__text-input--m-hint--Color: var(--pf-global--Color--dark-200);
15
+ --pf-c-search-input__text-input--BackgroundColor: transparent;
15
16
  --pf-c-search-input__icon--Left: var(--pf-global--spacer--sm);
16
17
  --pf-c-search-input__icon--Color: var(--pf-global--Color--200);
17
18
  --pf-c-search-input__text--hover__icon--Color: var(--pf-global--Color--100);
@@ -99,6 +100,7 @@
99
100
  width: 100%;
100
101
  min-width: var(--pf-c-search-input__text-input--MinWidth);
101
102
  padding: var(--pf-c-search-input__text-input--PaddingTop) var(--pf-c-search-input__text-input--PaddingRight) var(--pf-c-search-input__text-input--PaddingBottom) var(--pf-c-search-input__text-input--PaddingLeft);
103
+ background-color: var(--pf-c-search-input__text-input--BackgroundColor);
102
104
  border: 0;
103
105
  }
104
106
  .pf-c-search-input__text-input, .pf-c-search-input__text-input.pf-m-hint {
@@ -17,6 +17,7 @@
17
17
  --pf-c-search-input__text-input--PaddingLeft: var(--pf-global--spacer--xl);
18
18
  --pf-c-search-input__text-input--MinWidth: 6ch;
19
19
  --pf-c-search-input__text-input--m-hint--Color: var(--pf-global--Color--dark-200); // matches placeholder text color
20
+ --pf-c-search-input__text-input--BackgroundColor: transparent;
20
21
 
21
22
  // Icon
22
23
  --pf-c-search-input__icon--Left: var(--pf-global--spacer--sm);
@@ -120,6 +121,7 @@
120
121
  width: 100%;
121
122
  min-width: var(--pf-c-search-input__text-input--MinWidth);
122
123
  padding: var(--pf-c-search-input__text-input--PaddingTop) var(--pf-c-search-input__text-input--PaddingRight) var(--pf-c-search-input__text-input--PaddingBottom) var(--pf-c-search-input__text-input--PaddingLeft);
124
+ background-color: var(--pf-c-search-input__text-input--BackgroundColor);
123
125
  border: 0;
124
126
 
125
127
  &,
@@ -182,13 +182,6 @@
182
182
  z-index: var(--pf-c-slider__value--m-floating--ZIndex);
183
183
  transform: translate(var(--pf-c-slider__value--m-floating--TranslateX), var(--pf-c-slider__value--m-floating--TranslateY));
184
184
  }
185
- .pf-c-slider__value.pf-m-floating .pf-c-input-group {
186
- align-items: center;
187
- }
188
- .pf-c-slider__value.pf-m-floating .pf-c-input-group__text {
189
- position: absolute;
190
- left: 100%;
191
- }
192
185
  .pf-c-slider__value .pf-c-form-control {
193
186
  width: var(--pf-c-slider__value--c-form-control--Width);
194
187
  }
@@ -218,15 +218,6 @@
218
218
  left: var(--pf-c-slider__value--m-floating--Left);
219
219
  z-index: var(--pf-c-slider__value--m-floating--ZIndex);
220
220
  transform: translate(var(--pf-c-slider__value--m-floating--TranslateX), var(--pf-c-slider__value--m-floating--TranslateY));
221
-
222
- .pf-c-input-group {
223
- align-items: center;
224
- }
225
-
226
- .pf-c-input-group__text {
227
- position: absolute;
228
- left: 100%;
229
- }
230
221
  }
231
222
 
232
223
  .pf-c-form-control {
@@ -418,7 +418,7 @@
418
418
  border-bottom: var(--pf-c-table-tr--responsive--border-width--base) solid var(--pf-c-table--responsive--BorderColor);
419
419
  }
420
420
  .pf-m-grid-md.pf-c-table tr:last-child,
421
- .pf-m-grid-md.pf-c-table tbody:last-of-type:not(:only-of-type) > tr {
421
+ .pf-m-grid-md.pf-c-table tbody:last-of-type:not(:only-of-type) > tr {
422
422
  border-bottom-width: var(--pf-c-table-tr--responsive--last-child--BorderBottomWidth);
423
423
  }
424
424
  .pf-m-grid-md.pf-c-table tbody.pf-m-expanded {
@@ -563,7 +563,7 @@
563
563
  --pf-c-table--tbody--after--BorderLeftColor: transparent;
564
564
  }
565
565
  .pf-m-grid-md.pf-c-table tbody.pf-m-hoverable,
566
- .pf-m-grid-md.pf-c-table tbody.pf-m-hoverable > tr {
566
+ .pf-m-grid-md.pf-c-table tbody.pf-m-hoverable > tr {
567
567
  position: relative;
568
568
  }
569
569
  .pf-m-grid-md.pf-c-table tbody.pf-m-hoverable > tr::after {
@@ -593,9 +593,9 @@
593
593
  background-color: var(--pf-c-table--tr--m-selected--after--BorderLeftColor);
594
594
  }
595
595
  .pf-m-grid-md.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__toggle,
596
- .pf-m-grid-md.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__check,
597
- .pf-m-grid-md.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__favorite,
598
- .pf-m-grid-md.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__action {
596
+ .pf-m-grid-md.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__check,
597
+ .pf-m-grid-md.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__favorite,
598
+ .pf-m-grid-md.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__action {
599
599
  width: auto;
600
600
  padding: 0;
601
601
  }
@@ -615,8 +615,8 @@
615
615
  --pf-c-table--cell--PaddingLeft: var(--pf-c-table--m-grid--cell--PaddingLeft);
616
616
  }
617
617
  .pf-m-grid-md.pf-c-table .pf-c-table__check,
618
- .pf-m-grid-md.pf-c-table .pf-c-table__favorite,
619
- .pf-m-grid-md.pf-c-table .pf-c-table__action {
618
+ .pf-m-grid-md.pf-c-table .pf-c-table__favorite,
619
+ .pf-m-grid-md.pf-c-table .pf-c-table__action {
620
620
  grid-row-start: 1;
621
621
  grid-column-start: 2;
622
622
  }
@@ -733,7 +733,7 @@
733
733
  border-bottom: var(--pf-c-table-tr--responsive--border-width--base) solid var(--pf-c-table--responsive--BorderColor);
734
734
  }
735
735
  .pf-m-grid-lg.pf-c-table tr:last-child,
736
- .pf-m-grid-lg.pf-c-table tbody:last-of-type:not(:only-of-type) > tr {
736
+ .pf-m-grid-lg.pf-c-table tbody:last-of-type:not(:only-of-type) > tr {
737
737
  border-bottom-width: var(--pf-c-table-tr--responsive--last-child--BorderBottomWidth);
738
738
  }
739
739
  .pf-m-grid-lg.pf-c-table tbody.pf-m-expanded {
@@ -878,7 +878,7 @@
878
878
  --pf-c-table--tbody--after--BorderLeftColor: transparent;
879
879
  }
880
880
  .pf-m-grid-lg.pf-c-table tbody.pf-m-hoverable,
881
- .pf-m-grid-lg.pf-c-table tbody.pf-m-hoverable > tr {
881
+ .pf-m-grid-lg.pf-c-table tbody.pf-m-hoverable > tr {
882
882
  position: relative;
883
883
  }
884
884
  .pf-m-grid-lg.pf-c-table tbody.pf-m-hoverable > tr::after {
@@ -908,9 +908,9 @@
908
908
  background-color: var(--pf-c-table--tr--m-selected--after--BorderLeftColor);
909
909
  }
910
910
  .pf-m-grid-lg.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__toggle,
911
- .pf-m-grid-lg.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__check,
912
- .pf-m-grid-lg.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__favorite,
913
- .pf-m-grid-lg.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__action {
911
+ .pf-m-grid-lg.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__check,
912
+ .pf-m-grid-lg.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__favorite,
913
+ .pf-m-grid-lg.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__action {
914
914
  width: auto;
915
915
  padding: 0;
916
916
  }
@@ -930,8 +930,8 @@
930
930
  --pf-c-table--cell--PaddingLeft: var(--pf-c-table--m-grid--cell--PaddingLeft);
931
931
  }
932
932
  .pf-m-grid-lg.pf-c-table .pf-c-table__check,
933
- .pf-m-grid-lg.pf-c-table .pf-c-table__favorite,
934
- .pf-m-grid-lg.pf-c-table .pf-c-table__action {
933
+ .pf-m-grid-lg.pf-c-table .pf-c-table__favorite,
934
+ .pf-m-grid-lg.pf-c-table .pf-c-table__action {
935
935
  grid-row-start: 1;
936
936
  grid-column-start: 2;
937
937
  }
@@ -1048,7 +1048,7 @@
1048
1048
  border-bottom: var(--pf-c-table-tr--responsive--border-width--base) solid var(--pf-c-table--responsive--BorderColor);
1049
1049
  }
1050
1050
  .pf-m-grid-xl.pf-c-table tr:last-child,
1051
- .pf-m-grid-xl.pf-c-table tbody:last-of-type:not(:only-of-type) > tr {
1051
+ .pf-m-grid-xl.pf-c-table tbody:last-of-type:not(:only-of-type) > tr {
1052
1052
  border-bottom-width: var(--pf-c-table-tr--responsive--last-child--BorderBottomWidth);
1053
1053
  }
1054
1054
  .pf-m-grid-xl.pf-c-table tbody.pf-m-expanded {
@@ -1193,7 +1193,7 @@
1193
1193
  --pf-c-table--tbody--after--BorderLeftColor: transparent;
1194
1194
  }
1195
1195
  .pf-m-grid-xl.pf-c-table tbody.pf-m-hoverable,
1196
- .pf-m-grid-xl.pf-c-table tbody.pf-m-hoverable > tr {
1196
+ .pf-m-grid-xl.pf-c-table tbody.pf-m-hoverable > tr {
1197
1197
  position: relative;
1198
1198
  }
1199
1199
  .pf-m-grid-xl.pf-c-table tbody.pf-m-hoverable > tr::after {
@@ -1223,9 +1223,9 @@
1223
1223
  background-color: var(--pf-c-table--tr--m-selected--after--BorderLeftColor);
1224
1224
  }
1225
1225
  .pf-m-grid-xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__toggle,
1226
- .pf-m-grid-xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__check,
1227
- .pf-m-grid-xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__favorite,
1228
- .pf-m-grid-xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__action {
1226
+ .pf-m-grid-xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__check,
1227
+ .pf-m-grid-xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__favorite,
1228
+ .pf-m-grid-xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__action {
1229
1229
  width: auto;
1230
1230
  padding: 0;
1231
1231
  }
@@ -1245,8 +1245,8 @@
1245
1245
  --pf-c-table--cell--PaddingLeft: var(--pf-c-table--m-grid--cell--PaddingLeft);
1246
1246
  }
1247
1247
  .pf-m-grid-xl.pf-c-table .pf-c-table__check,
1248
- .pf-m-grid-xl.pf-c-table .pf-c-table__favorite,
1249
- .pf-m-grid-xl.pf-c-table .pf-c-table__action {
1248
+ .pf-m-grid-xl.pf-c-table .pf-c-table__favorite,
1249
+ .pf-m-grid-xl.pf-c-table .pf-c-table__action {
1250
1250
  grid-row-start: 1;
1251
1251
  grid-column-start: 2;
1252
1252
  }
@@ -1363,7 +1363,7 @@
1363
1363
  border-bottom: var(--pf-c-table-tr--responsive--border-width--base) solid var(--pf-c-table--responsive--BorderColor);
1364
1364
  }
1365
1365
  .pf-m-grid-2xl.pf-c-table tr:last-child,
1366
- .pf-m-grid-2xl.pf-c-table tbody:last-of-type:not(:only-of-type) > tr {
1366
+ .pf-m-grid-2xl.pf-c-table tbody:last-of-type:not(:only-of-type) > tr {
1367
1367
  border-bottom-width: var(--pf-c-table-tr--responsive--last-child--BorderBottomWidth);
1368
1368
  }
1369
1369
  .pf-m-grid-2xl.pf-c-table tbody.pf-m-expanded {
@@ -1508,7 +1508,7 @@
1508
1508
  --pf-c-table--tbody--after--BorderLeftColor: transparent;
1509
1509
  }
1510
1510
  .pf-m-grid-2xl.pf-c-table tbody.pf-m-hoverable,
1511
- .pf-m-grid-2xl.pf-c-table tbody.pf-m-hoverable > tr {
1511
+ .pf-m-grid-2xl.pf-c-table tbody.pf-m-hoverable > tr {
1512
1512
  position: relative;
1513
1513
  }
1514
1514
  .pf-m-grid-2xl.pf-c-table tbody.pf-m-hoverable > tr::after {
@@ -1538,9 +1538,9 @@
1538
1538
  background-color: var(--pf-c-table--tr--m-selected--after--BorderLeftColor);
1539
1539
  }
1540
1540
  .pf-m-grid-2xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__toggle,
1541
- .pf-m-grid-2xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__check,
1542
- .pf-m-grid-2xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__favorite,
1543
- .pf-m-grid-2xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__action {
1541
+ .pf-m-grid-2xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__check,
1542
+ .pf-m-grid-2xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__favorite,
1543
+ .pf-m-grid-2xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__action {
1544
1544
  width: auto;
1545
1545
  padding: 0;
1546
1546
  }
@@ -1560,8 +1560,8 @@
1560
1560
  --pf-c-table--cell--PaddingLeft: var(--pf-c-table--m-grid--cell--PaddingLeft);
1561
1561
  }
1562
1562
  .pf-m-grid-2xl.pf-c-table .pf-c-table__check,
1563
- .pf-m-grid-2xl.pf-c-table .pf-c-table__favorite,
1564
- .pf-m-grid-2xl.pf-c-table .pf-c-table__action {
1563
+ .pf-m-grid-2xl.pf-c-table .pf-c-table__favorite,
1564
+ .pf-m-grid-2xl.pf-c-table .pf-c-table__action {
1565
1565
  grid-row-start: 1;
1566
1566
  grid-column-start: 2;
1567
1567
  }
@@ -311,7 +311,7 @@
311
311
  display: block;
312
312
  }
313
313
  .pf-m-tree-view-grid-md.pf-c-table .pf-c-table__tree-view-details-toggle,
314
- .pf-m-tree-view-grid-md.pf-c-table .pf-c-table__action {
314
+ .pf-m-tree-view-grid-md.pf-c-table .pf-c-table__action {
315
315
  display: inline-block;
316
316
  }
317
317
  .pf-m-tree-view-grid-md.pf-c-table .pf-c-table__action {
@@ -452,7 +452,7 @@
452
452
  display: block;
453
453
  }
454
454
  .pf-m-tree-view-grid-lg.pf-c-table .pf-c-table__tree-view-details-toggle,
455
- .pf-m-tree-view-grid-lg.pf-c-table .pf-c-table__action {
455
+ .pf-m-tree-view-grid-lg.pf-c-table .pf-c-table__action {
456
456
  display: inline-block;
457
457
  }
458
458
  .pf-m-tree-view-grid-lg.pf-c-table .pf-c-table__action {
@@ -593,7 +593,7 @@
593
593
  display: block;
594
594
  }
595
595
  .pf-m-tree-view-grid-xl.pf-c-table .pf-c-table__tree-view-details-toggle,
596
- .pf-m-tree-view-grid-xl.pf-c-table .pf-c-table__action {
596
+ .pf-m-tree-view-grid-xl.pf-c-table .pf-c-table__action {
597
597
  display: inline-block;
598
598
  }
599
599
  .pf-m-tree-view-grid-xl.pf-c-table .pf-c-table__action {
@@ -734,7 +734,7 @@
734
734
  display: block;
735
735
  }
736
736
  .pf-m-tree-view-grid-2xl.pf-c-table .pf-c-table__tree-view-details-toggle,
737
- .pf-m-tree-view-grid-2xl.pf-c-table .pf-c-table__action {
737
+ .pf-m-tree-view-grid-2xl.pf-c-table .pf-c-table__action {
738
738
  display: inline-block;
739
739
  }
740
740
  .pf-m-tree-view-grid-2xl.pf-c-table .pf-c-table__action {
@@ -768,6 +768,10 @@
768
768
  vertical-align: middle;
769
769
  }
770
770
 
771
+ .pf-c-table__action {
772
+ text-align: right;
773
+ }
774
+
771
775
  .pf-c-table__inline-edit-action {
772
776
  --pf-c-table--cell--PaddingLeft: 0;
773
777
  --pf-c-table--cell--PaddingRight: 0;
@@ -1010,6 +1010,10 @@
1010
1010
  vertical-align: middle;
1011
1011
  }
1012
1012
 
1013
+ .pf-c-table__action {
1014
+ text-align: right;
1015
+ }
1016
+
1013
1017
  // Inline edit
1014
1018
  .pf-c-table__inline-edit-action {
1015
1019
  --pf-c-table--cell--PaddingLeft: 0;
@@ -115,7 +115,6 @@
115
115
  --pf-c-tabs__item-action--last-child--c-button--PaddingRight: var(--pf-global--spacer--md);
116
116
  --pf-c-tabs__item-action--c-button--OutlineOffset: -0.1875rem;
117
117
  --pf-c-tabs__item-action-icon--MarginTop: 0.125rem;
118
- --pf-c-tabs__item-action--m-help--c-button--PaddingLeft: var(--pf-global--spacer--xs);
119
118
  --pf-c-tabs__add--before--BorderColor: var(--pf-c-tabs__link--before--border-color--base);
120
119
  --pf-c-tabs__add--before--BorderLeftWidth: var(--pf-c-tabs__link--before--border-width--base);
121
120
  --pf-c-tabs__add--c-button--FontSize: var(--pf-global--FontSize--sm);
@@ -589,9 +588,6 @@
589
588
  --pf-c-button--PaddingLeft: var(--pf-c-tabs__item-action--c-button--PaddingLeft);
590
589
  outline-offset: var(--pf-c-tabs__item-action--c-button--OutlineOffset);
591
590
  }
592
- .pf-c-tabs__item-action.pf-m-help {
593
- --pf-c-tabs__item-action--c-button--PaddingLeft: var(--pf-c-tabs__item-action--m-help--c-button--PaddingLeft);
594
- }
595
591
  .pf-c-tabs__item-action:last-child {
596
592
  --pf-c-tabs__item-action--c-button--PaddingRight: var(--pf-c-tabs__item-action--last-child--c-button--PaddingRight);
597
593
  }