@patternfly/patternfly 4.219.0 → 4.219.2

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 (46) hide show
  1. package/RELEASE-NOTES.md +18 -0
  2. package/components/AppLauncher/app-launcher.css +10 -0
  3. package/components/AppLauncher/app-launcher.scss +12 -0
  4. package/components/ContextSelector/context-selector.css +3 -0
  5. package/components/ContextSelector/context-selector.scss +3 -0
  6. package/components/DatePicker/date-picker.css +10 -0
  7. package/components/DatePicker/date-picker.scss +12 -0
  8. package/components/Dropdown/dropdown.css +4 -0
  9. package/components/Dropdown/dropdown.scss +5 -0
  10. package/components/OptionsMenu/options-menu.css +10 -0
  11. package/components/OptionsMenu/options-menu.scss +12 -0
  12. package/components/SearchInput/search-input.css +10 -0
  13. package/components/SearchInput/search-input.scss +12 -0
  14. package/components/Select/select.css +4 -0
  15. package/components/Select/select.scss +5 -0
  16. package/docs/components/Accordion/examples/Accordion.md +0 -9
  17. package/docs/components/Alert/examples/Alert.md +0 -18
  18. package/docs/components/AppLauncher/examples/application-launcher.md +1 -0
  19. package/docs/components/CalendarMonth/examples/CalendarMonth.md +0 -1
  20. package/docs/components/Card/examples/Card.md +0 -6
  21. package/docs/components/CodeEditor/examples/CodeEditor.md +0 -1
  22. package/docs/components/DatePicker/examples/DatePicker.md +1 -0
  23. package/docs/components/Dropdown/examples/Dropdown.md +1 -1
  24. package/docs/components/DualListSelector/examples/DualListSelector.md +0 -1
  25. package/docs/components/FormControl/examples/FormControl.md +1 -1
  26. package/docs/components/LabelGroup/examples/LabelGroup.md +3 -4
  27. package/docs/components/Masthead/examples/masthead.md +0 -1
  28. package/docs/components/MenuToggle/examples/MenuToggle.md +0 -1
  29. package/docs/components/MultipleFileUpload/examples/MultipleFileUpload.md +0 -1
  30. package/docs/components/NotificationDrawer/examples/NotificationDrawer.md +0 -1
  31. package/docs/components/OptionsMenu/examples/options-menu.md +1 -0
  32. package/docs/components/Page/examples/Page.css +11 -0
  33. package/docs/components/Page/examples/Page.md +72 -39
  34. package/docs/components/Panel/examples/Panel.md +0 -1
  35. package/docs/components/SearchInput/examples/SearchInput.md +2 -0
  36. package/docs/components/Select/examples/Select.md +15 -14
  37. package/docs/components/Slider/examples/Slider.md +0 -1
  38. package/docs/components/Tabs/examples/Tabs.md +0 -25
  39. package/docs/components/Tooltip/examples/Tooltip.md +0 -7
  40. package/docs/components/TreeView/examples/TreeView.md +0 -1
  41. package/docs/demos/Masthead/examples/Masthead.md +0 -1
  42. package/package.json +5 -5
  43. package/patternfly-no-reset.css +51 -0
  44. package/patternfly.css +51 -0
  45. package/patternfly.min.css +1 -1
  46. package/patternfly.min.css.map +1 -1
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  id: 'Panel'
3
- beta: true
4
3
  section: components
5
4
  cssPrefix: pf-c-panel
6
5
  ---## Examples
@@ -615,4 +615,6 @@ cssPrefix: pf-c-search-input
615
615
  | `.pf-c-search-input__menu-list-item` | `<div>` | Initiates the search input dropdown menu list item. |
616
616
  | `.pf-c-search-input__menu-item` | `<div>` | Initiates the search input dropdown menu item. |
617
617
  | `.pf-c-search-input__menu-item-text` | `<span>` | Initiates the search input dropdown menu item text. |
618
+ | `.pf-m-top` | `.pf-c-search-input__menu` | Modifies the menu to display above the toggle. |
619
+ | `.pf-m-static` | `.pf-c-search-input__menu` | Modifies the menu to be statically positioned to support custom positioning. |
618
620
  | `.pf-m-hint` | `.pf-c-search-input__text-input` | Modifies the text input for hint text styles. |
