@patternfly/react-styles 6.0.0 → 6.1.0-prerelease.2
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +14 -0
- package/css/components/CodeEditor/code-editor.css +15 -0
- package/css/components/CodeEditor/code-editor.d.ts +2 -0
- package/css/components/CodeEditor/code-editor.js +2 -0
- package/css/components/CodeEditor/code-editor.mjs +2 -0
- package/css/components/Content/content.css +9 -0
- package/css/components/Content/content.d.ts +1 -0
- package/css/components/Content/content.js +1 -0
- package/css/components/Content/content.mjs +1 -0
- package/css/components/Label/label-group.css +12 -0
- package/css/components/Label/label.css +2 -0
- package/css/components/MenuToggle/menu-toggle.css +3 -7
- package/css/components/Page/page.css +5 -0
- package/css/components/Table/table-grid.css +12 -12
- package/css/components/Table/table-tree-view.css +4 -4
- package/css/components/Table/table.css +1 -0
- package/css/components/Title/title.css +4 -0
- package/css/components/Title/title.d.ts +2 -1
- package/css/components/Title/title.js +2 -1
- package/css/components/Title/title.mjs +2 -1
- package/css/components/Wizard/wizard.css +1 -1
- package/css/components/_index.css +68 -24
- package/css/components/_index.d.ts +2 -0
- package/css/components/_index.js +2 -0
- package/css/components/_index.mjs +2 -0
- package/css/docs/components/CodeEditor/examples/CodeEditor.css +3 -0
- package/css/docs/components/CodeEditor/examples/CodeEditor.d.ts +5 -0
- package/css/docs/components/CodeEditor/examples/CodeEditor.js +6 -0
- package/css/docs/components/CodeEditor/examples/CodeEditor.mjs +4 -0
- package/css/docs/components/Label/examples/Label.css +12 -0
- package/css/docs/components/Label/examples/Label.d.ts +1 -0
- package/css/docs/components/Label/examples/Label.js +1 -0
- package/css/docs/components/Label/examples/Label.mjs +1 -0
- package/css/docs/demos/Card/examples/Card.css +4 -0
- package/css/docs/demos/Card/examples/Card.d.ts +1 -0
- package/css/docs/demos/Card/examples/Card.js +1 -0
- package/css/docs/demos/Card/examples/Card.mjs +1 -0
- package/css/docs/layouts/Level/examples/Level.css +1 -2
- package/css/docs/layouts/Split/examples/Split.css +1 -2
- package/css/docs/layouts/Stack/examples/Stack.css +1 -2
- package/css/layouts/Split/split.css +1 -2
- package/css/layouts/Stack/stack.css +1 -2
- package/css/layouts/_index.css +2 -4
- package/package.json +3 -3
- /package/css/docs/components/Tile/{examples → deprecated}/Tile.css +0 -0
- /package/css/docs/components/Tile/{examples → deprecated}/Tile.d.ts +0 -0
- /package/css/docs/components/Tile/{examples → deprecated}/Tile.js +0 -0
- /package/css/docs/components/Tile/{examples → deprecated}/Tile.mjs +0 -0
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,20 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
# [6.1.0-prerelease.2](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.1.0-prerelease.1...@patternfly/react-styles@6.1.0-prerelease.2) (2024-11-19)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
9
|
+
|
10
|
+
# [6.1.0-prerelease.1](https://github.com/patternfly/patternfly-react/compare/@patternfly/react-styles@6.1.0-prerelease.0...@patternfly/react-styles@6.1.0-prerelease.1) (2024-11-13)
|
11
|
+
|
12
|
+
### Bug Fixes
|
13
|
+
|
14
|
+
- **CodeEditor:** Set default height ([#11014](https://github.com/patternfly/patternfly-react/issues/11014)) ([6ddfc93](https://github.com/patternfly/patternfly-react/commit/6ddfc93376a48028fed46948b08a185e3c9617f6))
|
15
|
+
|
16
|
+
# 6.1.0-prerelease.0 (2024-10-24)
|
17
|
+
|
18
|
+
**Note:** Version bump only for package @patternfly/react-styles
|
19
|
+
|
6
20
|
# 6.0.0 (2024-10-24)
|
7
21
|
|
8
22
|
**Note:** Version bump only for package @patternfly/react-styles
|
@@ -51,9 +51,22 @@
|
|
51
51
|
--pf-v6-c-code-editor__tab-icon--text--MarginInlineStart: var(--pf-t--global--spacer--sm);
|
52
52
|
}
|
53
53
|
|
54
|
+
.pf-v6-c-code-editor {
|
55
|
+
display: flex;
|
56
|
+
flex-direction: column;
|
57
|
+
}
|
54
58
|
.pf-v6-c-code-editor.pf-m-read-only {
|
55
59
|
--pf-v6-c-code-editor__main--BackgroundColor: var(--pf-v6-c-code-editor--m-read-only__main--BackgroundColor);
|
56
60
|
}
|
61
|
+
.pf-v6-c-code-editor.pf-m-full-height {
|
62
|
+
height: 100%;
|
63
|
+
}
|
64
|
+
|
65
|
+
.pf-v6-c-code-editor__container {
|
66
|
+
display: flex;
|
67
|
+
flex-direction: column;
|
68
|
+
flex-grow: 1;
|
69
|
+
}
|
57
70
|
|
58
71
|
.pf-v6-c-code-editor__header {
|
59
72
|
position: relative;
|
@@ -120,6 +133,7 @@
|
|
120
133
|
|
121
134
|
.pf-v6-c-code-editor__main {
|
122
135
|
position: relative;
|
136
|
+
flex-grow: 1;
|
123
137
|
color: var(--pf-v6-c-code-editor__main--Color, inherit);
|
124
138
|
background-color: var(--pf-v6-c-code-editor__main--BackgroundColor);
|
125
139
|
border: var(--pf-v6-c-code-editor__main--BorderWidth) solid;
|
@@ -141,6 +155,7 @@
|
|
141
155
|
|
142
156
|
.pf-v6-c-code-editor__code {
|
143
157
|
position: relative;
|
158
|
+
height: 100%;
|
144
159
|
padding-block-start: var(--pf-v6-c-code-editor__code--PaddingBlockStart);
|
145
160
|
padding-block-end: var(--pf-v6-c-code-editor__code--PaddingBlockEnd);
|
146
161
|
padding-inline-start: var(--pf-v6-c-code-editor__code--PaddingInlineStart);
|
@@ -3,6 +3,7 @@ declare const _default: {
|
|
3
3
|
"codeEditor": "pf-v6-c-code-editor",
|
4
4
|
"codeEditorCode": "pf-v6-c-code-editor__code",
|
5
5
|
"codeEditorCodePre": "pf-v6-c-code-editor__code-pre",
|
6
|
+
"codeEditorContainer": "pf-v6-c-code-editor__container",
|
6
7
|
"codeEditorControls": "pf-v6-c-code-editor__controls",
|
7
8
|
"codeEditorHeader": "pf-v6-c-code-editor__header",
|
8
9
|
"codeEditorHeaderContent": "pf-v6-c-code-editor__header-content",
|
@@ -14,6 +15,7 @@ declare const _default: {
|
|
14
15
|
"codeEditorUpload": "pf-v6-c-code-editor__upload",
|
15
16
|
"modifiers": {
|
16
17
|
"readOnly": "pf-m-read-only",
|
18
|
+
"fullHeight": "pf-m-full-height",
|
17
19
|
"plain": "pf-m-plain",
|
18
20
|
"dragHover": "pf-m-drag-hover"
|
19
21
|
},
|
@@ -5,6 +5,7 @@ exports.default = {
|
|
5
5
|
"codeEditor": "pf-v6-c-code-editor",
|
6
6
|
"codeEditorCode": "pf-v6-c-code-editor__code",
|
7
7
|
"codeEditorCodePre": "pf-v6-c-code-editor__code-pre",
|
8
|
+
"codeEditorContainer": "pf-v6-c-code-editor__container",
|
8
9
|
"codeEditorControls": "pf-v6-c-code-editor__controls",
|
9
10
|
"codeEditorHeader": "pf-v6-c-code-editor__header",
|
10
11
|
"codeEditorHeaderContent": "pf-v6-c-code-editor__header-content",
|
@@ -16,6 +17,7 @@ exports.default = {
|
|
16
17
|
"codeEditorUpload": "pf-v6-c-code-editor__upload",
|
17
18
|
"modifiers": {
|
18
19
|
"readOnly": "pf-m-read-only",
|
20
|
+
"fullHeight": "pf-m-full-height",
|
19
21
|
"plain": "pf-m-plain",
|
20
22
|
"dragHover": "pf-m-drag-hover"
|
21
23
|
},
|
@@ -3,6 +3,7 @@ export default {
|
|
3
3
|
"codeEditor": "pf-v6-c-code-editor",
|
4
4
|
"codeEditorCode": "pf-v6-c-code-editor__code",
|
5
5
|
"codeEditorCodePre": "pf-v6-c-code-editor__code-pre",
|
6
|
+
"codeEditorContainer": "pf-v6-c-code-editor__container",
|
6
7
|
"codeEditorControls": "pf-v6-c-code-editor__controls",
|
7
8
|
"codeEditorHeader": "pf-v6-c-code-editor__header",
|
8
9
|
"codeEditorHeaderContent": "pf-v6-c-code-editor__header-content",
|
@@ -14,6 +15,7 @@ export default {
|
|
14
15
|
"codeEditorUpload": "pf-v6-c-code-editor__upload",
|
15
16
|
"modifiers": {
|
16
17
|
"readOnly": "pf-m-read-only",
|
18
|
+
"fullHeight": "pf-m-full-height",
|
17
19
|
"plain": "pf-m-plain",
|
18
20
|
"dragHover": "pf-m-drag-hover"
|
19
21
|
},
|
@@ -36,6 +36,7 @@
|
|
36
36
|
--pf-v6-c-content--h6--LineHeight: var(--pf-t--global--font--line-height--heading);
|
37
37
|
--pf-v6-c-content--h6--FontSize: var(--pf-t--global--font--size--heading--h6);
|
38
38
|
--pf-v6-c-content--h6--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
39
|
+
--pf-v6-c-content--heading--m-page-title--FontWeight: var(--pf-t--global--font--weight--heading--bold);
|
39
40
|
--pf-v6-c-content--small--MarginBlockEnd: var(--pf-t--global--spacer--md);
|
40
41
|
--pf-v6-c-content--small--LineHeight: var(--pf-t--global--font--line-height--body);
|
41
42
|
--pf-v6-c-content--small--FontSize: var(--pf-t--global--font--size--body--sm);
|
@@ -135,6 +136,14 @@
|
|
135
136
|
.pf-v6-c-content--h6, .pf-v6-c-content h1, .pf-v6-c-content h2, .pf-v6-c-content h3, .pf-v6-c-content h4, .pf-v6-c-content h5, .pf-v6-c-content h6):last-child {
|
136
137
|
margin-block-end: 0;
|
137
138
|
}
|
139
|
+
:is(.pf-v6-c-content--h1,
|
140
|
+
.pf-v6-c-content--h2,
|
141
|
+
.pf-v6-c-content--h3,
|
142
|
+
.pf-v6-c-content--h4,
|
143
|
+
.pf-v6-c-content--h5,
|
144
|
+
.pf-v6-c-content--h6, .pf-v6-c-content h1, .pf-v6-c-content h2, .pf-v6-c-content h3, .pf-v6-c-content h4, .pf-v6-c-content h5, .pf-v6-c-content h6).pf-m-page-title {
|
145
|
+
font-weight: var(--pf-v6-c-content--heading--m-page-title--FontWeight);
|
146
|
+
}
|
138
147
|
|
139
148
|
:is(.pf-v6-c-content--h1, .pf-v6-c-content h1) {
|
140
149
|
margin-block-start: var(--pf-v6-c-content--h1--MarginBlockStart);
|
@@ -1,16 +1,22 @@
|
|
1
1
|
.pf-v6-c-label-group {
|
2
2
|
--pf-v6-c-label-group--RowGap: var(--pf-t--global--spacer--sm);
|
3
3
|
--pf-v6-c-label-group--ColumnGap: var(--pf-t--global--spacer--xs);
|
4
|
+
--pf-v6-c-label-group--MaxWidth: 100%;
|
4
5
|
--pf-v6-c-label-group--m-vertical--RowGap: var(--pf-t--global--spacer--sm);
|
5
6
|
--pf-v6-c-label-group--m-vertical--ColumnGap: var(--pf-t--global--spacer--sm);
|
6
7
|
--pf-v6-c-label-group__main--RowGap: var(--pf-t--global--spacer--xs);
|
7
8
|
--pf-v6-c-label-group__main--ColumnGap: var(--pf-t--global--spacer--sm);
|
9
|
+
--pf-v6-c-label-group__main--MaxWidth: 100%;
|
10
|
+
--pf-v6-c-label-group__main--MinWidth: 0;
|
8
11
|
--pf-v6-c-label-group--m-vertical__main--RowGap: var(--pf-t--global--spacer--sm);
|
9
12
|
--pf-v6-c-label-group--m-vertical__main--ColumnGap: var(--pf-t--global--spacer--xs);
|
10
13
|
--pf-v6-c-label-group__list--RowGap: var(--pf-t--global--spacer--xs);
|
11
14
|
--pf-v6-c-label-group__list--ColumnGap: var(--pf-t--global--spacer--xs);
|
15
|
+
--pf-v6-c-label-group__list--MaxWidth: 100%;
|
16
|
+
--pf-v6-c-label-group__list--MinWidth: 0;
|
12
17
|
--pf-v6-c-label-group--m-vertical__list--RowGap: var(--pf-t--global--spacer--xs);
|
13
18
|
--pf-v6-c-label-group--m-vertical__list--ColumnGap: var(--pf-t--global--spacer--xs);
|
19
|
+
--pf-v6-c-label-group__list-item--MaxWidth: 100%;
|
14
20
|
--pf-v6-c-label-group--m-category--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
15
21
|
--pf-v6-c-label-group--m-category--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
16
22
|
--pf-v6-c-label-group--m-category--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
@@ -37,6 +43,7 @@
|
|
37
43
|
row-gap: var(--pf-v6-c-label-group--RowGap);
|
38
44
|
column-gap: var(--pf-v6-c-label-group--ColumnGap);
|
39
45
|
align-items: center;
|
46
|
+
max-width: var(--pf-v6-c-label-group--MaxWidth);
|
40
47
|
}
|
41
48
|
.pf-v6-c-label-group.pf-m-category {
|
42
49
|
padding-block-start: var(--pf-v6-c-label-group--m-category--PaddingBlockStart);
|
@@ -62,9 +69,11 @@
|
|
62
69
|
.pf-v6-c-label-group.pf-m-vertical .pf-v6-c-label-group__list {
|
63
70
|
flex-direction: column;
|
64
71
|
align-items: flex-start;
|
72
|
+
max-width: var(--pf-v6-c-label-group__list--MaxWidth);
|
65
73
|
}
|
66
74
|
.pf-v6-c-label-group.pf-m-vertical .pf-v6-c-label-group__main {
|
67
75
|
flex-direction: column;
|
76
|
+
min-width: var(--pf-v6-c-label-group__main--MinWidth);
|
68
77
|
}
|
69
78
|
.pf-v6-c-label-group.pf-m-editable,
|
70
79
|
.pf-v6-c-label-group.pf-m-editable .pf-v6-c-label-group__main,
|
@@ -85,6 +94,7 @@
|
|
85
94
|
row-gap: var(--pf-v6-c-label-group__main--RowGap);
|
86
95
|
column-gap: var(--pf-v6-c-label-group__main--ColumnGap);
|
87
96
|
align-items: baseline;
|
97
|
+
min-width: var(--pf-v6-c-label-group__main--MinWidth);
|
88
98
|
}
|
89
99
|
|
90
100
|
.pf-v6-c-label-group__list {
|
@@ -92,10 +102,12 @@
|
|
92
102
|
flex-wrap: wrap;
|
93
103
|
row-gap: var(--pf-v6-c-label-group__list--RowGap);
|
94
104
|
column-gap: var(--pf-v6-c-label-group__list--ColumnGap);
|
105
|
+
min-width: var(--pf-v6-c-label-group__list--MinWidth);
|
95
106
|
}
|
96
107
|
|
97
108
|
.pf-v6-c-label-group__list-item {
|
98
109
|
display: inline-flex;
|
110
|
+
max-width: var(--pf-v6-c-label-group__list-item--MaxWidth);
|
99
111
|
}
|
100
112
|
|
101
113
|
.pf-v6-c-label-group__label {
|
@@ -4,6 +4,7 @@
|
|
4
4
|
--pf-v6-c-label--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
5
5
|
--pf-v6-c-label--PaddingInlineStart: var(--pf-t--global--spacer--sm);
|
6
6
|
--pf-v6-c-label--MaxWidth: 100%;
|
7
|
+
--pf-v6-c-label--MinWidth: 3em;
|
7
8
|
--pf-v6-c-label--BorderWidth: 0;
|
8
9
|
--pf-v6-c-label--BorderColor: transparent;
|
9
10
|
--pf-v6-c-label--BorderRadius: var(--pf-t--global--border--radius--pill);
|
@@ -193,6 +194,7 @@
|
|
193
194
|
|
194
195
|
.pf-v6-c-label {
|
195
196
|
position: relative;
|
197
|
+
min-width: var(--pf-v6-c-label--MinWidth);
|
196
198
|
max-width: var(--pf-v6-c-label--MaxWidth);
|
197
199
|
padding-block-start: var(--pf-v6-c-label--PaddingBlockStart);
|
198
200
|
padding-block-end: var(--pf-v6-c-label--PaddingBlockEnd);
|
@@ -383,13 +383,6 @@
|
|
383
383
|
flex-wrap: nowrap;
|
384
384
|
}
|
385
385
|
|
386
|
-
.pf-v6-c-menu-toggle__controls,
|
387
|
-
.pf-v6-c-menu-toggle__toggle-icon {
|
388
|
-
display: flex;
|
389
|
-
align-items: center;
|
390
|
-
justify-content: center;
|
391
|
-
}
|
392
|
-
|
393
386
|
.pf-v6-c-menu-toggle__icon {
|
394
387
|
flex-shrink: 0;
|
395
388
|
}
|
@@ -401,7 +394,10 @@
|
|
401
394
|
}
|
402
395
|
|
403
396
|
.pf-v6-c-menu-toggle__controls {
|
397
|
+
display: flex;
|
404
398
|
gap: var(--pf-v6-c-menu-toggle__controls--Gap);
|
399
|
+
align-items: center;
|
400
|
+
justify-content: center;
|
405
401
|
margin-inline-start: auto;
|
406
402
|
}
|
407
403
|
|
@@ -65,11 +65,13 @@
|
|
65
65
|
--pf-v6-c-page__main-subnav--PaddingBlockEnd: 0;
|
66
66
|
--pf-v6-c-page__main-subnav--PaddingInlineStart: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
|
67
67
|
--pf-v6-c-page__main-subnav--PaddingInlineEnd: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
|
68
|
+
--pf-v6-c-page__main-subnav--m-sticky-top--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
68
69
|
--pf-v6-c-page__main-breadcrumb--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
69
70
|
--pf-v6-c-page__main-breadcrumb--PaddingInlineEnd: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
|
70
71
|
--pf-v6-c-page__main-breadcrumb--PaddingBlockEnd: 0;
|
71
72
|
--pf-v6-c-page__main-breadcrumb--PaddingInlineStart: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
|
72
73
|
--pf-v6-c-page__main-breadcrumb--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
74
|
+
--pf-v6-c-page__main-breadcrumb--m-sticky-top--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
73
75
|
--pf-v6-c-page__main-tabs--PaddingBlockStart: 0;
|
74
76
|
--pf-v6-c-page__main-tabs--PaddingInlineEnd: 0;
|
75
77
|
--pf-v6-c-page__main-tabs--PaddingBlockEnd: 0;
|
@@ -451,6 +453,9 @@
|
|
451
453
|
padding-inline-end: var(--pf-v6-c-page__main-subnav--PaddingInlineEnd);
|
452
454
|
background-color: var(--pf-v6-c-page__main-subnav--BackgroundColor);
|
453
455
|
}
|
456
|
+
.pf-v6-c-page__main-subnav.pf-m-sticky-top {
|
457
|
+
padding-block-end: var(--pf-v6-c-page__main-subnav--m-sticky-top--PaddingBlockEnd);
|
458
|
+
}
|
454
459
|
|
455
460
|
.pf-v6-c-page__main-breadcrumb {
|
456
461
|
padding-block-start: var(--pf-v6-c-page__main-breadcrumb--PaddingBlockStart);
|
@@ -355,7 +355,7 @@
|
|
355
355
|
--pf-v6-c-table--cell--Width: auto;
|
356
356
|
}
|
357
357
|
|
358
|
-
@media screen and (max-width: 48rem) {
|
358
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
359
359
|
.pf-m-grid-md.pf-v6-c-table {
|
360
360
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
361
361
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
@@ -625,14 +625,14 @@
|
|
625
625
|
text-align: end;
|
626
626
|
}
|
627
627
|
}
|
628
|
-
@media screen and (max-width: 48rem) and (max-width: 36rem) {
|
628
|
+
@media screen and (max-width: calc(48rem - 1px)) and (max-width: 36rem) {
|
629
629
|
.pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__action {
|
630
630
|
grid-row-start: 1;
|
631
631
|
grid-column-start: 2;
|
632
632
|
margin-inline-start: 0;
|
633
633
|
}
|
634
634
|
}
|
635
|
-
@media screen and (max-width: 48rem) {
|
635
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
636
636
|
.pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
637
637
|
grid-column: 2;
|
638
638
|
grid-row: 2;
|
@@ -658,7 +658,7 @@
|
|
658
658
|
}
|
659
659
|
}
|
660
660
|
|
661
|
-
@media screen and (max-width: 62rem) {
|
661
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
662
662
|
.pf-m-grid-lg.pf-v6-c-table {
|
663
663
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
664
664
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
@@ -928,14 +928,14 @@
|
|
928
928
|
text-align: end;
|
929
929
|
}
|
930
930
|
}
|
931
|
-
@media screen and (max-width: 62rem) and (max-width: 36rem) {
|
931
|
+
@media screen and (max-width: calc(62rem - 1px)) and (max-width: 36rem) {
|
932
932
|
.pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__action {
|
933
933
|
grid-row-start: 1;
|
934
934
|
grid-column-start: 2;
|
935
935
|
margin-inline-start: 0;
|
936
936
|
}
|
937
937
|
}
|
938
|
-
@media screen and (max-width: 62rem) {
|
938
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
939
939
|
.pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
940
940
|
grid-column: 2;
|
941
941
|
grid-row: 2;
|
@@ -961,7 +961,7 @@
|
|
961
961
|
}
|
962
962
|
}
|
963
963
|
|
964
|
-
@media screen and (max-width: 75rem) {
|
964
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
965
965
|
.pf-m-grid-xl.pf-v6-c-table {
|
966
966
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
967
967
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
@@ -1231,14 +1231,14 @@
|
|
1231
1231
|
text-align: end;
|
1232
1232
|
}
|
1233
1233
|
}
|
1234
|
-
@media screen and (max-width: 75rem) and (max-width: 36rem) {
|
1234
|
+
@media screen and (max-width: calc(75rem - 1px)) and (max-width: 36rem) {
|
1235
1235
|
.pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__action {
|
1236
1236
|
grid-row-start: 1;
|
1237
1237
|
grid-column-start: 2;
|
1238
1238
|
margin-inline-start: 0;
|
1239
1239
|
}
|
1240
1240
|
}
|
1241
|
-
@media screen and (max-width: 75rem) {
|
1241
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
1242
1242
|
.pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
1243
1243
|
grid-column: 2;
|
1244
1244
|
grid-row: 2;
|
@@ -1264,7 +1264,7 @@
|
|
1264
1264
|
}
|
1265
1265
|
}
|
1266
1266
|
|
1267
|
-
@media screen and (max-width: 90.625rem) {
|
1267
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
1268
1268
|
.pf-m-grid-2xl.pf-v6-c-table {
|
1269
1269
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
1270
1270
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
@@ -1534,14 +1534,14 @@
|
|
1534
1534
|
text-align: end;
|
1535
1535
|
}
|
1536
1536
|
}
|
1537
|
-
@media screen and (max-width: 90.625rem) and (max-width: 36rem) {
|
1537
|
+
@media screen and (max-width: calc(90.625rem - 1px)) and (max-width: 36rem) {
|
1538
1538
|
.pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__action {
|
1539
1539
|
grid-row-start: 1;
|
1540
1540
|
grid-column-start: 2;
|
1541
1541
|
margin-inline-start: 0;
|
1542
1542
|
}
|
1543
1543
|
}
|
1544
|
-
@media screen and (max-width: 90.625rem) {
|
1544
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
1545
1545
|
.pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
1546
1546
|
grid-column: 2;
|
1547
1547
|
grid-row: 2;
|
@@ -246,7 +246,7 @@
|
|
246
246
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingInlineStart: calc(var(--pf-v6-c-table__tree-view-main--nested-indent--base) * 9 + var(--pf-v6-c-table__tree-view-main--indent--base));
|
247
247
|
}
|
248
248
|
|
249
|
-
@media screen and (max-width: 48rem) {
|
249
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
250
250
|
.pf-m-tree-view-grid-md.pf-v6-c-table {
|
251
251
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
252
252
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
@@ -389,7 +389,7 @@
|
|
389
389
|
}
|
390
390
|
}
|
391
391
|
|
392
|
-
@media screen and (max-width: 62rem) {
|
392
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
393
393
|
.pf-m-tree-view-grid-lg.pf-v6-c-table {
|
394
394
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
395
395
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
@@ -532,7 +532,7 @@
|
|
532
532
|
}
|
533
533
|
}
|
534
534
|
|
535
|
-
@media screen and (max-width: 75rem) {
|
535
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
536
536
|
.pf-m-tree-view-grid-xl.pf-v6-c-table {
|
537
537
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
538
538
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
@@ -675,7 +675,7 @@
|
|
675
675
|
}
|
676
676
|
}
|
677
677
|
|
678
|
-
@media screen and (max-width: 90.625rem) {
|
678
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
679
679
|
.pf-m-tree-view-grid-2xl.pf-v6-c-table {
|
680
680
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
681
681
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
@@ -36,6 +36,7 @@
|
|
36
36
|
--pf-v6-c-title--m-h6--LineHeight: var(--pf-t--global--font--line-height--heading);
|
37
37
|
--pf-v6-c-title--m-h6--FontSize: var(--pf-t--global--font--size--heading--h6);
|
38
38
|
--pf-v6-c-title--m-h6--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
39
|
+
--pf-v6-c-title--m-page-title--FontWeight: var(--pf-t--global--font--weight--heading--bold);
|
39
40
|
}
|
40
41
|
|
41
42
|
.pf-v6-c-title {
|
@@ -101,4 +102,7 @@
|
|
101
102
|
font-size: var(--pf-v6-c-title--m-h6--FontSize);
|
102
103
|
font-weight: var(--pf-v6-c-title--m-h6--FontWeight);
|
103
104
|
line-height: var(--pf-v6-c-title--m-h6--LineHeight);
|
105
|
+
}
|
106
|
+
.pf-v6-c-title.pf-m-page-title {
|
107
|
+
font-weight: var(--pf-v6-c-title--m-page-title--FontWeight);
|
104
108
|
}
|
@@ -82,7 +82,7 @@
|
|
82
82
|
--pf-v6-c-wizard__toggle-separator--Color: var(--pf-t--global--border--color--default);
|
83
83
|
--pf-v6-c-wizard__toggle-icon--LineHeight: var(--pf-t--global--font--line-height--body);
|
84
84
|
--pf-v6-c-wizard__toggle--m-expanded__toggle-icon--Rotate: 180deg;
|
85
|
-
--pf-v6-c-wizard__nav--ZIndex: var(--pf-t--global--z-index--
|
85
|
+
--pf-v6-c-wizard__nav--ZIndex: var(--pf-t--global--z-index--sm);
|
86
86
|
--pf-v6-c-wizard__nav--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
87
87
|
--pf-v6-c-wizard__nav--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
|
88
88
|
--pf-v6-c-wizard__nav--Width: 100%;
|
@@ -2805,9 +2805,22 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
2805
2805
|
--pf-v6-c-code-editor__tab-icon--text--MarginInlineStart: var(--pf-t--global--spacer--sm);
|
2806
2806
|
}
|
2807
2807
|
|
2808
|
+
.pf-v6-c-code-editor {
|
2809
|
+
display: flex;
|
2810
|
+
flex-direction: column;
|
2811
|
+
}
|
2808
2812
|
.pf-v6-c-code-editor.pf-m-read-only {
|
2809
2813
|
--pf-v6-c-code-editor__main--BackgroundColor: var(--pf-v6-c-code-editor--m-read-only__main--BackgroundColor);
|
2810
2814
|
}
|
2815
|
+
.pf-v6-c-code-editor.pf-m-full-height {
|
2816
|
+
height: 100%;
|
2817
|
+
}
|
2818
|
+
|
2819
|
+
.pf-v6-c-code-editor__container {
|
2820
|
+
display: flex;
|
2821
|
+
flex-direction: column;
|
2822
|
+
flex-grow: 1;
|
2823
|
+
}
|
2811
2824
|
|
2812
2825
|
.pf-v6-c-code-editor__header {
|
2813
2826
|
position: relative;
|
@@ -2874,6 +2887,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
2874
2887
|
|
2875
2888
|
.pf-v6-c-code-editor__main {
|
2876
2889
|
position: relative;
|
2890
|
+
flex-grow: 1;
|
2877
2891
|
color: var(--pf-v6-c-code-editor__main--Color, inherit);
|
2878
2892
|
background-color: var(--pf-v6-c-code-editor__main--BackgroundColor);
|
2879
2893
|
border: var(--pf-v6-c-code-editor__main--BorderWidth) solid;
|
@@ -2895,6 +2909,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
2895
2909
|
|
2896
2910
|
.pf-v6-c-code-editor__code {
|
2897
2911
|
position: relative;
|
2912
|
+
height: 100%;
|
2898
2913
|
padding-block-start: var(--pf-v6-c-code-editor__code--PaddingBlockStart);
|
2899
2914
|
padding-block-end: var(--pf-v6-c-code-editor__code--PaddingBlockEnd);
|
2900
2915
|
padding-inline-start: var(--pf-v6-c-code-editor__code--PaddingInlineStart);
|
@@ -2967,6 +2982,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
2967
2982
|
--pf-v6-c-content--h6--LineHeight: var(--pf-t--global--font--line-height--heading);
|
2968
2983
|
--pf-v6-c-content--h6--FontSize: var(--pf-t--global--font--size--heading--h6);
|
2969
2984
|
--pf-v6-c-content--h6--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
2985
|
+
--pf-v6-c-content--heading--m-page-title--FontWeight: var(--pf-t--global--font--weight--heading--bold);
|
2970
2986
|
--pf-v6-c-content--small--MarginBlockEnd: var(--pf-t--global--spacer--md);
|
2971
2987
|
--pf-v6-c-content--small--LineHeight: var(--pf-t--global--font--line-height--body);
|
2972
2988
|
--pf-v6-c-content--small--FontSize: var(--pf-t--global--font--size--body--sm);
|
@@ -3066,6 +3082,14 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
3066
3082
|
.pf-v6-c-content--h6, .pf-v6-c-content h1, .pf-v6-c-content h2, .pf-v6-c-content h3, .pf-v6-c-content h4, .pf-v6-c-content h5, .pf-v6-c-content h6):last-child {
|
3067
3083
|
margin-block-end: 0;
|
3068
3084
|
}
|
3085
|
+
:is(.pf-v6-c-content--h1,
|
3086
|
+
.pf-v6-c-content--h2,
|
3087
|
+
.pf-v6-c-content--h3,
|
3088
|
+
.pf-v6-c-content--h4,
|
3089
|
+
.pf-v6-c-content--h5,
|
3090
|
+
.pf-v6-c-content--h6, .pf-v6-c-content h1, .pf-v6-c-content h2, .pf-v6-c-content h3, .pf-v6-c-content h4, .pf-v6-c-content h5, .pf-v6-c-content h6).pf-m-page-title {
|
3091
|
+
font-weight: var(--pf-v6-c-content--heading--m-page-title--FontWeight);
|
3092
|
+
}
|
3069
3093
|
|
3070
3094
|
:is(.pf-v6-c-content--h1, .pf-v6-c-content h1) {
|
3071
3095
|
margin-block-start: var(--pf-v6-c-content--h1--MarginBlockStart);
|
@@ -7836,6 +7860,7 @@ label.pf-v6-c-input-group__text {
|
|
7836
7860
|
--pf-v6-c-label--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
7837
7861
|
--pf-v6-c-label--PaddingInlineStart: var(--pf-t--global--spacer--sm);
|
7838
7862
|
--pf-v6-c-label--MaxWidth: 100%;
|
7863
|
+
--pf-v6-c-label--MinWidth: 3em;
|
7839
7864
|
--pf-v6-c-label--BorderWidth: 0;
|
7840
7865
|
--pf-v6-c-label--BorderColor: transparent;
|
7841
7866
|
--pf-v6-c-label--BorderRadius: var(--pf-t--global--border--radius--pill);
|
@@ -8025,6 +8050,7 @@ label.pf-v6-c-input-group__text {
|
|
8025
8050
|
|
8026
8051
|
.pf-v6-c-label {
|
8027
8052
|
position: relative;
|
8053
|
+
min-width: var(--pf-v6-c-label--MinWidth);
|
8028
8054
|
max-width: var(--pf-v6-c-label--MaxWidth);
|
8029
8055
|
padding-block-start: var(--pf-v6-c-label--PaddingBlockStart);
|
8030
8056
|
padding-block-end: var(--pf-v6-c-label--PaddingBlockEnd);
|
@@ -8327,16 +8353,22 @@ input.pf-v6-c-label__content {
|
|
8327
8353
|
.pf-v6-c-label-group {
|
8328
8354
|
--pf-v6-c-label-group--RowGap: var(--pf-t--global--spacer--sm);
|
8329
8355
|
--pf-v6-c-label-group--ColumnGap: var(--pf-t--global--spacer--xs);
|
8356
|
+
--pf-v6-c-label-group--MaxWidth: 100%;
|
8330
8357
|
--pf-v6-c-label-group--m-vertical--RowGap: var(--pf-t--global--spacer--sm);
|
8331
8358
|
--pf-v6-c-label-group--m-vertical--ColumnGap: var(--pf-t--global--spacer--sm);
|
8332
8359
|
--pf-v6-c-label-group__main--RowGap: var(--pf-t--global--spacer--xs);
|
8333
8360
|
--pf-v6-c-label-group__main--ColumnGap: var(--pf-t--global--spacer--sm);
|
8361
|
+
--pf-v6-c-label-group__main--MaxWidth: 100%;
|
8362
|
+
--pf-v6-c-label-group__main--MinWidth: 0;
|
8334
8363
|
--pf-v6-c-label-group--m-vertical__main--RowGap: var(--pf-t--global--spacer--sm);
|
8335
8364
|
--pf-v6-c-label-group--m-vertical__main--ColumnGap: var(--pf-t--global--spacer--xs);
|
8336
8365
|
--pf-v6-c-label-group__list--RowGap: var(--pf-t--global--spacer--xs);
|
8337
8366
|
--pf-v6-c-label-group__list--ColumnGap: var(--pf-t--global--spacer--xs);
|
8367
|
+
--pf-v6-c-label-group__list--MaxWidth: 100%;
|
8368
|
+
--pf-v6-c-label-group__list--MinWidth: 0;
|
8338
8369
|
--pf-v6-c-label-group--m-vertical__list--RowGap: var(--pf-t--global--spacer--xs);
|
8339
8370
|
--pf-v6-c-label-group--m-vertical__list--ColumnGap: var(--pf-t--global--spacer--xs);
|
8371
|
+
--pf-v6-c-label-group__list-item--MaxWidth: 100%;
|
8340
8372
|
--pf-v6-c-label-group--m-category--PaddingBlockStart: var(--pf-t--global--spacer--xs);
|
8341
8373
|
--pf-v6-c-label-group--m-category--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
|
8342
8374
|
--pf-v6-c-label-group--m-category--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
|
@@ -8363,6 +8395,7 @@ input.pf-v6-c-label__content {
|
|
8363
8395
|
row-gap: var(--pf-v6-c-label-group--RowGap);
|
8364
8396
|
column-gap: var(--pf-v6-c-label-group--ColumnGap);
|
8365
8397
|
align-items: center;
|
8398
|
+
max-width: var(--pf-v6-c-label-group--MaxWidth);
|
8366
8399
|
}
|
8367
8400
|
.pf-v6-c-label-group.pf-m-category {
|
8368
8401
|
padding-block-start: var(--pf-v6-c-label-group--m-category--PaddingBlockStart);
|
@@ -8388,9 +8421,11 @@ input.pf-v6-c-label__content {
|
|
8388
8421
|
.pf-v6-c-label-group.pf-m-vertical .pf-v6-c-label-group__list {
|
8389
8422
|
flex-direction: column;
|
8390
8423
|
align-items: flex-start;
|
8424
|
+
max-width: var(--pf-v6-c-label-group__list--MaxWidth);
|
8391
8425
|
}
|
8392
8426
|
.pf-v6-c-label-group.pf-m-vertical .pf-v6-c-label-group__main {
|
8393
8427
|
flex-direction: column;
|
8428
|
+
min-width: var(--pf-v6-c-label-group__main--MinWidth);
|
8394
8429
|
}
|
8395
8430
|
.pf-v6-c-label-group.pf-m-editable,
|
8396
8431
|
.pf-v6-c-label-group.pf-m-editable .pf-v6-c-label-group__main,
|
@@ -8411,6 +8446,7 @@ input.pf-v6-c-label__content {
|
|
8411
8446
|
row-gap: var(--pf-v6-c-label-group__main--RowGap);
|
8412
8447
|
column-gap: var(--pf-v6-c-label-group__main--ColumnGap);
|
8413
8448
|
align-items: baseline;
|
8449
|
+
min-width: var(--pf-v6-c-label-group__main--MinWidth);
|
8414
8450
|
}
|
8415
8451
|
|
8416
8452
|
.pf-v6-c-label-group__list {
|
@@ -8418,10 +8454,12 @@ input.pf-v6-c-label__content {
|
|
8418
8454
|
flex-wrap: wrap;
|
8419
8455
|
row-gap: var(--pf-v6-c-label-group__list--RowGap);
|
8420
8456
|
column-gap: var(--pf-v6-c-label-group__list--ColumnGap);
|
8457
|
+
min-width: var(--pf-v6-c-label-group__list--MinWidth);
|
8421
8458
|
}
|
8422
8459
|
|
8423
8460
|
.pf-v6-c-label-group__list-item {
|
8424
8461
|
display: inline-flex;
|
8462
|
+
max-width: var(--pf-v6-c-label-group__list-item--MaxWidth);
|
8425
8463
|
}
|
8426
8464
|
|
8427
8465
|
.pf-v6-c-label-group__label {
|
@@ -10283,13 +10321,6 @@ ul.pf-v6-c-list {
|
|
10283
10321
|
flex-wrap: nowrap;
|
10284
10322
|
}
|
10285
10323
|
|
10286
|
-
.pf-v6-c-menu-toggle__controls,
|
10287
|
-
.pf-v6-c-menu-toggle__toggle-icon {
|
10288
|
-
display: flex;
|
10289
|
-
align-items: center;
|
10290
|
-
justify-content: center;
|
10291
|
-
}
|
10292
|
-
|
10293
10324
|
.pf-v6-c-menu-toggle__icon {
|
10294
10325
|
flex-shrink: 0;
|
10295
10326
|
}
|
@@ -10301,7 +10332,10 @@ ul.pf-v6-c-list {
|
|
10301
10332
|
}
|
10302
10333
|
|
10303
10334
|
.pf-v6-c-menu-toggle__controls {
|
10335
|
+
display: flex;
|
10304
10336
|
gap: var(--pf-v6-c-menu-toggle__controls--Gap);
|
10337
|
+
align-items: center;
|
10338
|
+
justify-content: center;
|
10305
10339
|
margin-inline-start: auto;
|
10306
10340
|
}
|
10307
10341
|
|
@@ -11416,11 +11450,13 @@ ul.pf-v6-c-list {
|
|
11416
11450
|
--pf-v6-c-page__main-subnav--PaddingBlockEnd: 0;
|
11417
11451
|
--pf-v6-c-page__main-subnav--PaddingInlineStart: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
|
11418
11452
|
--pf-v6-c-page__main-subnav--PaddingInlineEnd: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
|
11453
|
+
--pf-v6-c-page__main-subnav--m-sticky-top--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
11419
11454
|
--pf-v6-c-page__main-breadcrumb--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
11420
11455
|
--pf-v6-c-page__main-breadcrumb--PaddingInlineEnd: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
|
11421
11456
|
--pf-v6-c-page__main-breadcrumb--PaddingBlockEnd: 0;
|
11422
11457
|
--pf-v6-c-page__main-breadcrumb--PaddingInlineStart: calc(var(--pf-t--global--spacer--lg) - var(--pf-v6-c-page__main-container--BorderWidth));
|
11423
11458
|
--pf-v6-c-page__main-breadcrumb--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
11459
|
+
--pf-v6-c-page__main-breadcrumb--m-sticky-top--PaddingBlockEnd: var(--pf-t--global--spacer--md);
|
11424
11460
|
--pf-v6-c-page__main-tabs--PaddingBlockStart: 0;
|
11425
11461
|
--pf-v6-c-page__main-tabs--PaddingInlineEnd: 0;
|
11426
11462
|
--pf-v6-c-page__main-tabs--PaddingBlockEnd: 0;
|
@@ -11802,6 +11838,9 @@ ul.pf-v6-c-list {
|
|
11802
11838
|
padding-inline-end: var(--pf-v6-c-page__main-subnav--PaddingInlineEnd);
|
11803
11839
|
background-color: var(--pf-v6-c-page__main-subnav--BackgroundColor);
|
11804
11840
|
}
|
11841
|
+
.pf-v6-c-page__main-subnav.pf-m-sticky-top {
|
11842
|
+
padding-block-end: var(--pf-v6-c-page__main-subnav--m-sticky-top--PaddingBlockEnd);
|
11843
|
+
}
|
11805
11844
|
|
11806
11845
|
.pf-v6-c-page__main-breadcrumb {
|
11807
11846
|
padding-block-start: var(--pf-v6-c-page__main-breadcrumb--PaddingBlockStart);
|
@@ -14922,7 +14961,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
14922
14961
|
--pf-v6-c-table--cell--Width: auto;
|
14923
14962
|
}
|
14924
14963
|
|
14925
|
-
@media screen and (max-width: 48rem) {
|
14964
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
14926
14965
|
.pf-m-grid-md.pf-v6-c-table {
|
14927
14966
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
14928
14967
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
@@ -15192,14 +15231,14 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
15192
15231
|
text-align: end;
|
15193
15232
|
}
|
15194
15233
|
}
|
15195
|
-
@media screen and (max-width: 48rem) and (max-width: 36rem) {
|
15234
|
+
@media screen and (max-width: calc(48rem - 1px)) and (max-width: 36rem) {
|
15196
15235
|
.pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__action {
|
15197
15236
|
grid-row-start: 1;
|
15198
15237
|
grid-column-start: 2;
|
15199
15238
|
margin-inline-start: 0;
|
15200
15239
|
}
|
15201
15240
|
}
|
15202
|
-
@media screen and (max-width: 48rem) {
|
15241
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
15203
15242
|
.pf-m-grid-md.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
15204
15243
|
grid-column: 2;
|
15205
15244
|
grid-row: 2;
|
@@ -15225,7 +15264,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
15225
15264
|
}
|
15226
15265
|
}
|
15227
15266
|
|
15228
|
-
@media screen and (max-width: 62rem) {
|
15267
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
15229
15268
|
.pf-m-grid-lg.pf-v6-c-table {
|
15230
15269
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
15231
15270
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
@@ -15495,14 +15534,14 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
15495
15534
|
text-align: end;
|
15496
15535
|
}
|
15497
15536
|
}
|
15498
|
-
@media screen and (max-width: 62rem) and (max-width: 36rem) {
|
15537
|
+
@media screen and (max-width: calc(62rem - 1px)) and (max-width: 36rem) {
|
15499
15538
|
.pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__action {
|
15500
15539
|
grid-row-start: 1;
|
15501
15540
|
grid-column-start: 2;
|
15502
15541
|
margin-inline-start: 0;
|
15503
15542
|
}
|
15504
15543
|
}
|
15505
|
-
@media screen and (max-width: 62rem) {
|
15544
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
15506
15545
|
.pf-m-grid-lg.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
15507
15546
|
grid-column: 2;
|
15508
15547
|
grid-row: 2;
|
@@ -15528,7 +15567,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
15528
15567
|
}
|
15529
15568
|
}
|
15530
15569
|
|
15531
|
-
@media screen and (max-width: 75rem) {
|
15570
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
15532
15571
|
.pf-m-grid-xl.pf-v6-c-table {
|
15533
15572
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
15534
15573
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
@@ -15798,14 +15837,14 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
15798
15837
|
text-align: end;
|
15799
15838
|
}
|
15800
15839
|
}
|
15801
|
-
@media screen and (max-width: 75rem) and (max-width: 36rem) {
|
15840
|
+
@media screen and (max-width: calc(75rem - 1px)) and (max-width: 36rem) {
|
15802
15841
|
.pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__action {
|
15803
15842
|
grid-row-start: 1;
|
15804
15843
|
grid-column-start: 2;
|
15805
15844
|
margin-inline-start: 0;
|
15806
15845
|
}
|
15807
15846
|
}
|
15808
|
-
@media screen and (max-width: 75rem) {
|
15847
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
15809
15848
|
.pf-m-grid-xl.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
15810
15849
|
grid-column: 2;
|
15811
15850
|
grid-row: 2;
|
@@ -15831,7 +15870,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
15831
15870
|
}
|
15832
15871
|
}
|
15833
15872
|
|
15834
|
-
@media screen and (max-width: 90.625rem) {
|
15873
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
15835
15874
|
.pf-m-grid-2xl.pf-v6-c-table {
|
15836
15875
|
--pf-v6-c-table--cell--PaddingBlockStart: var(--pf-v6-c-table--m-grid--cell--PaddingBlockStart);
|
15837
15876
|
--pf-v6-c-table--cell--PaddingInlineEnd: var(--pf-v6-c-table--m-grid--cell--PaddingInlineEnd);
|
@@ -16101,14 +16140,14 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
16101
16140
|
text-align: end;
|
16102
16141
|
}
|
16103
16142
|
}
|
16104
|
-
@media screen and (max-width: 90.625rem) and (max-width: 36rem) {
|
16143
|
+
@media screen and (max-width: calc(90.625rem - 1px)) and (max-width: 36rem) {
|
16105
16144
|
.pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__action {
|
16106
16145
|
grid-row-start: 1;
|
16107
16146
|
grid-column-start: 2;
|
16108
16147
|
margin-inline-start: 0;
|
16109
16148
|
}
|
16110
16149
|
}
|
16111
|
-
@media screen and (max-width: 90.625rem) {
|
16150
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
16112
16151
|
.pf-m-grid-2xl.pf-v6-c-table .pf-v6-c-table__inline-edit-action {
|
16113
16152
|
grid-column: 2;
|
16114
16153
|
grid-row: 2;
|
@@ -16662,6 +16701,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
|
|
16662
16701
|
.pf-v6-c-table .pf-v6-c-table__draggable {
|
16663
16702
|
--pf-v6-c-table--cell--MinWidth: 0;
|
16664
16703
|
--pf-v6-c-table--cell--Width: 1%;
|
16704
|
+
max-width: none;
|
16665
16705
|
}
|
16666
16706
|
|
16667
16707
|
.pf-v6-c-table .pf-v6-c-table__favorite {
|
@@ -17310,7 +17350,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
17310
17350
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingInlineStart: calc(var(--pf-v6-c-table__tree-view-main--nested-indent--base) * 9 + var(--pf-v6-c-table__tree-view-main--indent--base));
|
17311
17351
|
}
|
17312
17352
|
|
17313
|
-
@media screen and (max-width: 48rem) {
|
17353
|
+
@media screen and (max-width: calc(48rem - 1px)) {
|
17314
17354
|
.pf-m-tree-view-grid-md.pf-v6-c-table {
|
17315
17355
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
17316
17356
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
@@ -17453,7 +17493,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
17453
17493
|
}
|
17454
17494
|
}
|
17455
17495
|
|
17456
|
-
@media screen and (max-width: 62rem) {
|
17496
|
+
@media screen and (max-width: calc(62rem - 1px)) {
|
17457
17497
|
.pf-m-tree-view-grid-lg.pf-v6-c-table {
|
17458
17498
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
17459
17499
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
@@ -17596,7 +17636,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
17596
17636
|
}
|
17597
17637
|
}
|
17598
17638
|
|
17599
|
-
@media screen and (max-width: 75rem) {
|
17639
|
+
@media screen and (max-width: calc(75rem - 1px)) {
|
17600
17640
|
.pf-m-tree-view-grid-xl.pf-v6-c-table {
|
17601
17641
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
17602
17642
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
@@ -17739,7 +17779,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
17739
17779
|
}
|
17740
17780
|
}
|
17741
17781
|
|
17742
|
-
@media screen and (max-width: 90.625rem) {
|
17782
|
+
@media screen and (max-width: calc(90.625rem - 1px)) {
|
17743
17783
|
.pf-m-tree-view-grid-2xl.pf-v6-c-table {
|
17744
17784
|
--pf-v6-c-table--m-tree-view-grid--tr--OutlineOffset: calc(-1 * var(--pf-t--global--spacer--xs));
|
17745
17785
|
--pf-v6-c-table--m-tree-view-grid__tbody--cell--PaddingBlockStart: var(--pf-t--global--spacer--md);
|
@@ -19067,6 +19107,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
19067
19107
|
--pf-v6-c-title--m-h6--LineHeight: var(--pf-t--global--font--line-height--heading);
|
19068
19108
|
--pf-v6-c-title--m-h6--FontSize: var(--pf-t--global--font--size--heading--h6);
|
19069
19109
|
--pf-v6-c-title--m-h6--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
19110
|
+
--pf-v6-c-title--m-page-title--FontWeight: var(--pf-t--global--font--weight--heading--bold);
|
19070
19111
|
}
|
19071
19112
|
|
19072
19113
|
.pf-v6-c-title {
|
@@ -19133,6 +19174,9 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
19133
19174
|
font-weight: var(--pf-v6-c-title--m-h6--FontWeight);
|
19134
19175
|
line-height: var(--pf-v6-c-title--m-h6--LineHeight);
|
19135
19176
|
}
|
19177
|
+
.pf-v6-c-title.pf-m-page-title {
|
19178
|
+
font-weight: var(--pf-v6-c-title--m-page-title--FontWeight);
|
19179
|
+
}
|
19136
19180
|
|
19137
19181
|
.pf-v6-c-toggle-group {
|
19138
19182
|
--pf-v6-c-toggle-group__button--PaddingBlockStart: var(--pf-t--global--spacer--sm);
|
@@ -21904,7 +21948,7 @@ label.pf-v6-c-tree-view__node-text {
|
|
21904
21948
|
--pf-v6-c-wizard__toggle-separator--Color: var(--pf-t--global--border--color--default);
|
21905
21949
|
--pf-v6-c-wizard__toggle-icon--LineHeight: var(--pf-t--global--font--line-height--body);
|
21906
21950
|
--pf-v6-c-wizard__toggle--m-expanded__toggle-icon--Rotate: 180deg;
|
21907
|
-
--pf-v6-c-wizard__nav--ZIndex: var(--pf-t--global--z-index--
|
21951
|
+
--pf-v6-c-wizard__nav--ZIndex: var(--pf-t--global--z-index--sm);
|
21908
21952
|
--pf-v6-c-wizard__nav--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
21909
21953
|
--pf-v6-c-wizard__nav--BoxShadow: var(--pf-t--global--box-shadow--md--bottom);
|
21910
21954
|
--pf-v6-c-wizard__nav--Width: 100%;
|
@@ -93,6 +93,7 @@ declare const _default: {
|
|
93
93
|
"codeEditor": "pf-v6-c-code-editor",
|
94
94
|
"codeEditorCode": "pf-v6-c-code-editor__code",
|
95
95
|
"codeEditorCodePre": "pf-v6-c-code-editor__code-pre",
|
96
|
+
"codeEditorContainer": "pf-v6-c-code-editor__container",
|
96
97
|
"codeEditorControls": "pf-v6-c-code-editor__controls",
|
97
98
|
"codeEditorHeader": "pf-v6-c-code-editor__header",
|
98
99
|
"codeEditorHeaderContent": "pf-v6-c-code-editor__header-content",
|
@@ -412,6 +413,7 @@ declare const _default: {
|
|
412
413
|
"dragHover": "pf-m-drag-hover",
|
413
414
|
"editorial": "pf-m-editorial",
|
414
415
|
"visited": "pf-m-visited",
|
416
|
+
"pageTitle": "pf-m-page-title",
|
415
417
|
"icon": "pf-m-icon",
|
416
418
|
"alignRight": "pf-m-align-right",
|
417
419
|
"flex_2": "pf-m-flex-2",
|
package/css/components/_index.js
CHANGED
@@ -95,6 +95,7 @@ exports.default = {
|
|
95
95
|
"codeEditor": "pf-v6-c-code-editor",
|
96
96
|
"codeEditorCode": "pf-v6-c-code-editor__code",
|
97
97
|
"codeEditorCodePre": "pf-v6-c-code-editor__code-pre",
|
98
|
+
"codeEditorContainer": "pf-v6-c-code-editor__container",
|
98
99
|
"codeEditorControls": "pf-v6-c-code-editor__controls",
|
99
100
|
"codeEditorHeader": "pf-v6-c-code-editor__header",
|
100
101
|
"codeEditorHeaderContent": "pf-v6-c-code-editor__header-content",
|
@@ -414,6 +415,7 @@ exports.default = {
|
|
414
415
|
"dragHover": "pf-m-drag-hover",
|
415
416
|
"editorial": "pf-m-editorial",
|
416
417
|
"visited": "pf-m-visited",
|
418
|
+
"pageTitle": "pf-m-page-title",
|
417
419
|
"icon": "pf-m-icon",
|
418
420
|
"alignRight": "pf-m-align-right",
|
419
421
|
"flex_2": "pf-m-flex-2",
|
@@ -93,6 +93,7 @@ export default {
|
|
93
93
|
"codeEditor": "pf-v6-c-code-editor",
|
94
94
|
"codeEditorCode": "pf-v6-c-code-editor__code",
|
95
95
|
"codeEditorCodePre": "pf-v6-c-code-editor__code-pre",
|
96
|
+
"codeEditorContainer": "pf-v6-c-code-editor__container",
|
96
97
|
"codeEditorControls": "pf-v6-c-code-editor__controls",
|
97
98
|
"codeEditorHeader": "pf-v6-c-code-editor__header",
|
98
99
|
"codeEditorHeaderContent": "pf-v6-c-code-editor__header-content",
|
@@ -412,6 +413,7 @@ export default {
|
|
412
413
|
"dragHover": "pf-m-drag-hover",
|
413
414
|
"editorial": "pf-m-editorial",
|
414
415
|
"visited": "pf-m-visited",
|
416
|
+
"pageTitle": "pf-m-page-title",
|
415
417
|
"icon": "pf-m-icon",
|
416
418
|
"alignRight": "pf-m-align-right",
|
417
419
|
"flex_2": "pf-m-flex-2",
|
@@ -11,3 +11,15 @@
|
|
11
11
|
#ws-core-c-label-overflow .pf-v6-c-label {
|
12
12
|
margin: 4px;
|
13
13
|
}
|
14
|
+
|
15
|
+
#ws-core-c-label-labels-with-truncation .ws-preview-html {
|
16
|
+
max-width: 320px;
|
17
|
+
}
|
18
|
+
|
19
|
+
.pf-v6-c-label-truncate--example {
|
20
|
+
max-width: 100%;
|
21
|
+
padding: var(--pf-t--global--spacer--sm);
|
22
|
+
overflow: auto;
|
23
|
+
resize: horizontal;
|
24
|
+
border: var(--pf-t--global--border--width--box--default) solid var(--pf-t--global--border--color--default);
|
25
|
+
}
|
@@ -21,6 +21,10 @@
|
|
21
21
|
--pf-v6-c-table--m-compact--cell--first-last-child--PaddingInlineStart: var(--pf-v6-global--spacer--sm);
|
22
22
|
}
|
23
23
|
|
24
|
+
#ws-html-demos-c-card-status-card-expanded-with-popover .pf-v6-c-card {
|
25
|
+
overflow: initial;
|
26
|
+
}
|
27
|
+
|
24
28
|
.ws-chart {
|
25
29
|
display: flex;
|
26
30
|
max-width: 100%;
|
@@ -3,8 +3,7 @@
|
|
3
3
|
flex-wrap: wrap;
|
4
4
|
min-height: 160px;
|
5
5
|
}
|
6
|
-
.ws-core-l-level .pf-v6-l-level__item,
|
7
|
-
.ws-core-l-level .pf-v6-l-level {
|
6
|
+
.ws-core-l-level :is(.pf-v6-l-level, .pf-v6-l-level__item, .pf-v6-l-level > *) {
|
8
7
|
padding: var(--pf-t--global--spacer--sm);
|
9
8
|
border: var(--pf-t--global--border--width--box--default) dashed var(--pf-t--global--border--color--default);
|
10
9
|
}
|
@@ -1,5 +1,4 @@
|
|
1
|
-
.ws-core-l-split .pf-v6-l-split,
|
2
|
-
.ws-core-l-split .pf-v6-l-split__item {
|
1
|
+
.ws-core-l-split :is(.pf-v6-l-split, .pf-v6-l-split__item, .pf-v6-l-split > *) {
|
3
2
|
padding: var(--pf-t--global--spacer--sm);
|
4
3
|
border: var(--pf-t--global--border--width--box--default) dashed var(--pf-t--global--border--color--default);
|
5
4
|
}
|
@@ -1,5 +1,4 @@
|
|
1
|
-
.ws-core-l-stack .pf-v6-l-stack,
|
2
|
-
.ws-core-l-stack .pf-v6-l-stack__item {
|
1
|
+
.ws-core-l-stack :is(.pf-v6-l-stack, .pf-v6-l-stack__item, .pf-v6-l-stack > *) {
|
3
2
|
padding: var(--pf-t--global--spacer--sm);
|
4
3
|
border: var(--pf-t--global--border--width--box--default) dashed var(--pf-t--global--border--color--default);
|
5
4
|
}
|
package/css/layouts/_index.css
CHANGED
@@ -3426,8 +3426,7 @@
|
|
3426
3426
|
.pf-v6-l-split.pf-m-wrap {
|
3427
3427
|
flex-wrap: wrap;
|
3428
3428
|
}
|
3429
|
-
|
3430
|
-
.pf-v6-l-split__item.pf-m-fill {
|
3429
|
+
.pf-v6-l-split__item.pf-m-fill, .pf-v6-l-split > .pf-m-fill {
|
3431
3430
|
flex-grow: 1;
|
3432
3431
|
}
|
3433
3432
|
|
@@ -3444,8 +3443,7 @@
|
|
3444
3443
|
flex-direction: column;
|
3445
3444
|
height: 100%;
|
3446
3445
|
}
|
3447
|
-
|
3448
|
-
.pf-v6-l-stack__item.pf-m-fill {
|
3446
|
+
.pf-v6-l-stack__item.pf-m-fill, .pf-v6-l-stack > .pf-m-fill {
|
3449
3447
|
flex-grow: 1;
|
3450
3448
|
}
|
3451
3449
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@patternfly/react-styles",
|
3
|
-
"version": "6.0.
|
3
|
+
"version": "6.1.0-prerelease.2",
|
4
4
|
"main": "dist/js/index.js",
|
5
5
|
"module": "dist/esm/index.js",
|
6
6
|
"types": "dist/esm/index.d.ts",
|
@@ -19,10 +19,10 @@
|
|
19
19
|
"clean": "rimraf dist css"
|
20
20
|
},
|
21
21
|
"devDependencies": {
|
22
|
-
"@patternfly/patternfly": "6.0.
|
22
|
+
"@patternfly/patternfly": "6.1.0-prerelease.4",
|
23
23
|
"change-case": "^5.4.4",
|
24
24
|
"fs-extra": "^11.2.0"
|
25
25
|
},
|
26
26
|
"license": "MIT",
|
27
|
-
"gitHead": "
|
27
|
+
"gitHead": "53da56fdc7b7b149101c9d1156b5999dda3ba579"
|
28
28
|
}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|