@patternfly/patternfly 6.6.0-prerelease.16 → 6.6.0-prerelease.18
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/components/AboutModalBox/about-modal-box.css +1 -1
- package/components/AboutModalBox/about-modal-box.scss +1 -1
- package/components/Alert/alert.css +2 -2
- package/components/Alert/alert.scss +2 -2
- package/components/Breadcrumb/breadcrumb.css +1 -1
- package/components/Breadcrumb/breadcrumb.scss +1 -1
- package/components/ClipboardCopy/clipboard-copy.css +1 -1
- package/components/ClipboardCopy/clipboard-copy.scss +1 -1
- package/components/Menu/menu.css +1 -1
- package/components/Menu/menu.scss +1 -1
- package/components/ModalBox/modal-box.css +1 -1
- package/components/ModalBox/modal-box.scss +1 -1
- package/components/NotificationDrawer/notification-drawer.css +3 -3
- package/components/NotificationDrawer/notification-drawer.scss +3 -3
- package/components/Progress/progress.css +2 -2
- package/components/Progress/progress.scss +2 -2
- package/components/Table/table.css +0 -1
- package/components/Table/table.scss +0 -1
- package/components/Title/title.css +1 -1
- package/components/Title/title.scss +1 -1
- package/components/Tooltip/tooltip.css +1 -1
- package/components/Tooltip/tooltip.scss +1 -1
- package/components/TreeView/tree-view.css +1 -1
- package/components/TreeView/tree-view.scss +1 -1
- package/components/Wizard/wizard.css +3 -3
- package/components/Wizard/wizard.scss +3 -3
- package/components/_index.css +18 -19
- package/docs/components/InputGroup/examples/InputGroup.md +1 -1
- package/docs/components/TreeView/examples/TreeView.md +100 -100
- package/package.json +6 -6
- package/patternfly-no-globals.css +18 -19
- package/patternfly.css +18 -19
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
grid-area: title;
|
|
164
164
|
font-weight: var(--pf-v6-c-alert__title--FontWeight);
|
|
165
165
|
color: var(--pf-v6-c-alert__title--Color);
|
|
166
|
-
overflow-wrap:
|
|
166
|
+
overflow-wrap: anywhere;
|
|
167
167
|
}
|
|
168
168
|
.pf-v6-c-alert__title.pf-m-truncate {
|
|
169
169
|
display: -webkit-box;
|
|
@@ -175,7 +175,7 @@
|
|
|
175
175
|
.pf-v6-c-alert__description {
|
|
176
176
|
grid-area: description;
|
|
177
177
|
padding-block-start: var(--pf-v6-c-alert__description--PaddingBlockStart);
|
|
178
|
-
overflow-wrap:
|
|
178
|
+
overflow-wrap: anywhere;
|
|
179
179
|
}
|
|
180
180
|
.pf-v6-c-alert__description + .pf-v6-c-alert__action-group {
|
|
181
181
|
--pf-v6-c-alert__action-group--PaddingBlockStart: var(--pf-v6-c-alert__description--action-group--PaddingBlockStart);
|
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
grid-area: title;
|
|
206
206
|
font-weight: var(--#{$alert}__title--FontWeight);
|
|
207
207
|
color: var(--#{$alert}__title--Color);
|
|
208
|
-
overflow-wrap:
|
|
208
|
+
overflow-wrap: anywhere;
|
|
209
209
|
|
|
210
210
|
&.pf-m-truncate {
|
|
211
211
|
@include pf-v6-line-clamp("var(--#{$alert}__title--max-lines)");
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
.#{$alert}__description {
|
|
216
216
|
grid-area: description;
|
|
217
217
|
padding-block-start: var(--#{$alert}__description--PaddingBlockStart);
|
|
218
|
-
overflow-wrap:
|
|
218
|
+
overflow-wrap: anywhere;
|
|
219
219
|
|
|
220
220
|
+ .#{$alert}__action-group {
|
|
221
221
|
--#{$alert}__action-group--PaddingBlockStart: var(--#{$alert}__description--action-group--PaddingBlockStart);
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
font-weight: var(--pf-v6-c-breadcrumb__link--FontWeight);
|
|
69
69
|
line-height: inherit;
|
|
70
70
|
color: var(--pf-v6-c-breadcrumb__link--Color);
|
|
71
|
-
overflow-wrap:
|
|
71
|
+
overflow-wrap: anywhere;
|
|
72
72
|
text-decoration-line: var(--pf-v6-c-breadcrumb__link--TextDecorationLine);
|
|
73
73
|
text-decoration-style: var(--pf-v6-c-breadcrumb__link--TextDecorationStyle);
|
|
74
74
|
text-decoration-color: var(--pf-v6-c-breadcrumb__link--TextDecorationColor);
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
font-weight: var(--#{$breadcrumb}__link--FontWeight);
|
|
84
84
|
line-height: inherit;
|
|
85
85
|
color: var(--#{$breadcrumb}__link--Color);
|
|
86
|
-
overflow-wrap:
|
|
86
|
+
overflow-wrap: anywhere;
|
|
87
87
|
text-decoration-line: var(--#{$breadcrumb}__link--TextDecorationLine);
|
|
88
88
|
text-decoration-style: var(--#{$breadcrumb}__link--TextDecorationStyle);
|
|
89
89
|
text-decoration-color: var(--#{$breadcrumb}__link--TextDecorationColor);
|
package/components/Menu/menu.css
CHANGED
|
@@ -587,7 +587,7 @@
|
|
|
587
587
|
.pf-v6-c-menu__item-description {
|
|
588
588
|
font-size: var(--pf-v6-c-menu__item-description--FontSize);
|
|
589
589
|
color: var(--pf-v6-c-menu__item-description--Color);
|
|
590
|
-
overflow-wrap:
|
|
590
|
+
overflow-wrap: anywhere;
|
|
591
591
|
}
|
|
592
592
|
|
|
593
593
|
.pf-v6-c-menu__item-check .pf-v6-c-check {
|
|
@@ -197,7 +197,7 @@
|
|
|
197
197
|
|
|
198
198
|
.pf-v6-c-notification-drawer__list-item-header-title {
|
|
199
199
|
font-weight: var(--pf-v6-c-notification-drawer__list-item-header-title--FontWeight);
|
|
200
|
-
overflow-wrap:
|
|
200
|
+
overflow-wrap: anywhere;
|
|
201
201
|
}
|
|
202
202
|
.pf-v6-c-notification-drawer__list-item-header-title.pf-m-truncate {
|
|
203
203
|
display: -webkit-box;
|
|
@@ -219,7 +219,7 @@
|
|
|
219
219
|
grid-row: 2/3;
|
|
220
220
|
grid-column: 1/2;
|
|
221
221
|
margin-block-end: var(--pf-v6-c-notification-drawer__list-item-description--MarginBlockEnd);
|
|
222
|
-
overflow-wrap:
|
|
222
|
+
overflow-wrap: anywhere;
|
|
223
223
|
}
|
|
224
224
|
|
|
225
225
|
.pf-v6-c-notification-drawer__list-item-timestamp {
|
|
@@ -264,7 +264,7 @@
|
|
|
264
264
|
margin-inline-end: var(--pf-v6-c-notification-drawer__group-toggle-title--MarginInlineEnd);
|
|
265
265
|
font-size: var(--pf-v6-c-notification-drawer__group-toggle-title--FontSize);
|
|
266
266
|
text-align: start;
|
|
267
|
-
overflow-wrap:
|
|
267
|
+
overflow-wrap: anywhere;
|
|
268
268
|
}
|
|
269
269
|
|
|
270
270
|
.pf-v6-c-notification-drawer__group-toggle-count {
|
|
@@ -242,7 +242,7 @@
|
|
|
242
242
|
|
|
243
243
|
.#{$notification-drawer}__list-item-header-title {
|
|
244
244
|
font-weight: var(--#{$notification-drawer}__list-item-header-title--FontWeight);
|
|
245
|
-
overflow-wrap:
|
|
245
|
+
overflow-wrap: anywhere;
|
|
246
246
|
|
|
247
247
|
&.pf-m-truncate {
|
|
248
248
|
@include pf-v6-line-clamp("var(--#{$notification-drawer}__list-item-header-title--max-lines)");
|
|
@@ -263,7 +263,7 @@
|
|
|
263
263
|
grid-row: 2 / 3;
|
|
264
264
|
grid-column: 1 / 2;
|
|
265
265
|
margin-block-end: var(--#{$notification-drawer}__list-item-description--MarginBlockEnd);
|
|
266
|
-
overflow-wrap:
|
|
266
|
+
overflow-wrap: anywhere;
|
|
267
267
|
}
|
|
268
268
|
|
|
269
269
|
.#{$notification-drawer}__list-item-timestamp {
|
|
@@ -307,7 +307,7 @@
|
|
|
307
307
|
margin-inline-end: var(--#{$notification-drawer}__group-toggle-title--MarginInlineEnd);
|
|
308
308
|
font-size: var(--#{$notification-drawer}__group-toggle-title--FontSize);
|
|
309
309
|
text-align: start;
|
|
310
|
-
overflow-wrap:
|
|
310
|
+
overflow-wrap: anywhere;
|
|
311
311
|
}
|
|
312
312
|
|
|
313
313
|
.#{$notification-drawer}__group-toggle-count {
|
|
@@ -130,7 +130,7 @@
|
|
|
130
130
|
|
|
131
131
|
.pf-v6-c-progress__description {
|
|
132
132
|
grid-column: 1/2;
|
|
133
|
-
overflow-wrap:
|
|
133
|
+
overflow-wrap: anywhere;
|
|
134
134
|
}
|
|
135
135
|
.pf-v6-c-progress__description.pf-m-truncate {
|
|
136
136
|
overflow: hidden;
|
|
@@ -146,7 +146,7 @@
|
|
|
146
146
|
align-items: flex-start;
|
|
147
147
|
justify-content: flex-end;
|
|
148
148
|
text-align: end;
|
|
149
|
-
overflow-wrap:
|
|
149
|
+
overflow-wrap: anywhere;
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
.pf-v6-c-progress__status-icon {
|
|
@@ -163,7 +163,7 @@
|
|
|
163
163
|
// the progress__description is displayed above the progress bar on the left
|
|
164
164
|
.#{$progress}__description {
|
|
165
165
|
grid-column: 1 / 2;
|
|
166
|
-
overflow-wrap:
|
|
166
|
+
overflow-wrap: anywhere;
|
|
167
167
|
|
|
168
168
|
&.pf-m-truncate {
|
|
169
169
|
@include pf-v6-text-overflow;
|
|
@@ -179,7 +179,7 @@
|
|
|
179
179
|
align-items: flex-start;
|
|
180
180
|
justify-content: flex-end;
|
|
181
181
|
text-align: end;
|
|
182
|
-
overflow-wrap:
|
|
182
|
+
overflow-wrap: anywhere;
|
|
183
183
|
}
|
|
184
184
|
|
|
185
185
|
// the progress__status-icon is an icon displayed always in the upper right
|
|
@@ -963,7 +963,6 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
963
963
|
}
|
|
964
964
|
.pf-v6-c-table__thead.pf-m-nested-column-header .pf-v6-c-table__tr:last-child:not(.pf-m-border-row) {
|
|
965
965
|
z-index: var(--pf-v6-c-table__thead--m-nested-column-header--after--ZIndex);
|
|
966
|
-
pointer-events: none;
|
|
967
966
|
border-block-end: var(--pf-v6-c-table__thead--m-nested-column-header--BorderBlockEndWidth) solid var(--pf-v6-c-table__thead--m-nested-column-header--BorderBlockEndColor);
|
|
968
967
|
}
|
|
969
968
|
.pf-v6-c-table__thead.pf-m-nested-column-header .pf-v6-c-table__button {
|
|
@@ -1304,7 +1304,6 @@
|
|
|
1304
1304
|
|
|
1305
1305
|
.#{$table}__tr:last-child:not(.pf-m-border-row) {
|
|
1306
1306
|
z-index: var(--#{$table}__thead--m-nested-column-header--after--ZIndex);
|
|
1307
|
-
pointer-events: none;
|
|
1308
1307
|
border-block-end: var(--#{$table}__thead--m-nested-column-header--BorderBlockEndWidth) solid var(--#{$table}__thead--m-nested-column-header--BorderBlockEndColor);
|
|
1309
1308
|
}
|
|
1310
1309
|
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
font-size: var(--pf-v6-c-tooltip__content--FontSize);
|
|
99
99
|
color: var(--pf-v6-c-tooltip__content--Color);
|
|
100
100
|
text-align: center;
|
|
101
|
-
overflow-wrap:
|
|
101
|
+
overflow-wrap: anywhere;
|
|
102
102
|
background-color: var(--pf-v6-c-tooltip__content--BackgroundColor);
|
|
103
103
|
border-radius: var(--pf-v6-c-tooltip__content--BorderRadius);
|
|
104
104
|
}
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
font-size: var(--#{$tooltip}__content--FontSize);
|
|
130
130
|
color: var(--#{$tooltip}__content--Color);
|
|
131
131
|
text-align: center;
|
|
132
|
-
overflow-wrap:
|
|
132
|
+
overflow-wrap: anywhere;
|
|
133
133
|
background-color: var(--#{$tooltip}__content--BackgroundColor);
|
|
134
134
|
border-radius: var(--#{$tooltip}__content--BorderRadius);
|
|
135
135
|
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
--pf-v6-c-tree-view__node-icon--Color: var(--pf-t--global--icon--color--subtle);
|
|
67
67
|
--pf-v6-c-tree-view__node-toggle-icon--base--Rotate: 0;
|
|
68
68
|
--pf-v6-c-tree-view__node-toggle-icon--Rotate: var(--pf-v6-c-tree-view__node-toggle-icon--base--Rotate);
|
|
69
|
-
--pf-v6-c-tree-view__list-item--m-expanded__node-toggle-icon--Rotate:
|
|
69
|
+
--pf-v6-c-tree-view__list-item--m-expanded__node-toggle-icon--Rotate: 90deg;
|
|
70
70
|
--pf-v6-c-tree-view__node--m-disabled--Color: var(--pf-t--global--text--color--disabled);
|
|
71
71
|
--pf-v6-c-tree-view__node-icon--m-disabled--Color: var(--pf-t--global--icon--color--disabled);
|
|
72
72
|
--pf-v6-c-tree-view__node-toggle--m-disabled--Color: var(--pf-t--global--icon--color--disabled);
|
|
@@ -92,7 +92,7 @@ $pf-v6-c-tree-view--MaxNesting: 10 !default;
|
|
|
92
92
|
--#{$tree-view}__node-icon--Color: var(--pf-t--global--icon--color--subtle);
|
|
93
93
|
--#{$tree-view}__node-toggle-icon--base--Rotate: 0;
|
|
94
94
|
--#{$tree-view}__node-toggle-icon--Rotate: var(--#{$tree-view}__node-toggle-icon--base--Rotate);
|
|
95
|
-
--#{$tree-view}__list-item--m-expanded__node-toggle-icon--Rotate:
|
|
95
|
+
--#{$tree-view}__list-item--m-expanded__node-toggle-icon--Rotate: 90deg;
|
|
96
96
|
|
|
97
97
|
// Disabled
|
|
98
98
|
--#{$tree-view}__node--m-disabled--Color: var(--pf-t--global--text--color--disabled);
|
|
@@ -259,7 +259,7 @@
|
|
|
259
259
|
align-items: baseline;
|
|
260
260
|
margin-block-end: var(--pf-v6-c-wizard__toggle-list-item--MarginBlockEnd);
|
|
261
261
|
text-align: start;
|
|
262
|
-
overflow-wrap:
|
|
262
|
+
overflow-wrap: anywhere;
|
|
263
263
|
}
|
|
264
264
|
.pf-v6-c-wizard__toggle-list-item:not(:last-child) {
|
|
265
265
|
margin-inline-end: var(--pf-v6-c-wizard__toggle-list-item--not-last-child--MarginInlineEnd);
|
|
@@ -395,7 +395,7 @@
|
|
|
395
395
|
padding-inline: 0;
|
|
396
396
|
color: var(--pf-v6-c-wizard__nav-link--Color);
|
|
397
397
|
text-align: start;
|
|
398
|
-
overflow-wrap:
|
|
398
|
+
overflow-wrap: anywhere;
|
|
399
399
|
text-decoration-line: var(--pf-v6-c-wizard__nav-link--TextDecoration);
|
|
400
400
|
counter-increment: wizard-nav-count;
|
|
401
401
|
background-color: transparent;
|
|
@@ -514,7 +514,7 @@
|
|
|
514
514
|
flex-direction: column;
|
|
515
515
|
overflow-x: hidden;
|
|
516
516
|
overflow-y: auto;
|
|
517
|
-
overflow-wrap:
|
|
517
|
+
overflow-wrap: anywhere;
|
|
518
518
|
}
|
|
519
519
|
|
|
520
520
|
.pf-v6-c-wizard__main-body {
|
|
@@ -325,7 +325,7 @@
|
|
|
325
325
|
align-items: baseline;
|
|
326
326
|
margin-block-end: var(--#{$wizard}__toggle-list-item--MarginBlockEnd);
|
|
327
327
|
text-align: start;
|
|
328
|
-
overflow-wrap:
|
|
328
|
+
overflow-wrap: anywhere;
|
|
329
329
|
|
|
330
330
|
&:not(:last-child) {
|
|
331
331
|
margin-inline-end: var(--#{$wizard}__toggle-list-item--not-last-child--MarginInlineEnd);
|
|
@@ -478,7 +478,7 @@
|
|
|
478
478
|
padding-inline: 0;
|
|
479
479
|
color: var(--#{$wizard}__nav-link--Color);
|
|
480
480
|
text-align: start; // needed for when the item is a button
|
|
481
|
-
overflow-wrap:
|
|
481
|
+
overflow-wrap: anywhere;
|
|
482
482
|
text-decoration-line: var(--#{$wizard}__nav-link--TextDecoration);
|
|
483
483
|
counter-increment: wizard-nav-count;
|
|
484
484
|
background-color: transparent;
|
|
@@ -614,7 +614,7 @@
|
|
|
614
614
|
flex-direction: column;
|
|
615
615
|
overflow-x: hidden;
|
|
616
616
|
overflow-y: auto;
|
|
617
|
-
overflow-wrap:
|
|
617
|
+
overflow-wrap: anywhere;
|
|
618
618
|
}
|
|
619
619
|
|
|
620
620
|
.#{$wizard}__main-body {
|
package/components/_index.css
CHANGED
|
@@ -164,7 +164,7 @@
|
|
|
164
164
|
overflow-x: hidden;
|
|
165
165
|
overflow-y: auto;
|
|
166
166
|
overscroll-behavior: contain;
|
|
167
|
-
overflow-wrap:
|
|
167
|
+
overflow-wrap: anywhere;
|
|
168
168
|
-webkit-overflow-scrolling: touch;
|
|
169
169
|
}
|
|
170
170
|
@media screen and (min-width: 36rem) {
|
|
@@ -670,7 +670,7 @@
|
|
|
670
670
|
grid-area: title;
|
|
671
671
|
font-weight: var(--pf-v6-c-alert__title--FontWeight);
|
|
672
672
|
color: var(--pf-v6-c-alert__title--Color);
|
|
673
|
-
overflow-wrap:
|
|
673
|
+
overflow-wrap: anywhere;
|
|
674
674
|
}
|
|
675
675
|
.pf-v6-c-alert__title.pf-m-truncate {
|
|
676
676
|
display: -webkit-box;
|
|
@@ -682,7 +682,7 @@
|
|
|
682
682
|
.pf-v6-c-alert__description {
|
|
683
683
|
grid-area: description;
|
|
684
684
|
padding-block-start: var(--pf-v6-c-alert__description--PaddingBlockStart);
|
|
685
|
-
overflow-wrap:
|
|
685
|
+
overflow-wrap: anywhere;
|
|
686
686
|
}
|
|
687
687
|
.pf-v6-c-alert__description + .pf-v6-c-alert__action-group {
|
|
688
688
|
--pf-v6-c-alert__action-group--PaddingBlockStart: var(--pf-v6-c-alert__description--action-group--PaddingBlockStart);
|
|
@@ -1729,7 +1729,7 @@ div.pf-v6-c-avatar {
|
|
|
1729
1729
|
font-weight: var(--pf-v6-c-breadcrumb__link--FontWeight);
|
|
1730
1730
|
line-height: inherit;
|
|
1731
1731
|
color: var(--pf-v6-c-breadcrumb__link--Color);
|
|
1732
|
-
overflow-wrap:
|
|
1732
|
+
overflow-wrap: anywhere;
|
|
1733
1733
|
text-decoration-line: var(--pf-v6-c-breadcrumb__link--TextDecorationLine);
|
|
1734
1734
|
text-decoration-style: var(--pf-v6-c-breadcrumb__link--TextDecorationStyle);
|
|
1735
1735
|
text-decoration-color: var(--pf-v6-c-breadcrumb__link--TextDecorationColor);
|
|
@@ -3564,7 +3564,7 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
|
|
|
3564
3564
|
}
|
|
3565
3565
|
|
|
3566
3566
|
.pf-v6-c-clipboard-copy__text {
|
|
3567
|
-
overflow-wrap:
|
|
3567
|
+
overflow-wrap: anywhere;
|
|
3568
3568
|
white-space: normal;
|
|
3569
3569
|
}
|
|
3570
3570
|
.pf-v6-c-clipboard-copy__text.pf-m-code {
|
|
@@ -12059,7 +12059,7 @@ ul.pf-v6-c-list {
|
|
|
12059
12059
|
.pf-v6-c-menu__item-description {
|
|
12060
12060
|
font-size: var(--pf-v6-c-menu__item-description--FontSize);
|
|
12061
12061
|
color: var(--pf-v6-c-menu__item-description--Color);
|
|
12062
|
-
overflow-wrap:
|
|
12062
|
+
overflow-wrap: anywhere;
|
|
12063
12063
|
}
|
|
12064
12064
|
|
|
12065
12065
|
.pf-v6-c-menu__item-check .pf-v6-c-check {
|
|
@@ -12856,7 +12856,7 @@ ul.pf-v6-c-list {
|
|
|
12856
12856
|
overflow-x: hidden;
|
|
12857
12857
|
overflow-y: auto;
|
|
12858
12858
|
overscroll-behavior: contain;
|
|
12859
|
-
overflow-wrap:
|
|
12859
|
+
overflow-wrap: anywhere;
|
|
12860
12860
|
-webkit-overflow-scrolling: touch;
|
|
12861
12861
|
}
|
|
12862
12862
|
.pf-v6-c-modal-box__body:last-child {
|
|
@@ -13730,7 +13730,7 @@ ul.pf-v6-c-list {
|
|
|
13730
13730
|
|
|
13731
13731
|
.pf-v6-c-notification-drawer__list-item-header-title {
|
|
13732
13732
|
font-weight: var(--pf-v6-c-notification-drawer__list-item-header-title--FontWeight);
|
|
13733
|
-
overflow-wrap:
|
|
13733
|
+
overflow-wrap: anywhere;
|
|
13734
13734
|
}
|
|
13735
13735
|
.pf-v6-c-notification-drawer__list-item-header-title.pf-m-truncate {
|
|
13736
13736
|
display: -webkit-box;
|
|
@@ -13752,7 +13752,7 @@ ul.pf-v6-c-list {
|
|
|
13752
13752
|
grid-row: 2/3;
|
|
13753
13753
|
grid-column: 1/2;
|
|
13754
13754
|
margin-block-end: var(--pf-v6-c-notification-drawer__list-item-description--MarginBlockEnd);
|
|
13755
|
-
overflow-wrap:
|
|
13755
|
+
overflow-wrap: anywhere;
|
|
13756
13756
|
}
|
|
13757
13757
|
|
|
13758
13758
|
.pf-v6-c-notification-drawer__list-item-timestamp {
|
|
@@ -13797,7 +13797,7 @@ ul.pf-v6-c-list {
|
|
|
13797
13797
|
margin-inline-end: var(--pf-v6-c-notification-drawer__group-toggle-title--MarginInlineEnd);
|
|
13798
13798
|
font-size: var(--pf-v6-c-notification-drawer__group-toggle-title--FontSize);
|
|
13799
13799
|
text-align: start;
|
|
13800
|
-
overflow-wrap:
|
|
13800
|
+
overflow-wrap: anywhere;
|
|
13801
13801
|
}
|
|
13802
13802
|
|
|
13803
13803
|
.pf-v6-c-notification-drawer__group-toggle-count {
|
|
@@ -15932,7 +15932,7 @@ ul.pf-v6-c-list {
|
|
|
15932
15932
|
|
|
15933
15933
|
.pf-v6-c-progress__description {
|
|
15934
15934
|
grid-column: 1/2;
|
|
15935
|
-
overflow-wrap:
|
|
15935
|
+
overflow-wrap: anywhere;
|
|
15936
15936
|
}
|
|
15937
15937
|
.pf-v6-c-progress__description.pf-m-truncate {
|
|
15938
15938
|
overflow: hidden;
|
|
@@ -15948,7 +15948,7 @@ ul.pf-v6-c-list {
|
|
|
15948
15948
|
align-items: flex-start;
|
|
15949
15949
|
justify-content: flex-end;
|
|
15950
15950
|
text-align: end;
|
|
15951
|
-
overflow-wrap:
|
|
15951
|
+
overflow-wrap: anywhere;
|
|
15952
15952
|
}
|
|
15953
15953
|
|
|
15954
15954
|
.pf-v6-c-progress__status-icon {
|
|
@@ -20437,7 +20437,6 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
20437
20437
|
}
|
|
20438
20438
|
.pf-v6-c-table__thead.pf-m-nested-column-header .pf-v6-c-table__tr:last-child:not(.pf-m-border-row) {
|
|
20439
20439
|
z-index: var(--pf-v6-c-table__thead--m-nested-column-header--after--ZIndex);
|
|
20440
|
-
pointer-events: none;
|
|
20441
20440
|
border-block-end: var(--pf-v6-c-table__thead--m-nested-column-header--BorderBlockEndWidth) solid var(--pf-v6-c-table__thead--m-nested-column-header--BorderBlockEndColor);
|
|
20442
20441
|
}
|
|
20443
20442
|
.pf-v6-c-table__thead.pf-m-nested-column-header .pf-v6-c-table__button {
|
|
@@ -22762,7 +22761,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
22762
22761
|
|
|
22763
22762
|
.pf-v6-c-title {
|
|
22764
22763
|
font-family: var(--pf-v6-c-title--FontFamily);
|
|
22765
|
-
overflow-wrap:
|
|
22764
|
+
overflow-wrap: anywhere;
|
|
22766
22765
|
}
|
|
22767
22766
|
.pf-v6-c-title.pf-m-4xl {
|
|
22768
22767
|
font-size: var(--pf-v6-c-title--m-4xl--FontSize);
|
|
@@ -25184,7 +25183,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
25184
25183
|
font-size: var(--pf-v6-c-tooltip__content--FontSize);
|
|
25185
25184
|
color: var(--pf-v6-c-tooltip__content--Color);
|
|
25186
25185
|
text-align: center;
|
|
25187
|
-
overflow-wrap:
|
|
25186
|
+
overflow-wrap: anywhere;
|
|
25188
25187
|
background-color: var(--pf-v6-c-tooltip__content--BackgroundColor);
|
|
25189
25188
|
border-radius: var(--pf-v6-c-tooltip__content--BorderRadius);
|
|
25190
25189
|
}
|
|
@@ -25365,7 +25364,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
|
|
|
25365
25364
|
--pf-v6-c-tree-view__node-icon--Color: var(--pf-t--global--icon--color--subtle);
|
|
25366
25365
|
--pf-v6-c-tree-view__node-toggle-icon--base--Rotate: 0;
|
|
25367
25366
|
--pf-v6-c-tree-view__node-toggle-icon--Rotate: var(--pf-v6-c-tree-view__node-toggle-icon--base--Rotate);
|
|
25368
|
-
--pf-v6-c-tree-view__list-item--m-expanded__node-toggle-icon--Rotate:
|
|
25367
|
+
--pf-v6-c-tree-view__list-item--m-expanded__node-toggle-icon--Rotate: 90deg;
|
|
25369
25368
|
--pf-v6-c-tree-view__node--m-disabled--Color: var(--pf-t--global--text--color--disabled);
|
|
25370
25369
|
--pf-v6-c-tree-view__node-icon--m-disabled--Color: var(--pf-t--global--icon--color--disabled);
|
|
25371
25370
|
--pf-v6-c-tree-view__node-toggle--m-disabled--Color: var(--pf-t--global--icon--color--disabled);
|
|
@@ -26096,7 +26095,7 @@ label.pf-v6-c-tree-view__node-text {
|
|
|
26096
26095
|
align-items: baseline;
|
|
26097
26096
|
margin-block-end: var(--pf-v6-c-wizard__toggle-list-item--MarginBlockEnd);
|
|
26098
26097
|
text-align: start;
|
|
26099
|
-
overflow-wrap:
|
|
26098
|
+
overflow-wrap: anywhere;
|
|
26100
26099
|
}
|
|
26101
26100
|
.pf-v6-c-wizard__toggle-list-item:not(:last-child) {
|
|
26102
26101
|
margin-inline-end: var(--pf-v6-c-wizard__toggle-list-item--not-last-child--MarginInlineEnd);
|
|
@@ -26232,7 +26231,7 @@ label.pf-v6-c-tree-view__node-text {
|
|
|
26232
26231
|
padding-inline: 0;
|
|
26233
26232
|
color: var(--pf-v6-c-wizard__nav-link--Color);
|
|
26234
26233
|
text-align: start;
|
|
26235
|
-
overflow-wrap:
|
|
26234
|
+
overflow-wrap: anywhere;
|
|
26236
26235
|
text-decoration-line: var(--pf-v6-c-wizard__nav-link--TextDecoration);
|
|
26237
26236
|
counter-increment: wizard-nav-count;
|
|
26238
26237
|
background-color: transparent;
|
|
@@ -26351,7 +26350,7 @@ label.pf-v6-c-tree-view__node-text {
|
|
|
26351
26350
|
flex-direction: column;
|
|
26352
26351
|
overflow-x: hidden;
|
|
26353
26352
|
overflow-y: auto;
|
|
26354
|
-
overflow-wrap:
|
|
26353
|
+
overflow-wrap: anywhere;
|
|
26355
26354
|
}
|
|
26356
26355
|
|
|
26357
26356
|
.pf-v6-c-wizard__main-body {
|
|
@@ -95,7 +95,7 @@ Use the input group to extend form controls by adding text, buttons, selects, et
|
|
|
95
95
|
<div class="pf-v6-c-input-group">
|
|
96
96
|
<div class="pf-v6-c-input-group__item">
|
|
97
97
|
<button
|
|
98
|
-
class="pf-v6-c-menu-toggle"
|
|
98
|
+
class="pf-v6-c-menu-toggle pf-m-form"
|
|
99
99
|
type="button"
|
|
100
100
|
aria-expanded="false"
|
|
101
101
|
id="select-example-collapsed1"
|