@@ -235,18 +235,19 @@ The single select should be used when the user is selecting an option from a lis
235
235
 
236
236
  ### Usage
237
237
 
238
- | Class | Applied to | Outcome |
239
- | ------------------------------ | -------------------- | ---------------------------------------------------------------- |
240
- | `.pf-c-select` | `<div>` | Initiates a custom select. |
241
- | `.pf-c-select__toggle` | `<button>` | Initiates a custom toggle. |
242
- | `.pf-c-select__toggle-wrapper` | `<div>` | Initiates a custom select toggle wrapper. |
243
- | `.pf-c-select__toggle-arrow` | `<span>` | Initiates the caret to toggle the dropdown. |
244
- | `.pf-c-select__menu` | `<ul>` | Initiates the custom select dropdown menu. |
245
- | `.pf-c-select__menu-item` | `<li>` | Initiates the items in the custom select dropdown menu. |
246
- | `.pf-c-select__menu-item-icon` | `<i>` | Initiates the selected item icon. |
247
- | `.pf-m-top` | `.pf-c-select` | Modifies the select menu to display above the toggle. |
248
- | `.pf-m-align-right` | `.pf-c-select__menu` | Modifies the select menu to display right aligned to the toggle. |
249
- | `.pf-m-active` | `.pf-c-select` | Forces display of the active state of the toggle. |
238
+ | Class | Applied to | Outcome |
239
+ | ------------------------------ | -------------------- | ----------------------------------------------------------------------------------- |
240
+ | `.pf-c-select` | `<div>` | Initiates a custom select. |
241
+ | `.pf-c-select__toggle` | `<button>` | Initiates a custom toggle. |
242
+ | `.pf-c-select__toggle-wrapper` | `<div>` | Initiates a custom select toggle wrapper. |
243
+ | `.pf-c-select__toggle-arrow` | `<span>` | Initiates the caret to toggle the dropdown. |
244
+ | `.pf-c-select__menu` | `<ul>` | Initiates the custom select dropdown menu. |
245
+ | `.pf-c-select__menu-item` | `<li>` | Initiates the items in the custom select dropdown menu. |
246
+ | `.pf-c-select__menu-item-icon` | `<i>` | Initiates the selected item icon. |
247
+ | `.pf-m-top` | `.pf-c-select` | Modifies the select menu to display above the toggle. |
248
+ | `.pf-m-align-right` | `.pf-c-select__menu` | Modifies the select menu to display right aligned to the toggle. |
249
+ | `.pf-m-static` | `.pf-c-select__menu` | Modifies the select menu to be statically positioned to support custom positioning. |
250
+ | `.pf-m-active` | `.pf-c-select` | Forces display of the active state of the toggle. |
250
251
 
251
252
  ## States
252
253
 
@@ -2932,7 +2933,7 @@ The plain select variation should be used when you do not want a border applied
2932
2933
 
2933
2934
  ### View more menu item
2934
2935
 
2935
- ```html isBeta
2936
+ ```html
2936
2937
  <div class="pf-c-select pf-m-expanded">
2937
2938
  <span id="select-single-view-more-label" hidden>Choose one</span>
2938
2939
 
@@ -2999,7 +3000,7 @@ The plain select variation should be used when you do not want a border applied
2999
3000
 
3000
3001
  ### Loading menu item
3001
3002
 
3002
- ```html isBeta
3003
+ ```html
3003
3004
  <div class="pf-c-select pf-m-expanded">
3004
3005
  <span id="select-single-loading-label" hidden>Choose one</span>
3005
3006
 
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  id: 'Slider'
3
- beta: true
4
3
  section: components
5
4
  cssPrefix: pf-c-slider
6
5
  ---## Examples
@@ -92,13 +92,6 @@ cssPrefix: pf-c-tabs
92
92
 
93
93
  ```
94
94
 
95
- ### Accessibility
96
-
97
- | Attribute | Applied to | Outcome |
98
- | ---------------------- | ------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ |
99
- | `disabled` | `button.pf-c-tabs__link` | Indicates that a tabs link is disabled. **Required when disabled** |
100
- | `aria-disabled="true"` | `a.pf-c-tabs__link.pf-m-disabled`, `.pf-c-tabs__link.pf-m-aria-disabled` | Indicates to assistive technology that a tabs link is disabled. **Required when disabled** |
101
-
102
95
  ### Usage
103
96
 
104
97
  | Class | Applied to | Outcome |
@@ -217,13 +210,6 @@ cssPrefix: pf-c-tabs
217
210
 
218
211
  ```
