@patternfly/patternfly 5.2.0-prerelease.4 → 5.2.0-prerelease.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/base/_globals.scss +2 -4
- package/base/patternfly-globals.css +2 -2
- package/components/Form/form.css +6 -0
- package/components/Form/form.scss +4 -1
- package/components/Popover/popover.css +0 -2
- package/components/Popover/popover.scss +2 -2
- package/components/Tooltip/tooltip.css +0 -2
- package/components/Tooltip/tooltip.scss +2 -2
- package/docs/components/Alert/examples/Alert.md +2 -2
- package/docs/components/Breadcrumb/examples/Breadcrumb.md +1 -1
- package/docs/components/Content/examples/Content.md +5 -5
- package/docs/components/InlineEdit/examples/InlineEdit.md +3 -1
- package/docs/components/Label/examples/Label.md +11 -11
- package/docs/components/Nav/examples/Navigation.md +1 -1
- package/docs/components/Table/examples/Table.md +8 -8
- package/docs/layouts/Flex/examples/Flex.md +11 -11
- package/package.json +29 -29
- package/patternfly-base-theme-dark-unversioned.css +2 -2
- package/patternfly-base.css +2 -2
- package/patternfly-no-globals.css +6 -4
- package/patternfly-theme-dark-unversioned.css +8 -6
- package/patternfly.css +8 -6
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/base/_globals.scss
CHANGED
package/components/Form/form.css
CHANGED
|
@@ -247,6 +247,9 @@
|
|
|
247
247
|
max-width: var(--pf-v5-c-form--m-limit-width--MaxWidth);
|
|
248
248
|
}
|
|
249
249
|
|
|
250
|
+
.pf-v5-c-form__group {
|
|
251
|
+
min-width: 0;
|
|
252
|
+
}
|
|
250
253
|
.pf-v5-c-form__group.pf-m-action {
|
|
251
254
|
margin-block-start: var(--pf-v5-c-form__group--m-action--MarginTop);
|
|
252
255
|
overflow: hidden;
|
|
@@ -335,6 +338,9 @@
|
|
|
335
338
|
--pf-v5-c-form__group-label-help--Color: var(--pf-v5-c-form__group-label-help--focus--Color);
|
|
336
339
|
}
|
|
337
340
|
|
|
341
|
+
.pf-v5-c-form__group-control {
|
|
342
|
+
min-width: 0;
|
|
343
|
+
}
|
|
338
344
|
.pf-v5-c-form__group-control.pf-m-inline {
|
|
339
345
|
display: flex;
|
|
340
346
|
flex-flow: row wrap;
|
|
@@ -221,6 +221,8 @@ $pf-v5-c-form--m-horizontal--breakpoint-map: build-breakpoint-map("sm", "md", "l
|
|
|
221
221
|
}
|
|
222
222
|
|
|
223
223
|
.#{$form}__group {
|
|
224
|
+
min-width: 0;
|
|
225
|
+
|
|
224
226
|
&.pf-m-action {
|
|
225
227
|
margin-block-start: var(--#{$form}__group--m-action--MarginTop);
|
|
226
228
|
overflow: hidden; // keeps the negative bottom margin bottom on .#{$form}__actions from triggering overflow
|
|
@@ -320,8 +322,9 @@ $pf-v5-c-form--m-horizontal--breakpoint-map: build-breakpoint-map("sm", "md", "l
|
|
|
320
322
|
}
|
|
321
323
|
}
|
|
322
324
|
|
|
323
|
-
|
|
324
325
|
.#{$form}__group-control {
|
|
326
|
+
min-width: 0;
|
|
327
|
+
|
|
325
328
|
&.pf-m-inline {
|
|
326
329
|
display: flex;
|
|
327
330
|
flex-flow: row wrap;
|
|
@@ -158,12 +158,10 @@
|
|
|
158
158
|
|
|
159
159
|
.pf-v5-c-popover__arrow {
|
|
160
160
|
position: absolute;
|
|
161
|
-
/* stylelint-disable liberty/use-logical-spec */
|
|
162
161
|
top: var(--pf-v5-c-popover__arrow--Top, auto);
|
|
163
162
|
right: var(--pf-v5-c-popover__arrow--Right, auto);
|
|
164
163
|
bottom: var(--pf-v5-c-popover__arrow--Bottom, auto);
|
|
165
164
|
left: var(--pf-v5-c-popover__arrow--Left, auto);
|
|
166
|
-
/* stylelint-enable */
|
|
167
165
|
width: var(--pf-v5-c-popover__arrow--Width);
|
|
168
166
|
height: var(--pf-v5-c-popover__arrow--Height);
|
|
169
167
|
pointer-events: none;
|
|
@@ -217,12 +217,12 @@
|
|
|
217
217
|
|
|
218
218
|
.#{$popover}__arrow {
|
|
219
219
|
position: absolute;
|
|
220
|
-
|
|
220
|
+
// stylelint-disable liberty/use-logical-spec
|
|
221
221
|
top: var(--#{$popover}__arrow--Top, auto);
|
|
222
222
|
right: var(--#{$popover}__arrow--Right, auto);
|
|
223
223
|
bottom: var(--#{$popover}__arrow--Bottom, auto);
|
|
224
224
|
left: var(--#{$popover}__arrow--Left, auto);
|
|
225
|
-
|
|
225
|
+
// stylelint-enable
|
|
226
226
|
width: var(--#{$popover}__arrow--Width);
|
|
227
227
|
height: var(--#{$popover}__arrow--Height);
|
|
228
228
|
pointer-events: none;
|
|
@@ -103,12 +103,10 @@
|
|
|
103
103
|
|
|
104
104
|
.pf-v5-c-tooltip__arrow {
|
|
105
105
|
position: absolute;
|
|
106
|
-
/* stylelint-disable liberty/use-logical-spec */
|
|
107
106
|
top: var(--pf-v5-c-tooltip__arrow--Top, auto);
|
|
108
107
|
right: var(--pf-v5-c-tooltip__arrow--Right, auto);
|
|
109
108
|
bottom: var(--pf-v5-c-tooltip__arrow--Bottom, auto);
|
|
110
109
|
left: var(--pf-v5-c-tooltip__arrow--Left, auto);
|
|
111
|
-
/* stylelint-enable */
|
|
112
110
|
width: var(--pf-v5-c-tooltip__arrow--Width);
|
|
113
111
|
height: var(--pf-v5-c-tooltip__arrow--Height);
|
|
114
112
|
pointer-events: none;
|
|
@@ -136,12 +136,12 @@
|
|
|
136
136
|
|
|
137
137
|
.#{$tooltip}__arrow {
|
|
138
138
|
position: absolute;
|
|
139
|
-
|
|
139
|
+
// stylelint-disable liberty/use-logical-spec
|
|
140
140
|
top: var(--#{$tooltip}__arrow--Top, auto);
|
|
141
141
|
right: var(--#{$tooltip}__arrow--Right, auto);
|
|
142
142
|
bottom: var(--#{$tooltip}__arrow--Bottom, auto);
|
|
143
143
|
left: var(--#{$tooltip}__arrow--Left, auto);
|
|
144
|
-
|
|
144
|
+
// stylelint-enable
|
|
145
145
|
width: var(--#{$tooltip}__arrow--Width);
|
|
146
146
|
height: var(--#{$tooltip}__arrow--Height);
|
|
147
147
|
pointer-events: none;
|
|
@@ -677,8 +677,8 @@ When toast alerts include a link or action, these elements are not announced as
|
|
|
677
677
|
|
|
678
678
|
For sighted users, interactive elements can be included in this message in one of the following ways:
|
|
679
679
|
|
|
680
|
-
*
|
|
681
|
-
*
|
|
680
|
+
* Using a link to the Builds page: "The build is complete. Go to the [Builds](#) page to download" using `<a href="#">Builds</a>`
|
|
681
|
+
* Using a button to download: "The build is complete. Go to the Builds page to <button class="pf-v5-c-button pf-m-link pf-m-inline" type="button">download</button>" using `<button class="pf-v5-c-button pf-m-link pf-m-inline type="button">download</button>`
|
|
682
682
|
|
|
683
683
|
```html isFullscreen
|
|
684
684
|
<ul class="pf-v5-c-alert-group pf-m-toast" role="list">
|
|
@@ -281,7 +281,7 @@ cssPrefix: pf-v5-c-breadcrumb
|
|
|
281
281
|
|
|
282
282
|
A breadcrumb is a list of links to display a user's navigational hierarchy. The last item of the breadcrumb list indicates the current page's location.
|
|
283
283
|
|
|
284
|
-
*
|
|
284
|
+
* `.pf-v5-c-breadcrumb__list` is the default breadcrumb navigation. It provides links to previous navigation pages and also shows the current page's location.
|
|
285
285
|
|
|
286
286
|
In the event that a page does not have a traditional `<h1>` page title, a heading can be included in the breadcrumbs and an optional link within.
|
|
287
287
|
|
|
@@ -163,11 +163,11 @@ cssPrefix: pf-v5-c-content
|
|
|
163
163
|
|
|
164
164
|
When you can't use the CSS classes you want, or when you just want to directly use HTML tags, use `pf-v5-c-content` as container. It can handle almost any HTML tag:
|
|
165
165
|
|
|
166
|
-
*
|
|
167
|
-
*
|
|
168
|
-
*
|
|
169
|
-
*
|
|
170
|
-
*
|
|
166
|
+
* `<p>` paragraphs
|
|
167
|
+
* `<ul>` `<ol>` `<dl>` lists
|
|
168
|
+
* `<h1>` to `<h6>` headings
|
|
169
|
+
* `<blockquote>` quotes
|
|
170
|
+
* `<em>` and `<strong>`
|
|
171
171
|
|
|
172
172
|
This `pf-v5-c-content` class can be used in any context where you just want to (or can only) write some text.
|
|
173
173
|
|
|
@@ -930,4 +930,6 @@ All accessibility requirements for inputs apply to elements within inline edit.
|
|
|
930
930
|
| `.pf-m-valid` | `.pf-v5-c-inline-edit__action` | Modifies the action button state. |
|
|
931
931
|
| `.pf-m-enable-editable` | `.pf-v5-c-inline-edit__action` | Exposes an inline edit action by default. |
|
|
932
932
|
|
|
933
|
-
|
|
933
|
+
```
|
|
934
|
+
-->
|
|
935
|
+
```
|
|
@@ -1949,16 +1949,16 @@ This style of label is used to indicate overflow within a label group.
|
|
|
1949
1949
|
|
|
1950
1950
|
**Note: Editable label behavior must be handled with JavaScript.**
|
|
1951
1951
|
|
|
1952
|
-
*
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
*
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
*
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1952
|
+
* `.pf-v5-c-label__editable-text` onClick event should:
|
|
1953
|
+
* Set `.pf-m-editable-active` on `.pf-v5-c-label`
|
|
1954
|
+
* Change `.pf-v5-c-label__editable-text`from a button to an input
|
|
1955
|
+
* Return keypress, when content is editable, should:
|
|
1956
|
+
* Be captured to prevent line wrapping and save updates to label text
|
|
1957
|
+
* Remove `.pf-m-editable-active` from `.pf-v5-c-label`
|
|
1958
|
+
* Esc keypress, when content is editable, should:
|
|
1959
|
+
* Undo any update to label text
|
|
1960
|
+
* Remove `.pf-m-editable-active` from `.pf-v5-c-label`
|
|
1961
|
+
* Change `.pf-v5-c-label__editable-text` back to a button
|
|
1962
1962
|
|
|
1963
1963
|
```html isBeta
|
|
1964
1964
|
<span class="pf-v5-c-label pf-m-editable pf-m-blue">
|
|
@@ -2692,7 +2692,7 @@ The contents of a label group can be modified by removing labels or adding new o
|
|
|
2692
2692
|
|
|
2693
2693
|
In addition to the JavaScript management of [editable labels](/components/label#editable), dynamic label groups also need:
|
|
2694
2694
|
|
|
2695
|
-
*
|
|
2695
|
+
* `.pf-v5-c-label-group.pf-m-editable` onClick event should (excluding labels within) set focus on `.pf-v5-c-label-group__textarea`
|
|
2696
2696
|
|
|
2697
2697
|
### Editable labels, dynamic label group
|
|
2698
2698
|
|
|
@@ -2614,7 +2614,7 @@ When using anything other than a text node for the link text, wrap the link text
|
|
|
2614
2614
|
|
|
2615
2615
|
The navigation system relies on several different sub-components:
|
|
2616
2616
|
|
|
2617
|
-
*
|
|
2617
|
+
* `.pf-v5-c-nav__list` - default navigation list. It is the basis for both default and expandable, vertical navigation.
|
|
2618
2618
|
|
|
2619
2619
|
### Accessibility
|
|
2620
2620
|
|
|
@@ -24703,9 +24703,9 @@ Add a [width modifier](#width-modifiers) to `thead th` to limit string length or
|
|
|
24703
24703
|
|
|
24704
24704
|
There are a few ways this can be handled:
|
|
24705
24705
|
|
|
24706
|
-
*
|
|
24707
|
-
*
|
|
24708
|
-
*
|
|
24706
|
+
* Manipulate the `z-index` of the menu and/or table headers/columns manually.
|
|
24707
|
+
* Use the `menuAppendTo` prop in non-composable react components with menus to append the menu to an element outside of the table (e.g., the `<body>` element) so that the menu has a higher stacking context than - and can appear on top of - sticky headers/columns as well as appear outside of any scrollable content in the table.
|
|
24708
|
+
* In the case where the menu is outside of the table (e.g., above the table in a toolbar, or below the table and the menu expands up), assign the entire table a lower `z-index` than the `z-index` of the menu. This creates a lower stacking context for the entire table compared to the menu, while preserving the stacking context of the elements inside of the table.
|
|
24709
24709
|
|
|
24710
24710
|
### Sticky header
|
|
24711
24711
|
|
|
@@ -30824,8 +30824,8 @@ By default, all table header cells are set to `white-space: nowrap`. If a `<th>`
|
|
|
30824
30824
|
|
|
30825
30825
|
### Implementation support
|
|
30826
30826
|
|
|
30827
|
-
*
|
|
30828
|
-
*
|
|
30829
|
-
*
|
|
30830
|
-
*
|
|
30831
|
-
*
|
|
30827
|
+
* One expandable toggle button, positioned in the first cell of a non-expandable row, preceding an expandable row.
|
|
30828
|
+
* One checkbox or radio input, positioned in the first or second cell of a non-expandable row.
|
|
30829
|
+
* One action button, positioned in the last cell of a non-expandable row.
|
|
30830
|
+
* Tabular data.
|
|
30831
|
+
* Compact presentation modifier (not compatible with expandable table).
|
|
@@ -12,11 +12,11 @@ The flex layout is based on the CSS Flex properties where the layout determines
|
|
|
12
12
|
|
|
13
13
|
The flex layout provides two ways of spacing its direct children.
|
|
14
14
|
|
|
15
|
-
*
|
|
16
|
-
|
|
17
|
-
*
|
|
18
|
-
|
|
19
|
-
|
|
15
|
+
* [Spacing system](#spacing-system)
|
|
16
|
+
* The spacing system applies a margin between the flex layout's direct children to create space between items along the main axis only. The benefit of the spacing system is that it allows for variable spacing between direct children. Use the spacing system when individual flex items along the main axis require a different spacer than sibling items.
|
|
17
|
+
* [Gap spacing](#gap-spacing)
|
|
18
|
+
* Gap spacing uses flex `gap` to space the flex layout's direct children, and can be applied to space rows (`row-gap`), columns (`column-gap`), or both (`gap`). The benefit of gap spacing is that item wrapping is improved and improved item spacing that works better with CSS flex's logical layout properties. E.g., spacing in RTL layouts that rely on logical properties is improved. Use the gap system when all direct children should use the same spacer for rows, columns, or both.
|
|
19
|
+
* **Note** using `gap` along the main axis will override any other spacing applied using the spacing system.
|
|
20
20
|
|
|
21
21
|
### Breakpoints
|
|
22
22
|
|
|
@@ -24,15 +24,15 @@ The flex layout provides two ways of spacing its direct children.
|
|
|
24
24
|
|
|
25
25
|
### Usefulness
|
|
26
26
|
|
|
27
|
-
*
|
|
28
|
-
*
|
|
27
|
+
* Use when content dictates layout and elements wrap when necessary.
|
|
28
|
+
* Use when a rigid grid is not necessary/wanted.
|
|
29
29
|
|
|
30
30
|
### Differences from utility class
|
|
31
31
|
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
*
|
|
32
|
+
* It contains multiple css declarations and does not use the `!important` tag.
|
|
33
|
+
* It does not require wrapping elements in columns or rows.
|
|
34
|
+
* It breaks the dependency upon adding utility classes to each child.
|
|
35
|
+
* It can be applied to container elements or components.
|
|
36
36
|
|
|
37
37
|
# Examples
|
|
38
38
|
|
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": "5.2.0-prerelease.
|
|
4
|
+
"version": "5.2.0-prerelease.6",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"scripts": {
|
|
@@ -32,20 +32,20 @@
|
|
|
32
32
|
"prepare": "husky install"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@babel/core": "^7.
|
|
36
|
-
"@babel/eslint-parser": "^7.
|
|
35
|
+
"@babel/core": "^7.23.5",
|
|
36
|
+
"@babel/eslint-parser": "^7.23.3",
|
|
37
37
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
38
38
|
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
|
|
39
39
|
"@babel/plugin-proposal-private-methods": "^7.18.6",
|
|
40
40
|
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
|
41
|
-
"@babel/plugin-transform-react-jsx": "^7.
|
|
42
|
-
"@babel/preset-env": "^7.
|
|
43
|
-
"@babel/preset-react": "^7.
|
|
44
|
-
"@commitlint/cli": "^
|
|
45
|
-
"@commitlint/config-conventional": "^
|
|
41
|
+
"@babel/plugin-transform-react-jsx": "^7.23.4",
|
|
42
|
+
"@babel/preset-env": "^7.23.5",
|
|
43
|
+
"@babel/preset-react": "^7.23.3",
|
|
44
|
+
"@commitlint/cli": "^18.4.3",
|
|
45
|
+
"@commitlint/config-conventional": "^18.4.3",
|
|
46
46
|
"@fortawesome/fontawesome": "^1.1.8",
|
|
47
|
-
"@octokit/rest": "^20.0.
|
|
48
|
-
"@patternfly/documentation-framework": "5.
|
|
47
|
+
"@octokit/rest": "^20.0.2",
|
|
48
|
+
"@patternfly/documentation-framework": "5.3.9",
|
|
49
49
|
"@patternfly/patternfly-a11y": "4.3.1",
|
|
50
50
|
"@patternfly/react-code-editor": "5.1.1",
|
|
51
51
|
"@patternfly/react-core": "5.1.1",
|
|
@@ -53,19 +53,19 @@
|
|
|
53
53
|
"@starptech/prettyhtml": "^0.10.0",
|
|
54
54
|
"backstopjs": "^6.2.2",
|
|
55
55
|
"cheerio": "^1.0.0-rc.12",
|
|
56
|
-
"commander": "^11.
|
|
56
|
+
"commander": "^11.1.0",
|
|
57
57
|
"cssnano": "^6.0.1",
|
|
58
|
-
"eslint": "^8.
|
|
58
|
+
"eslint": "^8.54.0",
|
|
59
59
|
"eslint-config-standard": "^17.1.0",
|
|
60
60
|
"eslint-config-standard-jsx": "^11.0.0",
|
|
61
61
|
"eslint-config-standard-react": "^13.0.0",
|
|
62
|
-
"eslint-plugin-import": "^2.
|
|
63
|
-
"eslint-plugin-n": "^16.
|
|
62
|
+
"eslint-plugin-import": "^2.29.0",
|
|
63
|
+
"eslint-plugin-n": "^16.3.1",
|
|
64
64
|
"eslint-plugin-node": "^11.1.0",
|
|
65
65
|
"eslint-plugin-promise": "^6.1.1",
|
|
66
|
-
"eslint-plugin-react": "^7.33.
|
|
66
|
+
"eslint-plugin-react": "^7.33.2",
|
|
67
67
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
68
|
-
"glob": "^10.3.
|
|
68
|
+
"glob": "^10.3.10",
|
|
69
69
|
"gulp": "^4.0.2",
|
|
70
70
|
"gulp-cli": "^2.3.0",
|
|
71
71
|
"gulp-iconfont": "^11.0.1",
|
|
@@ -74,27 +74,27 @@
|
|
|
74
74
|
"gulp-rename": "^2.0.0",
|
|
75
75
|
"gulp-sourcemaps": "^3.0.0",
|
|
76
76
|
"husky": "^8.0.3",
|
|
77
|
-
"lint-staged": "^
|
|
78
|
-
"node-plop": "^0.
|
|
79
|
-
"postcss": "^8.4.
|
|
77
|
+
"lint-staged": "^15.1.0",
|
|
78
|
+
"node-plop": "^0.32.0",
|
|
79
|
+
"postcss": "^8.4.31",
|
|
80
80
|
"postcss-css-variables": "^0.19.0",
|
|
81
|
-
"postcss-preset-env": "^9.
|
|
82
|
-
"prettier": "^3.
|
|
81
|
+
"postcss-preset-env": "^9.3.0",
|
|
82
|
+
"prettier": "^3.1.0",
|
|
83
83
|
"react": "^18.2.0",
|
|
84
84
|
"react-dom": "^18.2.0",
|
|
85
|
-
"remark-parse": "^
|
|
86
|
-
"remark-stringify": "^
|
|
85
|
+
"remark-parse": "^11.0.0",
|
|
86
|
+
"remark-stringify": "^11.0.0",
|
|
87
87
|
"rimraf": "*",
|
|
88
|
-
"sass": "^1.
|
|
88
|
+
"sass": "^1.69.5",
|
|
89
89
|
"sass-graph": "^4.0.1",
|
|
90
|
-
"stylelint": "^15.
|
|
91
|
-
"stylelint-config-recess-order": "^4.
|
|
90
|
+
"stylelint": "^15.11.0",
|
|
91
|
+
"stylelint-config-recess-order": "^4.4.0",
|
|
92
92
|
"stylelint-config-standard": "^34.0.0",
|
|
93
|
-
"stylelint-config-standard-scss": "^
|
|
93
|
+
"stylelint-config-standard-scss": "^11.1.0",
|
|
94
94
|
"stylelint-use-logical-spec": "^5.0.0",
|
|
95
95
|
"surge": "^0.23.1",
|
|
96
|
-
"unified": "^
|
|
97
|
-
"webpack": "^5.
|
|
96
|
+
"unified": "^11.0.4",
|
|
97
|
+
"webpack": "^5.89.0"
|
|
98
98
|
},
|
|
99
99
|
"resolutions": {
|
|
100
100
|
"@babel/preset-env": "7.18.2",
|
package/patternfly-base.css
CHANGED
|
@@ -14665,6 +14665,9 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
14665
14665
|
max-width: var(--pf-v5-c-form--m-limit-width--MaxWidth);
|
|
14666
14666
|
}
|
|
14667
14667
|
|
|
14668
|
+
.pf-v5-c-form__group {
|
|
14669
|
+
min-width: 0;
|
|
14670
|
+
}
|
|
14668
14671
|
.pf-v5-c-form__group.pf-m-action {
|
|
14669
14672
|
margin-block-start: var(--pf-v5-c-form__group--m-action--MarginTop);
|
|
14670
14673
|
overflow: hidden;
|
|
@@ -14753,6 +14756,9 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
14753
14756
|
--pf-v5-c-form__group-label-help--Color: var(--pf-v5-c-form__group-label-help--focus--Color);
|
|
14754
14757
|
}
|
|
14755
14758
|
|
|
14759
|
+
.pf-v5-c-form__group-control {
|
|
14760
|
+
min-width: 0;
|
|
14761
|
+
}
|
|
14756
14762
|
.pf-v5-c-form__group-control.pf-m-inline {
|
|
14757
14763
|
display: flex;
|
|
14758
14764
|
flex-flow: row wrap;
|
|
@@ -22616,12 +22622,10 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab
|
|
|
22616
22622
|
|
|
22617
22623
|
.pf-v5-c-popover__arrow {
|
|
22618
22624
|
position: absolute;
|
|
22619
|
-
/* stylelint-disable liberty/use-logical-spec */
|
|
22620
22625
|
top: var(--pf-v5-c-popover__arrow--Top, auto);
|
|
22621
22626
|
right: var(--pf-v5-c-popover__arrow--Right, auto);
|
|
22622
22627
|
bottom: var(--pf-v5-c-popover__arrow--Bottom, auto);
|
|
22623
22628
|
left: var(--pf-v5-c-popover__arrow--Left, auto);
|
|
22624
|
-
/* stylelint-enable */
|
|
22625
22629
|
width: var(--pf-v5-c-popover__arrow--Width);
|
|
22626
22630
|
height: var(--pf-v5-c-popover__arrow--Height);
|
|
22627
22631
|
pointer-events: none;
|
|
@@ -30346,12 +30350,10 @@ svg.pf-v5-c-spinner.pf-m-xl {
|
|
|
30346
30350
|
|
|
30347
30351
|
.pf-v5-c-tooltip__arrow {
|
|
30348
30352
|
position: absolute;
|
|
30349
|
-
/* stylelint-disable liberty/use-logical-spec */
|
|
30350
30353
|
top: var(--pf-v5-c-tooltip__arrow--Top, auto);
|
|
30351
30354
|
right: var(--pf-v5-c-tooltip__arrow--Right, auto);
|
|
30352
30355
|
bottom: var(--pf-v5-c-tooltip__arrow--Bottom, auto);
|
|
30353
30356
|
left: var(--pf-v5-c-tooltip__arrow--Left, auto);
|
|
30354
|
-
/* stylelint-enable */
|
|
30355
30357
|
width: var(--pf-v5-c-tooltip__arrow--Width);
|
|
30356
30358
|
height: var(--pf-v5-c-tooltip__arrow--Height);
|
|
30357
30359
|
pointer-events: none;
|
|
@@ -602,8 +602,8 @@ h6) {
|
|
|
602
602
|
}
|
|
603
603
|
|
|
604
604
|
*,
|
|
605
|
-
|
|
606
|
-
*::after
|
|
605
|
+
*::before,
|
|
606
|
+
*::after {
|
|
607
607
|
box-sizing: border-box;
|
|
608
608
|
}
|
|
609
609
|
|
|
@@ -14782,6 +14782,9 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
14782
14782
|
max-width: var(--pf-v5-c-form--m-limit-width--MaxWidth);
|
|
14783
14783
|
}
|
|
14784
14784
|
|
|
14785
|
+
.pf-v5-c-form__group {
|
|
14786
|
+
min-width: 0;
|
|
14787
|
+
}
|
|
14785
14788
|
.pf-v5-c-form__group.pf-m-action {
|
|
14786
14789
|
margin-block-start: var(--pf-v5-c-form__group--m-action--MarginTop);
|
|
14787
14790
|
overflow: hidden;
|
|
@@ -14870,6 +14873,9 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
14870
14873
|
--pf-v5-c-form__group-label-help--Color: var(--pf-v5-c-form__group-label-help--focus--Color);
|
|
14871
14874
|
}
|
|
14872
14875
|
|
|
14876
|
+
.pf-v5-c-form__group-control {
|
|
14877
|
+
min-width: 0;
|
|
14878
|
+
}
|
|
14873
14879
|
.pf-v5-c-form__group-control.pf-m-inline {
|
|
14874
14880
|
display: flex;
|
|
14875
14881
|
flex-flow: row wrap;
|
|
@@ -22733,12 +22739,10 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab
|
|
|
22733
22739
|
|
|
22734
22740
|
.pf-v5-c-popover__arrow {
|
|
22735
22741
|
position: absolute;
|
|
22736
|
-
/* stylelint-disable liberty/use-logical-spec */
|
|
22737
22742
|
top: var(--pf-v5-c-popover__arrow--Top, auto);
|
|
22738
22743
|
right: var(--pf-v5-c-popover__arrow--Right, auto);
|
|
22739
22744
|
bottom: var(--pf-v5-c-popover__arrow--Bottom, auto);
|
|
22740
22745
|
left: var(--pf-v5-c-popover__arrow--Left, auto);
|
|
22741
|
-
/* stylelint-enable */
|
|
22742
22746
|
width: var(--pf-v5-c-popover__arrow--Width);
|
|
22743
22747
|
height: var(--pf-v5-c-popover__arrow--Height);
|
|
22744
22748
|
pointer-events: none;
|
|
@@ -30463,12 +30467,10 @@ svg.pf-v5-c-spinner.pf-m-xl {
|
|
|
30463
30467
|
|
|
30464
30468
|
.pf-v5-c-tooltip__arrow {
|
|
30465
30469
|
position: absolute;
|
|
30466
|
-
/* stylelint-disable liberty/use-logical-spec */
|
|
30467
30470
|
top: var(--pf-v5-c-tooltip__arrow--Top, auto);
|
|
30468
30471
|
right: var(--pf-v5-c-tooltip__arrow--Right, auto);
|
|
30469
30472
|
bottom: var(--pf-v5-c-tooltip__arrow--Bottom, auto);
|
|
30470
30473
|
left: var(--pf-v5-c-tooltip__arrow--Left, auto);
|
|
30471
|
-
/* stylelint-enable */
|
|
30472
30474
|
width: var(--pf-v5-c-tooltip__arrow--Width);
|
|
30473
30475
|
height: var(--pf-v5-c-tooltip__arrow--Height);
|
|
30474
30476
|
pointer-events: none;
|
package/patternfly.css
CHANGED
|
@@ -602,8 +602,8 @@ h6) {
|
|
|
602
602
|
}
|
|
603
603
|
|
|
604
604
|
*,
|
|
605
|
-
|
|
606
|
-
*::after
|
|
605
|
+
*::before,
|
|
606
|
+
*::after {
|
|
607
607
|
box-sizing: border-box;
|
|
608
608
|
}
|
|
609
609
|
|
|
@@ -14782,6 +14782,9 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
14782
14782
|
max-width: var(--pf-v5-c-form--m-limit-width--MaxWidth);
|
|
14783
14783
|
}
|
|
14784
14784
|
|
|
14785
|
+
.pf-v5-c-form__group {
|
|
14786
|
+
min-width: 0;
|
|
14787
|
+
}
|
|
14785
14788
|
.pf-v5-c-form__group.pf-m-action {
|
|
14786
14789
|
margin-block-start: var(--pf-v5-c-form__group--m-action--MarginTop);
|
|
14787
14790
|
overflow: hidden;
|
|
@@ -14870,6 +14873,9 @@ label.pf-v5-c-check, .pf-v5-c-check__label,
|
|
|
14870
14873
|
--pf-v5-c-form__group-label-help--Color: var(--pf-v5-c-form__group-label-help--focus--Color);
|
|
14871
14874
|
}
|
|
14872
14875
|
|
|
14876
|
+
.pf-v5-c-form__group-control {
|
|
14877
|
+
min-width: 0;
|
|
14878
|
+
}
|
|
14873
14879
|
.pf-v5-c-form__group-control.pf-m-inline {
|
|
14874
14880
|
display: flex;
|
|
14875
14881
|
flex-flow: row wrap;
|
|
@@ -22733,12 +22739,10 @@ label.pf-v5-c-menu__item:where(:not([disabled], .pf-m-disabled, .pf-m-aria-disab
|
|
|
22733
22739
|
|
|
22734
22740
|
.pf-v5-c-popover__arrow {
|
|
22735
22741
|
position: absolute;
|
|
22736
|
-
/* stylelint-disable liberty/use-logical-spec */
|
|
22737
22742
|
top: var(--pf-v5-c-popover__arrow--Top, auto);
|
|
22738
22743
|
right: var(--pf-v5-c-popover__arrow--Right, auto);
|
|
22739
22744
|
bottom: var(--pf-v5-c-popover__arrow--Bottom, auto);
|
|
22740
22745
|
left: var(--pf-v5-c-popover__arrow--Left, auto);
|
|
22741
|
-
/* stylelint-enable */
|
|
22742
22746
|
width: var(--pf-v5-c-popover__arrow--Width);
|
|
22743
22747
|
height: var(--pf-v5-c-popover__arrow--Height);
|
|
22744
22748
|
pointer-events: none;
|
|
@@ -30463,12 +30467,10 @@ svg.pf-v5-c-spinner.pf-m-xl {
|
|
|
30463
30467
|
|
|
30464
30468
|
.pf-v5-c-tooltip__arrow {
|
|
30465
30469
|
position: absolute;
|
|
30466
|
-
/* stylelint-disable liberty/use-logical-spec */
|
|
30467
30470
|
top: var(--pf-v5-c-tooltip__arrow--Top, auto);
|
|
30468
30471
|
right: var(--pf-v5-c-tooltip__arrow--Right, auto);
|
|
30469
30472
|
bottom: var(--pf-v5-c-tooltip__arrow--Bottom, auto);
|
|
30470
30473
|
left: var(--pf-v5-c-tooltip__arrow--Left, auto);
|
|
30471
|
-
/* stylelint-enable */
|
|
30472
30474
|
width: var(--pf-v5-c-tooltip__arrow--Width);
|
|
30473
30475
|
height: var(--pf-v5-c-tooltip__arrow--Height);
|
|
30474
30476
|
pointer-events: none;
|