219
212
 
220
- ### Accessibility
221
-
222
- | Attribute | Applied to | Outcome |
223
- | -------------------- | --------------------------- | ---------------------------------------------------------------------------------------------------------------- |
224
- | `disabled` | `.pf-c-tabs__scroll-button` | Indicates that a scroll button is disabled, when at the first or last item of a list. **Required when disabled** |
225
- | `aria-hidden="true"` | `.pf-c-tabs__scroll-button` | Hides the icon from assistive technologies.**Required when not scrollable** |
226
-
227
213
  ### Usage
228
214
 
229
215
  | Class | Applied to | Outcome |
@@ -4386,17 +4372,6 @@ Tabs should be used with the [tab content component](/components/tab-content).
4386
4372
 
4387
4373
  Whenever a list of tabs is unique on the current page, it can be used in a `<nav>` element. Cases where the same set of tabs are duplicated in multiple regions on a page (e.g. cards on a dashboard) are less likely to benefit from using the `<nav>` element.
4388
4374
 
4389
- ### Accessibility
4390
-
4391
- | Attribute | Applied to | Outcome |
4392
- | ------------------------------- | ------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------- |
4393
- | `aria-label="Descriptive text"` | `nav.pf-c-tabs`, `nav.pf-c-tabs.pf-m-secondary` | Gives the `<nav>` an accessible label. **Required when `.pf-c-tabs` is used with `<nav>`** |
4394
- | `aria-label="Descriptive text"` | `.pf-c-inline-edit__toggle > button` | Provides an accessible description for toggle button. **Required** |
4395
- | `disabled` | `button.pf-c-tabs__link` | Indicates that a tabs link is disabled. **Required when disabled** |
4396
- | `aria-disabled="true"` | `a.pf-c-tabs__link.pf-m-disabled`, `.pf-c-tabs__link.pf-m-aria-disabled` | Indicates to assistive technology that a tabs link is disabled. **Required when disabled** |
4397
- | `disabled` | `.pf-c-tabs__scroll-button` | Indicates that a scroll button is disable, typically when at the first or last item of a list or scroll buttons are hidden. **Required** |
4398
- | `aria-expanded="true"` | `.pf-c-tabs__item` | Indicates that the overflow menu tab is expanded. **Required when expanded** |
4399
-
4400
4375
  ### Usage
4401
4376
 
4402
4377
  | Class | Applied to | Outcome |
@@ -126,13 +126,6 @@ cssPrefix: pf-c-tooltip
126
126
 
127
127
  A tooltip is used to provide contextual information for another component on hover. The tooltip itself is made up of two elements: arrow and content. One of the directional modifiers (`.pf-m-left`, `.pf-m-top`, etc.) is required on the tooltip component.
128
128
 
129
- ### Accessibility
130
-
131
- | Attribute | Applied to | Outcome |
132
- | --------------------------------------------------------------------------------------------------------- | ------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
133
- | `role="tooltip"` | `.pf-c-tooltip` | Adds a tooltip role to the tooltip component. **Required** |
134
- | `aria-describedby="[id of .pf-c-tooltip__content]"` or `aria-labelledby="[id of .pf-c-tooltip__content]"` | `[element that triggers the tooltip]` | Makes the contents of the tooltip accessible to assistive technologies by associating the tooltip text with the element that triggers the tooltip. Use `aria-labelledby` if the tooltip provides a label for the element. Use `aria-describedby` if the element already has an accessible label that is different from the tooltip text. **Required** |
135
-
136
129
  ### Usage
137
130
 
138
131
  | Class | Applied to | Outcome |
@@ -2,7 +2,6 @@
2
2
  id: Tree view
3
3
  section: components
4
4
  cssPrefix: pf-c-tree-view
5
- beta: true
6
5
  ---## Examples
7
6
 
8
7
  ### Default
@@ -1,6 +1,5 @@
1
1
  ---
2
2
  id: Masthead
3
- beta: true
4
3
  section: components
5
4
  wrapperTag: div
6
5
  ---## Examples
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@patternfly/patternfly",
3
3
  "description": "Assets, source, tooling, and content for PatternFly 4",
4
- "version": "4.219.0",
4
+ "version": "4.219.2",
5
5
  "keywords": [],
6
6
  "license": "MIT",
7
7
  "scripts": {
@@ -34,9 +34,9 @@
34
34
  "@fortawesome/fontawesome": "^1.1.8",
35
35
  "@octokit/rest": "^16.40.1",
36
36
  "@patternfly/patternfly-a11y": "4.3.1",
37
- "@patternfly/react-code-editor": "4.80.0",
38
- "@patternfly/react-core": "4.239.0",
39
- "@patternfly/react-table": "4.108.0",
37
+ "@patternfly/react-code-editor": "4.82.26",
38
+ "@patternfly/react-core": "4.250.1",
39
+ "@patternfly/react-table": "4.111.4",
40
40
  "@starptech/prettyhtml": "^0.10.0",
41
41
  "babel-eslint": "^8.2.3",
42
42
  "cheerio": "^1.0.0-rc.3",
@@ -79,7 +79,7 @@
79
79
  "stylelint-scss": "^4.3.0",
80
80
  "stylelint-value-no-unknown-custom-properties": "^4.0.0",
81
81
  "surge": "^0.21.3",
82
- "@patternfly/documentation-framework": "1.2.33",
82
+ "@patternfly/documentation-framework": "1.2.51",
83
83
  "unified": "^9.2.0",
84
84
  "webpack": "^4.43.0"
85
85
  },
@@ -6469,6 +6469,16 @@ html {
6469
6469
  --pf-c-app-launcher__menu--Top: var(--pf-c-app-launcher--m-top__menu--Top);
6470
6470
  transform: translateY(var(--pf-c-app-launcher--m-top__menu--TranslateY));
6471
6471
  }
6472
+ .pf-c-app-launcher__menu.pf-m-static {
6473
+ --pf-c-app-launcher--m-top__menu--TranslateY: 0;
6474
+ position: static;
6475
+ top: auto;
6476
+ right: auto;
6477
+ bottom: auto;
6478
+ left: auto;
6479
+ z-index: auto;
6480
+ min-width: min-content;
6481
+ }
6472
6482
 
6473
6483
  .pf-c-app-launcher__menu-search {
6474
6484
  padding: var(--pf-c-app-launcher__menu-search--PaddingTop) var(--pf-c-app-launcher__menu-search--PaddingRight) var(--pf-c-app-launcher__menu-search--PaddingBottom) var(--pf-c-app-launcher__menu-search--PaddingLeft);
@@ -9696,6 +9706,9 @@ label.pf-c-check, .pf-c-check__label,
9696
9706
  .pf-c-context-selector__menu.pf-m-static {
9697
9707
  position: static;
9698
9708
  top: auto;
9709
+ right: auto;
9710
+ bottom: auto;
9711
+ left: auto;
9699
9712
  z-index: auto;
9700
9713
  min-width: min-content;
9701
9714
  }
@@ -12507,6 +12520,16 @@ label.pf-c-check, .pf-c-check__label,
12507
12520
  --pf-c-date-picker__calendar--Top: var(--pf-c-date-picker--m-top__calendar--Top);
12508
12521
  transform: translateY(var(--pf-c-date-picker--m-top__calendar--TranslateY));
12509
12522
  }
12523
+ .pf-c-date-picker__calendar.pf-m-static {
12524
+ --pf-c-date-picker--m-top__calendar--TranslateY: 0;
12525
+ position: static;
12526
+ top: auto;
12527
+ right: auto;
12528
+ bottom: auto;
12529
+ left: auto;
12530
+ z-index: auto;
12531
+ min-width: min-content;
12532
+ }
12510
12533
 
12511
12534
  :where(.pf-theme-dark) .pf-c-wizard__header, :where(.pf-theme-dark) .pf-c-page__sidebar-body.pf-m-menu .pf-c-context-selector,
12512
12535
  :where(.pf-theme-dark) .pf-c-page__main-section[class*=pf-m-dark-],
@@ -14194,8 +14217,12 @@ label.pf-c-check, .pf-c-check__label,
14194
14217
  box-shadow: var(--pf-c-dropdown__menu--BoxShadow);
14195
14218
  }
14196
14219
  .pf-c-dropdown__menu.pf-m-static {
14220
+ --pf-c-dropdown--m-top__menu--TranslateY: 0;
14197
14221
  position: static;
14198
14222
  top: auto;
14223
+ right: auto;
14224
+ bottom: auto;
14225
+ left: auto;
14199
14226
  z-index: auto;
14200
14227
  min-width: min-content;
14201
14228
  }
@@ -21490,6 +21517,16 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
21490
21517
  --pf-c-options-menu__menu--Top: var(--pf-c-options-menu--m-top__menu--Top);
21491
21518
  transform: translateY(var(--pf-c-options-menu--m-top__menu--TranslateY));
21492
21519
  }
21520
+ .pf-c-options-menu__menu.pf-m-static {
21521
+ --pf-c-options-menu--m-top__menu--TranslateY: 0;
21522
+ position: static;
21523
+ top: auto;
21524
+ right: auto;
21525
+ bottom: auto;
21526
+ left: auto;
21527
+ z-index: auto;
21528
+ min-width: min-content;
21529
+ }
21493
21530
 
21494
21531
  .pf-c-options-menu__menu-item {
21495
21532
  display: flex;
@@ -24279,6 +24316,16 @@ label.pf-c-radio, .pf-c-radio__label,
24279
24316
  --pf-c-search-input__menu--Top: var(--pf-c-search-input--m-top__menu--Top);
24280
24317
  transform: translateY(var(--pf-c-search-input--m-top__menu--TranslateY));
24281
24318
  }
24319
+ .pf-c-search-input__menu.pf-m-static {
24320
+ --pf-c-search-input--m-top__menu--TranslateY: 0;
24321
+ position: static;
24322
+ top: auto;
24323
+ right: auto;
24324
+ bottom: auto;
24325
+ left: auto;
24326
+ z-index: auto;
24327
+ min-width: min-content;
24328
+ }
24282
24329
 
24283
24330
  .pf-c-search-input__menu-body {
24284
24331
  padding: var(--pf-c-search-input__menu-body--PaddingTop) var(--pf-c-search-input__menu-body--PaddingRight) var(--pf-c-search-input__menu-body--PaddingBottom) var(--pf-c-search-input__menu-body--PaddingLeft);
@@ -24740,8 +24787,12 @@ label.pf-c-radio, .pf-c-radio__label,
24740
24787
  transform: translateY(var(--pf-c-select__menu--m-top--TranslateY));
24741
24788
  }
24742
24789
  .pf-c-select__menu.pf-m-static {
24790
+ --pf-c-select__menu--m-top--TranslateY: 0;
24743
24791
  position: static;
24744
24792
  top: auto;
24793
+ right: auto;
24794
+ bottom: auto;
24795
+ left: auto;
24745
24796
  z-index: auto;
24746
24797
  min-width: min-content;
24747
24798
  }
package/patternfly.css CHANGED
@@ -6596,6 +6596,16 @@ a {
6596
6596
  --pf-c-app-launcher__menu--Top: var(--pf-c-app-launcher--m-top__menu--Top);
6597
6597
  transform: translateY(var(--pf-c-app-launcher--m-top__menu--TranslateY));
6598
6598
  }
6599
+ .pf-c-app-launcher__menu.pf-m-static {
6600
+ --pf-c-app-launcher--m-top__menu--TranslateY: 0;
6601
+ position: static;
6602
+ top: auto;
6603
+ right: auto;
6604
+ bottom: auto;
6605
+ left: auto;
6606
+ z-index: auto;
6607
+ min-width: min-content;
6608
+ }
6599
6609
 
6600
6610
  .pf-c-app-launcher__menu-search {
6601
6611
  padding: var(--pf-c-app-launcher__menu-search--PaddingTop) var(--pf-c-app-launcher__menu-search--PaddingRight) var(--pf-c-app-launcher__menu-search--PaddingBottom) var(--pf-c-app-launcher__menu-search--PaddingLeft);
@@ -9823,6 +9833,9 @@ label.pf-c-check, .pf-c-check__label,
9823
9833
  .pf-c-context-selector__menu.pf-m-static {
9824
9834
  position: static;
9825
9835
  top: auto;
9836
+ right: auto;
9837
+ bottom: auto;
9838
+ left: auto;
9826
9839
  z-index: auto;
9827
9840
  min-width: min-content;
9828
9841
  }
@@ -12634,6 +12647,16 @@ label.pf-c-check, .pf-c-check__label,
12634
12647
  --pf-c-date-picker__calendar--Top: var(--pf-c-date-picker--m-top__calendar--Top);
12635
12648
  transform: translateY(var(--pf-c-date-picker--m-top__calendar--TranslateY));
12636
12649
  }
12650
+ .pf-c-date-picker__calendar.pf-m-static {
12651
+ --pf-c-date-picker--m-top__calendar--TranslateY: 0;
12652
+ position: static;
12653
+ top: auto;
12654
+ right: auto;
12655
+ bottom: auto;
12656
+ left: auto;
12657
+ z-index: auto;
12658
+ min-width: min-content;
12659
+ }
12637
12660
 
12638
12661
  :where(.pf-theme-dark) .pf-c-wizard__header, :where(.pf-theme-dark) .pf-c-page__sidebar-body.pf-m-menu .pf-c-context-selector,
12639
12662
  :where(.pf-theme-dark) .pf-c-page__main-section[class*=pf-m-dark-],
@@ -14321,8 +14344,12 @@ label.pf-c-check, .pf-c-check__label,
14321
14344
  box-shadow: var(--pf-c-dropdown__menu--BoxShadow);
14322
14345
  }
14323
14346
  .pf-c-dropdown__menu.pf-m-static {
14347
+ --pf-c-dropdown--m-top__menu--TranslateY: 0;
14324
14348
  position: static;
14325
14349
  top: auto;
14350
+ right: auto;
14351
+ bottom: auto;
14352
+ left: auto;
14326
14353
  z-index: auto;
14327
14354
  min-width: min-content;
14328
14355
  }
@@ -21617,6 +21644,16 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
21617
21644
  --pf-c-options-menu__menu--Top: var(--pf-c-options-menu--m-top__menu--Top);
21618
21645
  transform: translateY(var(--pf-c-options-menu--m-top__menu--TranslateY));
21619
21646
  }
21647
+ .pf-c-options-menu__menu.pf-m-static {
21648
+ --pf-c-options-menu--m-top__menu--TranslateY: 0;
21649
+ position: static;
21650
+ top: auto;
21651
+ right: auto;
21652
+ bottom: auto;
21653
+ left: auto;
21654
+ z-index: auto;
21655
+ min-width: min-content;
21656
+ }
21620
21657
 
21621
21658
  .pf-c-options-menu__menu-item {
21622
21659
  display: flex;
@@ -24406,6 +24443,16 @@ label.pf-c-radio, .pf-c-radio__label,
24406
24443
  --pf-c-search-input__menu--Top: var(--pf-c-search-input--m-top__menu--Top);
24407
24444
  transform: translateY(var(--pf-c-search-input--m-top__menu--TranslateY));
24408
24445
  }
24446
+ .pf-c-search-input__menu.pf-m-static {
24447
+ --pf-c-search-input--m-top__menu--TranslateY: 0;
24448
+ position: static;
24449
+ top: auto;
24450
+ right: auto;
24451
+ bottom: auto;
24452
+ left: auto;
24453
+ z-index: auto;
24454
+ min-width: min-content;
24455
+ }
24409
24456
 
24410
24457
  .pf-c-search-input__menu-body {
24411
24458
  padding: var(--pf-c-search-input__menu-body--PaddingTop) var(--pf-c-search-input__menu-body--PaddingRight) var(--pf-c-search-input__menu-body--PaddingBottom) var(--pf-c-search-input__menu-body--PaddingLeft);
@@ -24867,8 +24914,12 @@ label.pf-c-radio, .pf-c-radio__label,
24867
24914
  transform: translateY(var(--pf-c-select__menu--m-top--TranslateY));
24868
24915
  }
24869
24916
  .pf-c-select__menu.pf-m-static {
24917
+ --pf-c-select__menu--m-top--TranslateY: 0;
24870
24918
  position: static;
24871
24919
  top: auto;
24920
+ right: auto;
24921
+ bottom: auto;
24922
+ left: auto;
24872
24923
  z-index: auto;
24873
24924
  min-width: min-content;
24874
24925
  }