@patternfly/patternfly 5.1.0-prerelease.8 → 5.1.0
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/README.md +13 -3
- package/base/_common.scss +21 -0
- package/base/_variables.scss +7 -0
- package/base/patternfly-common.css +14 -0
- package/base/patternfly-variables.css +5 -0
- package/components/AboutModalBox/about-modal-box.css +5 -0
- package/components/AboutModalBox/about-modal-box.scss +7 -0
- package/components/Accordion/accordion.css +3 -0
- package/components/Accordion/accordion.scss +2 -0
- package/components/Alert/alert.css +3 -0
- package/components/Alert/alert.scss +2 -0
- package/components/BackgroundImage/background-image.css +4 -1
- package/components/BackgroundImage/background-image.scss +6 -1
- package/components/Banner/banner.css +0 -3
- package/components/Breadcrumb/breadcrumb.css +3 -0
- package/components/Breadcrumb/breadcrumb.scss +2 -0
- package/components/Button/button.css +3 -0
- package/components/Button/button.scss +4 -0
- package/components/CalendarMonth/calendar-month.css +4 -0
- package/components/CalendarMonth/calendar-month.scss +2 -0
- package/components/Card/card.css +4 -1
- package/components/Card/card.scss +3 -1
- package/components/ClipboardCopy/clipboard-copy.css +3 -0
- package/components/ClipboardCopy/clipboard-copy.scss +2 -0
- package/components/DataList/data-list.css +3 -0
- package/components/DataList/data-list.scss +2 -0
- package/components/Drawer/drawer.css +45 -1
- package/components/Drawer/drawer.scss +43 -9
- package/components/DualListSelector/dual-list-selector.css +9 -1
- package/components/DualListSelector/dual-list-selector.scss +12 -3
- package/components/ExpandableSection/expandable-section.css +4 -0
- package/components/ExpandableSection/expandable-section.scss +2 -0
- package/components/Form/form.css +3 -0
- package/components/Form/form.scss +2 -0
- package/components/Icon/icon.scss +1 -1
- package/components/JumpLinks/jump-links.css +3 -0
- package/components/JumpLinks/jump-links.scss +2 -0
- package/components/Menu/menu.css +11 -0
- package/components/Menu/menu.scss +12 -2
- package/components/Nav/nav.css +20 -0
- package/components/Nav/nav.scss +22 -2
- package/components/NotificationDrawer/notification-drawer.css +4 -0
- package/components/NotificationDrawer/notification-drawer.scss +2 -0
- package/components/Page/page.css +4 -0
- package/components/Page/page.scss +6 -1
- package/components/Pagination/pagination.css +4 -0
- package/components/Pagination/pagination.scss +2 -0
- package/components/Popover/popover.css +62 -33
- package/components/Popover/popover.scss +88 -71
- package/components/Progress/progress.css +6 -4
- package/components/Progress/progress.scss +9 -4
- package/components/Skeleton/skeleton.css +4 -0
- package/components/Skeleton/skeleton.scss +2 -0
- package/components/Slider/slider.css +30 -6
- package/components/Slider/slider.scss +50 -19
- package/components/Switch/switch.css +4 -0
- package/components/Switch/switch.scss +5 -1
- package/components/Table/table-scrollable.css +2 -2
- package/components/Table/table-scrollable.scss +4 -2
- package/components/Table/table-tree-view.css +5 -1
- package/components/Table/table-tree-view.scss +7 -2
- package/components/Table/table.css +4 -0
- package/components/Table/table.scss +2 -0
- package/components/Tabs/tabs.css +10 -0
- package/components/Tabs/tabs.scss +8 -0
- package/components/Toolbar/toolbar.scss +2 -0
- package/components/Tooltip/tooltip.css +55 -26
- package/components/Tooltip/tooltip.scss +71 -54
- package/components/TreeView/tree-view.css +6 -0
- package/components/TreeView/tree-view.scss +10 -3
- package/components/Truncate/truncate.css +9 -0
- package/components/Truncate/truncate.scss +16 -3
- package/components/Wizard/wizard.css +10 -1
- package/components/Wizard/wizard.scss +12 -3
- package/docs/components/Button/examples/Button.md +15 -3
- package/docs/components/Card/examples/Card.md +2 -2
- package/docs/components/Chip/examples/Chip.md +1 -1
- package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +106 -0
- package/docs/components/CodeEditor/examples/CodeEditor.md +3 -3
- package/docs/components/DragDrop/examples/DragDrop.css +2 -2
- package/docs/components/DualListSelector/examples/DualListSelector.md +64 -16
- package/docs/components/Label/examples/Label.md +1 -1
- package/docs/components/Menu/examples/Menu.css +8 -0
- package/docs/components/Menu/examples/Menu.md +90 -73
- package/docs/components/ModalBox/examples/ModalBox.css +3 -8
- package/docs/components/Nav/examples/Navigation.css +3 -26
- package/docs/components/Nav/examples/Navigation.md +99 -0
- package/docs/components/OptionsMenu/deprecated/options-menu.md +12 -3
- package/docs/components/Popover/examples/Popover.css +4 -9
- package/docs/components/Table/examples/Table.md +2 -2
- package/docs/components/Toolbar/examples/Toolbar.md +76 -60
- package/docs/components/Tooltip/examples/Tooltip.css +4 -0
- package/docs/components/Tooltip/examples/Tooltip.md +3 -1
- package/docs/components/Truncate/examples/Truncate.md +2 -2
- package/docs/demos/Card/examples/Card.md +23 -7
- package/docs/demos/DataList/examples/DataList.md +8 -2
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +16 -4
- package/docs/demos/Skeleton/examples/Skeleton.md +7 -35
- package/docs/demos/Table/examples/Table.md +48 -12
- package/docs/demos/Tabs/examples/Tabs.md +4 -1
- package/package.json +6 -5
- package/patternfly-base-no-globals-theme-dark-unversioned.css +19 -0
- package/patternfly-base-no-globals.css +19 -0
- package/patternfly-base-theme-dark-unversioned.css +19 -0
- package/patternfly-base.css +19 -0
- package/patternfly-no-globals.css +375 -87
- package/patternfly-theme-dark-unversioned.css +375 -87
- package/patternfly.css +375 -87
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/functions.scss +6 -0
- package/sass-utilities/mixins.scss +60 -0
- package/sass-utilities/themes/dark/mixins.scss +3 -1
|
@@ -212,6 +212,112 @@ cssPrefix: pf-v5-c-clipboard-copy
|
|
|
212
212
|
id="expandable-expanded-readonly-content"
|
|
213
213
|
>This is an editable version of the copy to clipboard component that has an expandable section. Got a lot of text here, need to see all of it? Click that arrow on the left side and check out the resulting expansion.</div>
|
|
214
214
|
</div>
|
|
215
|
+
<br />
|
|
216
|
+
<h4>Code</h4>
|
|
217
|
+
<div class="pf-v5-c-clipboard-copy">
|
|
218
|
+
<div class="pf-v5-c-clipboard-copy__group">
|
|
219
|
+
<button
|
|
220
|
+
class="pf-v5-c-button pf-m-control"
|
|
221
|
+
type="button"
|
|
222
|
+
id="expandable-not-expanded-code-toggle"
|
|
223
|
+
aria-labelledby="expandable-not-expanded-code-toggle expandable-not-expanded-code-text-input"
|
|
224
|
+
aria-controls="expandable-not-expanded-code-content"
|
|
225
|
+
>
|
|
226
|
+
<div class="pf-v5-c-clipboard-copy__toggle-icon">
|
|
227
|
+
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
228
|
+
</div>
|
|
229
|
+
</button>
|
|
230
|
+
<span class="pf-v5-c-form-control">
|
|
231
|
+
<input
|
|
232
|
+
dir="ltr"
|
|
233
|
+
type="text"
|
|
234
|
+
value="{ "menu": { "id": "file", "value": "File", "popup": { "menuitem": [ {"value": "New", "onclick": "CreateNewDoc()"}, {"value": "Open", "onclick": "OpenDoc()"}, {"value": "Close", "onclick": "CloseDoc()"} ] } }} "
|
|
235
|
+
id="expandable-not-expanded-code-text-input"
|
|
236
|
+
aria-label="Copyable input"
|
|
237
|
+
/>
|
|
238
|
+
</span>
|
|
239
|
+
<button
|
|
240
|
+
class="pf-v5-c-button pf-m-control"
|
|
241
|
+
type="button"
|
|
242
|
+
aria-label="Copy to clipboard"
|
|
243
|
+
id="expandable-not-expanded-code-copy-button"
|
|
244
|
+
aria-labelledby="expandable-not-expanded-code-copy-button expandable-not-expanded-code-text-input"
|
|
245
|
+
>
|
|
246
|
+
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
247
|
+
</button>
|
|
248
|
+
</div>
|
|
249
|
+
<div
|
|
250
|
+
class="pf-v5-c-clipboard-copy__expandable-content"
|
|
251
|
+
hidden
|
|
252
|
+
id="expandable-not-expanded-code-content"
|
|
253
|
+
>
|
|
254
|
+
<pre dir="ltr">{ "menu": {
|
|
255
|
+
"id": "file",
|
|
256
|
+
"value": "File",
|
|
257
|
+
"popup": {
|
|
258
|
+
"menuitem": [
|
|
259
|
+
{"value": "New", "onclick": "CreateNewDoc()"},
|
|
260
|
+
{"value": "Open", "onclick": "OpenDoc()"},
|
|
261
|
+
{"value": "Close", "onclick": "CloseDoc()"}
|
|
262
|
+
]
|
|
263
|
+
}
|
|
264
|
+
}}
|
|
265
|
+
</pre>
|
|
266
|
+
</div>
|
|
267
|
+
</div>
|
|
268
|
+
<br />
|
|
269
|
+
<div class="pf-v5-c-clipboard-copy pf-m-expanded">
|
|
270
|
+
<div class="pf-v5-c-clipboard-copy__group">
|
|
271
|
+
<button
|
|
272
|
+
class="pf-v5-c-button pf-m-control pf-m-expanded"
|
|
273
|
+
type="button"
|
|
274
|
+
id="expandable-expanded-code-toggle"
|
|
275
|
+
aria-labelledby="expandable-expanded-code-toggle expandable-expanded-code-text-input"
|
|
276
|
+
aria-controls="expandable-expanded-code-content"
|
|
277
|
+
>
|
|
278
|
+
<div class="pf-v5-c-clipboard-copy__toggle-icon">
|
|
279
|
+
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
280
|
+
</div>
|
|
281
|
+
</button>
|
|
282
|
+
<span class="pf-v5-c-form-control pf-m-readonly">
|
|
283
|
+
<input
|
|
284
|
+
readonly
|
|
285
|
+
dir="ltr"
|
|
286
|
+
type="text"
|
|
287
|
+
value="{ "menu": { "id": "file", "value": "File", "popup": { "menuitem": [ {"value": "New", "onclick": "CreateNewDoc()"}, {"value": "Open", "onclick": "OpenDoc()"}, {"value": "Close", "onclick": "CloseDoc()"} ] } }} "
|
|
288
|
+
id="expandable-expanded-code-text-input"
|
|
289
|
+
aria-label="Copyable input"
|
|
290
|
+
/>
|
|
291
|
+
</span>
|
|
292
|
+
<button
|
|
293
|
+
class="pf-v5-c-button pf-m-control"
|
|
294
|
+
type="button"
|
|
295
|
+
aria-label="Copy to clipboard"
|
|
296
|
+
id="expandable-expanded-code-copy-button"
|
|
297
|
+
aria-labelledby="expandable-expanded-code-copy-button expandable-expanded-code-text-input"
|
|
298
|
+
>
|
|
299
|
+
<i class="fas fa-copy" aria-hidden="true"></i>
|
|
300
|
+
</button>
|
|
301
|
+
</div>
|
|
302
|
+
<div
|
|
303
|
+
class="pf-v5-c-clipboard-copy__expandable-content"
|
|
304
|
+
contenteditable="true"
|
|
305
|
+
id="expandable-expanded-code-content"
|
|
306
|
+
>
|
|
307
|
+
<pre dir="ltr">{ "menu": {
|
|
308
|
+
"id": "file",
|
|
309
|
+
"value": "File",
|
|
310
|
+
"popup": {
|
|
311
|
+
"menuitem": [
|
|
312
|
+
{"value": "New", "onclick": "CreateNewDoc()"},
|
|
313
|
+
{"value": "Open", "onclick": "OpenDoc()"},
|
|
314
|
+
{"value": "Close", "onclick": "CloseDoc()"}
|
|
315
|
+
]
|
|
316
|
+
}
|
|
317
|
+
}}
|
|
318
|
+
</pre>
|
|
319
|
+
</div>
|
|
320
|
+
</div>
|
|
215
321
|
|
|
216
322
|
```
|
|
217
323
|
|
|
@@ -41,7 +41,7 @@ cssPrefix: pf-v5-c-code-editor
|
|
|
41
41
|
</div>
|
|
42
42
|
</div>
|
|
43
43
|
<div class="pf-v5-c-code-editor__main">
|
|
44
|
-
<code class="pf-v5-c-code-editor__code">
|
|
44
|
+
<code dir="ltr" class="pf-v5-c-code-editor__code">
|
|
45
45
|
<pre class="pf-v5-c-code-editor__code-pre">
|
|
46
46
|
code goes here
|
|
47
47
|
</pre>
|
|
@@ -89,7 +89,7 @@ cssPrefix: pf-v5-c-code-editor
|
|
|
89
89
|
</div>
|
|
90
90
|
</div>
|
|
91
91
|
<div class="pf-v5-c-code-editor__main">
|
|
92
|
-
<code class="pf-v5-c-code-editor__code">
|
|
92
|
+
<code dir="ltr" class="pf-v5-c-code-editor__code">
|
|
93
93
|
<pre class="pf-v5-c-code-editor__code-pre">
|
|
94
94
|
code goes here
|
|
95
95
|
</pre>
|
|
@@ -238,7 +238,7 @@ cssPrefix: pf-v5-c-code-editor
|
|
|
238
238
|
</div>
|
|
239
239
|
</div>
|
|
240
240
|
<div class="pf-v5-c-code-editor__main">
|
|
241
|
-
<code class="pf-v5-c-code-editor__code">
|
|
241
|
+
<code dir="ltr" class="pf-v5-c-code-editor__code">
|
|
242
242
|
<pre class="pf-v5-c-code-editor__code-pre">
|
|
243
243
|
code goes here
|
|
244
244
|
</pre>
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
--pf-v5-c-draggable--m-dragging--BackgroundColor: var(--pf-v5-global--BackgroundColor--100);
|
|
7
7
|
|
|
8
8
|
position: absolute;
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
inset-block-start: 23%;
|
|
10
|
+
inset-inline-start: .5em;
|
|
11
11
|
z-index: 9999;
|
|
12
12
|
width: 100%;
|
|
13
13
|
}
|
|
@@ -38,7 +38,10 @@ cssPrefix: pf-v5-c-dual-list-selector
|
|
|
38
38
|
type="button"
|
|
39
39
|
aria-label="Sort"
|
|
40
40
|
>
|
|
41
|
-
<i
|
|
41
|
+
<i
|
|
42
|
+
class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
|
|
43
|
+
aria-hidden="true"
|
|
44
|
+
></i>
|
|
42
45
|
</button>
|
|
43
46
|
<div class="pf-v5-c-dropdown">
|
|
44
47
|
<button
|
|
@@ -252,7 +255,10 @@ cssPrefix: pf-v5-c-dual-list-selector
|
|
|
252
255
|
type="button"
|
|
253
256
|
aria-label="Sort"
|
|
254
257
|
>
|
|
255
|
-
<i
|
|
258
|
+
<i
|
|
259
|
+
class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
|
|
260
|
+
aria-hidden="true"
|
|
261
|
+
></i>
|
|
256
262
|
</button>
|
|
257
263
|
<div class="pf-v5-c-dropdown">
|
|
258
264
|
<button
|
|
@@ -367,7 +373,10 @@ cssPrefix: pf-v5-c-dual-list-selector
|
|
|
367
373
|
type="button"
|
|
368
374
|
aria-label="Sort"
|
|
369
375
|
>
|
|
370
|
-
<i
|
|
376
|
+
<i
|
|
377
|
+
class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
|
|
378
|
+
aria-hidden="true"
|
|
379
|
+
></i>
|
|
371
380
|
</button>
|
|
372
381
|
<div class="pf-v5-c-dropdown">
|
|
373
382
|
<button
|
|
@@ -575,7 +584,10 @@ cssPrefix: pf-v5-c-dual-list-selector
|
|
|
575
584
|
type="button"
|
|
576
585
|
aria-label="Sort"
|
|
577
586
|
>
|
|
578
|
-
<i
|
|
587
|
+
<i
|
|
588
|
+
class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
|
|
589
|
+
aria-hidden="true"
|
|
590
|
+
></i>
|
|
579
591
|
</button>
|
|
580
592
|
<div class="pf-v5-c-dropdown">
|
|
581
593
|
<button
|
|
@@ -690,7 +702,10 @@ cssPrefix: pf-v5-c-dual-list-selector
|
|
|
690
702
|
type="button"
|
|
691
703
|
aria-label="Sort"
|
|
692
704
|
>
|
|
693
|
-
<i
|
|
705
|
+
<i
|
|
706
|
+
class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
|
|
707
|
+
aria-hidden="true"
|
|
708
|
+
></i>
|
|
694
709
|
</button>
|
|
695
710
|
<div class="pf-v5-c-dropdown">
|
|
696
711
|
<button
|
|
@@ -898,7 +913,10 @@ cssPrefix: pf-v5-c-dual-list-selector
|
|
|
898
913
|
type="button"
|
|
899
914
|
aria-label="Sort"
|
|
900
915
|
>
|
|
901
|
-
<i
|
|
916
|
+
<i
|
|
917
|
+
class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
|
|
918
|
+
aria-hidden="true"
|
|
919
|
+
></i>
|
|
902
920
|
</button>
|
|
903
921
|
<div class="pf-v5-c-dropdown">
|
|
904
922
|
<button
|
|
@@ -1013,7 +1031,10 @@ cssPrefix: pf-v5-c-dual-list-selector
|
|
|
1013
1031
|
type="button"
|
|
1014
1032
|
aria-label="Sort"
|
|
1015
1033
|
>
|
|
1016
|
-
<i
|
|
1034
|
+
<i
|
|
1035
|
+
class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
|
|
1036
|
+
aria-hidden="true"
|
|
1037
|
+
></i>
|
|
1017
1038
|
</button>
|
|
1018
1039
|
<div class="pf-v5-c-dropdown">
|
|
1019
1040
|
<button
|
|
@@ -1221,7 +1242,10 @@ cssPrefix: pf-v5-c-dual-list-selector
|
|
|
1221
1242
|
type="button"
|
|
1222
1243
|
aria-label="Sort"
|
|
1223
1244
|
>
|
|
1224
|
-
<i
|
|
1245
|
+
<i
|
|
1246
|
+
class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
|
|
1247
|
+
aria-hidden="true"
|
|
1248
|
+
></i>
|
|
1225
1249
|
</button>
|
|
1226
1250
|
<div class="pf-v5-c-dropdown">
|
|
1227
1251
|
<button
|
|
@@ -1349,7 +1373,10 @@ cssPrefix: pf-v5-c-dual-list-selector
|
|
|
1349
1373
|
type="button"
|
|
1350
1374
|
aria-label="Sort"
|
|
1351
1375
|
>
|
|
1352
|
-
<i
|
|
1376
|
+
<i
|
|
1377
|
+
class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
|
|
1378
|
+
aria-hidden="true"
|
|
1379
|
+
></i>
|
|
1353
1380
|
</button>
|
|
1354
1381
|
<div class="pf-v5-c-dropdown">
|
|
1355
1382
|
<button
|
|
@@ -1556,7 +1583,10 @@ cssPrefix: pf-v5-c-dual-list-selector
|
|
|
1556
1583
|
type="button"
|
|
1557
1584
|
aria-label="Sort"
|
|
1558
1585
|
>
|
|
1559
|
-
<i
|
|
1586
|
+
<i
|
|
1587
|
+
class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
|
|
1588
|
+
aria-hidden="true"
|
|
1589
|
+
></i>
|
|
1560
1590
|
</button>
|
|
1561
1591
|
<div class="pf-v5-c-dropdown">
|
|
1562
1592
|
<button
|
|
@@ -1684,7 +1714,10 @@ cssPrefix: pf-v5-c-dual-list-selector
|
|
|
1684
1714
|
type="button"
|
|
1685
1715
|
aria-label="Sort"
|
|
1686
1716
|
>
|
|
1687
|
-
<i
|
|
1717
|
+
<i
|
|
1718
|
+
class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
|
|
1719
|
+
aria-hidden="true"
|
|
1720
|
+
></i>
|
|
1688
1721
|
</button>
|
|
1689
1722
|
<div class="pf-v5-c-dropdown">
|
|
1690
1723
|
<button
|
|
@@ -2160,7 +2193,10 @@ cssPrefix: pf-v5-c-dual-list-selector
|
|
|
2160
2193
|
type="button"
|
|
2161
2194
|
aria-label="Sort"
|
|
2162
2195
|
>
|
|
2163
|
-
<i
|
|
2196
|
+
<i
|
|
2197
|
+
class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
|
|
2198
|
+
aria-hidden="true"
|
|
2199
|
+
></i>
|
|
2164
2200
|
</button>
|
|
2165
2201
|
<div class="pf-v5-c-dropdown">
|
|
2166
2202
|
<button
|
|
@@ -2275,7 +2311,10 @@ cssPrefix: pf-v5-c-dual-list-selector
|
|
|
2275
2311
|
type="button"
|
|
2276
2312
|
aria-label="Sort"
|
|
2277
2313
|
>
|
|
2278
|
-
<i
|
|
2314
|
+
<i
|
|
2315
|
+
class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
|
|
2316
|
+
aria-hidden="true"
|
|
2317
|
+
></i>
|
|
2279
2318
|
</button>
|
|
2280
2319
|
<div class="pf-v5-c-dropdown">
|
|
2281
2320
|
<button
|
|
@@ -2732,7 +2771,10 @@ cssPrefix: pf-v5-c-dual-list-selector
|
|
|
2732
2771
|
type="button"
|
|
2733
2772
|
aria-label="Sort"
|
|
2734
2773
|
>
|
|
2735
|
-
<i
|
|
2774
|
+
<i
|
|
2775
|
+
class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
|
|
2776
|
+
aria-hidden="true"
|
|
2777
|
+
></i>
|
|
2736
2778
|
</button>
|
|
2737
2779
|
<div class="pf-v5-c-dropdown">
|
|
2738
2780
|
<button
|
|
@@ -2914,7 +2956,10 @@ cssPrefix: pf-v5-c-dual-list-selector
|
|
|
2914
2956
|
type="button"
|
|
2915
2957
|
aria-label="Sort"
|
|
2916
2958
|
>
|
|
2917
|
-
<i
|
|
2959
|
+
<i
|
|
2960
|
+
class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
|
|
2961
|
+
aria-hidden="true"
|
|
2962
|
+
></i>
|
|
2918
2963
|
</button>
|
|
2919
2964
|
<div class="pf-v5-c-dropdown">
|
|
2920
2965
|
<button
|
|
@@ -3099,7 +3144,10 @@ cssPrefix: pf-v5-c-dual-list-selector
|
|
|
3099
3144
|
type="button"
|
|
3100
3145
|
aria-label="Sort"
|
|
3101
3146
|
>
|
|
3102
|
-
<i
|
|
3147
|
+
<i
|
|
3148
|
+
class="fas fa-sort-amount-down pf-v5-m-mirror-inline-rtl"
|
|
3149
|
+
aria-hidden="true"
|
|
3150
|
+
></i>
|
|
3103
3151
|
</button>
|
|
3104
3152
|
<div class="pf-v5-c-dropdown">
|
|
3105
3153
|
<button
|
|
@@ -3265,7 +3265,7 @@ In addition to the JavaScript management of [editable labels](/components/label#
|
|
|
3265
3265
|
|
|
3266
3266
|
| Attribute | Applied to | Outcome |
|
|
3267
3267
|
| -- | -- | -- |
|
|
3268
|
-
| `role="list"` | `.pf-v5-c-label-group__list` | Indicates that the label group list is a list element. This role is redundant since `.pf-v5-c-label-group__list` is a `<ul>` but is required for screen readers to announce the list
|
|
3268
|
+
| `role="list"` | `.pf-v5-c-label-group__list` | Indicates that the label group list is a list element. This role is redundant since `.pf-v5-c-label-group__list` is a `<ul>` but is required for screen readers to announce the list properly. **Required** |
|
|
3269
3269
|
| `aria-label="[button label text]"` | `.pf-v5-c-label-group__close > button` | Provides an accessible name for a label group close button when an icon is used instead of text. Required when an icon is used with no supporting text. **Required** |
|
|
3270
3270
|
| `aria-labelledby="[id value of .pf-v5-c-label-group__close > button] [id value of .pf-v5-c-label-group__label]"` | `.pf-v5-c-label-group__close > button` | Provides an accessible name for the button. **Required** |
|
|
3271
3271
|
| `aria-label="[label text]"` | `.pf-v5-c-label-group__textarea` | Provides an accessible name for the textarea. **Required** |
|
|
@@ -16,3 +16,11 @@
|
|
|
16
16
|
align-items: flex-end;
|
|
17
17
|
justify-content: flex-end;
|
|
18
18
|
}
|
|
19
|
+
|
|
20
|
+
:is([id="ws-core-c-menu-drilldown-with-breadcrumbs---level-3"], [id="ws-core-c-menu-drilldown-with-breadcrumbs---level-4"]) {
|
|
21
|
+
position: relative;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
:is([id="ws-core-c-menu-drilldown-with-breadcrumbs---level-3"], [id="ws-core-c-menu-drilldown-with-breadcrumbs---level-4"]) .pf-v5-c-breadcrumb__dropdown .pf-v5-c-menu {
|
|
25
|
+
position: absolute;
|
|
26
|
+
}
|
|
@@ -4778,37 +4778,41 @@ cssPrefix: pf-v5-c-menu
|
|
|
4778
4778
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
4779
4779
|
</span>
|
|
4780
4780
|
<span class="pf-v5-c-breadcrumb__dropdown">
|
|
4781
|
-
<
|
|
4782
|
-
|
|
4783
|
-
|
|
4784
|
-
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
|
|
4788
|
-
<
|
|
4789
|
-
|
|
4790
|
-
|
|
4791
|
-
|
|
4792
|
-
|
|
4793
|
-
|
|
4794
|
-
|
|
4795
|
-
|
|
4796
|
-
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
|
|
4800
|
-
|
|
4801
|
-
|
|
4802
|
-
|
|
4803
|
-
|
|
4804
|
-
|
|
4805
|
-
|
|
4806
|
-
|
|
4807
|
-
|
|
4808
|
-
|
|
4809
|
-
|
|
4810
|
-
|
|
4811
|
-
|
|
4781
|
+
<button
|
|
4782
|
+
class="pf-v5-c-menu-toggle pf-m-plain pf-m-expanded"
|
|
4783
|
+
type="button"
|
|
4784
|
+
aria-expanded="true"
|
|
4785
|
+
>
|
|
4786
|
+
<span class="pf-v5-c-badge pf-m-read">
|
|
4787
|
+
1
|
|
4788
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
4789
|
+
</span>
|
|
4790
|
+
</button>
|
|
4791
|
+
<div class="pf-v5-c-menu">
|
|
4792
|
+
<div class="pf-v5-c-menu__content">
|
|
4793
|
+
<ul class="pf-v5-c-menu__list" role="menu">
|
|
4794
|
+
<li class="pf-v5-c-menu__list-item" role="none">
|
|
4795
|
+
<button
|
|
4796
|
+
class="pf-v5-c-menu__item"
|
|
4797
|
+
type="button"
|
|
4798
|
+
role="menuitem"
|
|
4799
|
+
>
|
|
4800
|
+
<span class="pf-v5-c-menu__item-main">
|
|
4801
|
+
<span class="pf-v5-c-menu__item-icon">
|
|
4802
|
+
<span class="pf-v5-c-icon">
|
|
4803
|
+
<span
|
|
4804
|
+
class="pf-v5-c-icon__content pf-v5-m-mirror-inline-rtl"
|
|
4805
|
+
>
|
|
4806
|
+
<i class="fas fa-angle-left" aria-hidden="true"></i>
|
|
4807
|
+
</span>
|
|
4808
|
+
</span>
|
|
4809
|
+
</span>
|
|
4810
|
+
<span class="pf-v5-c-menu__item-text">Edit</span>
|
|
4811
|
+
</span>
|
|
4812
|
+
</button>
|
|
4813
|
+
</li>
|
|
4814
|
+
</ul>
|
|
4815
|
+
</div>
|
|
4812
4816
|
</div>
|
|
4813
4817
|
</span>
|
|
4814
4818
|
</li>
|
|
@@ -5027,48 +5031,61 @@ cssPrefix: pf-v5-c-menu
|
|
|
5027
5031
|
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
5028
5032
|
</span>
|
|
5029
5033
|
<span class="pf-v5-c-breadcrumb__dropdown">
|
|
5030
|
-
<
|
|
5031
|
-
|
|
5032
|
-
|
|
5033
|
-
|
|
5034
|
-
|
|
5035
|
-
|
|
5036
|
-
|
|
5037
|
-
<
|
|
5038
|
-
|
|
5039
|
-
|
|
5040
|
-
|
|
5041
|
-
|
|
5042
|
-
|
|
5043
|
-
|
|
5044
|
-
|
|
5045
|
-
|
|
5046
|
-
|
|
5047
|
-
|
|
5048
|
-
|
|
5049
|
-
|
|
5050
|
-
|
|
5051
|
-
|
|
5052
|
-
|
|
5053
|
-
|
|
5054
|
-
|
|
5055
|
-
|
|
5056
|
-
|
|
5057
|
-
|
|
5058
|
-
|
|
5059
|
-
|
|
5060
|
-
|
|
5061
|
-
|
|
5062
|
-
|
|
5063
|
-
|
|
5064
|
-
|
|
5065
|
-
|
|
5066
|
-
|
|
5067
|
-
|
|
5068
|
-
|
|
5069
|
-
|
|
5070
|
-
|
|
5071
|
-
|
|
5034
|
+
<button
|
|
5035
|
+
class="pf-v5-c-menu-toggle pf-m-plain pf-m-expanded"
|
|
5036
|
+
type="button"
|
|
5037
|
+
aria-expanded="true"
|
|
5038
|
+
>
|
|
5039
|
+
<span class="pf-v5-c-badge pf-m-read">
|
|
5040
|
+
2
|
|
5041
|
+
<i class="fas fa-caret-down" aria-hidden="true"></i>
|
|
5042
|
+
</span>
|
|
5043
|
+
</button>
|
|
5044
|
+
<div class="pf-v5-c-menu">
|
|
5045
|
+
<div class="pf-v5-c-menu__content">
|
|
5046
|
+
<ul class="pf-v5-c-menu__list" role="menu">
|
|
5047
|
+
<li class="pf-v5-c-menu__list-item" role="none">
|
|
5048
|
+
<button
|
|
5049
|
+
class="pf-v5-c-menu__item"
|
|
5050
|
+
type="button"
|
|
5051
|
+
role="menuitem"
|
|
5052
|
+
>
|
|
5053
|
+
<span class="pf-v5-c-menu__item-main">
|
|
5054
|
+
<span class="pf-v5-c-menu__item-icon">
|
|
5055
|
+
<span class="pf-v5-c-icon">
|
|
5056
|
+
<span
|
|
5057
|
+
class="pf-v5-c-icon__content pf-v5-m-mirror-inline-rtl"
|
|
5058
|
+
>
|
|
5059
|
+
<i class="fas fa-angle-left" aria-hidden="true"></i>
|
|
5060
|
+
</span>
|
|
5061
|
+
</span>
|
|
5062
|
+
</span>
|
|
5063
|
+
<span class="pf-v5-c-menu__item-text">Edit</span>
|
|
5064
|
+
</span>
|
|
5065
|
+
</button>
|
|
5066
|
+
</li>
|
|
5067
|
+
<li class="pf-v5-c-menu__list-item" role="none">
|
|
5068
|
+
<button
|
|
5069
|
+
class="pf-v5-c-menu__item"
|
|
5070
|
+
type="button"
|
|
5071
|
+
role="menuitem"
|
|
5072
|
+
>
|
|
5073
|
+
<span class="pf-v5-c-menu__item-main">
|
|
5074
|
+
<span class="pf-v5-c-menu__item-icon">
|
|
5075
|
+
<span class="pf-v5-c-icon">
|
|
5076
|
+
<span
|
|
5077
|
+
class="pf-v5-c-icon__content pf-v5-m-mirror-inline-rtl"
|
|
5078
|
+
>
|
|
5079
|
+
<i class="fas fa-angle-left" aria-hidden="true"></i>
|
|
5080
|
+
</span>
|
|
5081
|
+
</span>
|
|
5082
|
+
</span>
|
|
5083
|
+
<span class="pf-v5-c-menu__item-text">Deployment</span>
|
|
5084
|
+
</span>
|
|
5085
|
+
</button>
|
|
5086
|
+
</li>
|
|
5087
|
+
</ul>
|
|
5088
|
+
</div>
|
|
5072
5089
|
</div>
|
|
5073
5090
|
</span>
|
|
5074
5091
|
</li>
|
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
.ws-core-c-modal .ws-preview-html {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
.ws-core-c-modal .pf-v5-c-modal-box {
|
|
6
|
-
position: absolute;
|
|
7
|
-
inset-block-start: 50%;
|
|
8
|
-
inset-inline-start: 50%;
|
|
9
|
-
transform: translate(-50%, -50%);
|
|
2
|
+
display: flex;
|
|
3
|
+
justify-content: center;
|
|
4
|
+
align-items: center;
|
|
10
5
|
}
|
|
@@ -1,32 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
#ws-core-c-navigation-basic,
|
|
3
|
-
#ws-core-c-navigation-grouped,
|
|
4
|
-
#ws-core-c-navigation-grouped-nav,
|
|
5
|
-
#ws-core-c-navigation-grouped-nav-no-titles,
|
|
6
|
-
#ws-core-c-navigation-expanded,
|
|
7
|
-
#ws-core-c-navigation-expanded-with-subnav-titles,
|
|
8
|
-
#ws-core-c-navigation-mixed,
|
|
9
|
-
#ws-core-c-navigation-horizontal,
|
|
10
|
-
#ws-core-c-navigation-horizontal-overflow,
|
|
11
|
-
#ws-core-c-navigation-horizontal-subnav,
|
|
12
|
-
#ws-core-c-navigation-horizontal-subnav-overflow,
|
|
13
|
-
#ws-core-c-navigation-drilldown,
|
|
14
|
-
#ws-core-c-navigation-nav-with-drilldown-menu .pf-v5-c-nav,
|
|
15
|
-
#ws-core-c-navigation-level-2-drilldown,
|
|
16
|
-
#ws-core-c-navigation-level-3-drilldown,
|
|
17
|
-
#ws-core-c-navigation-nav-with-flyout .pf-v5-c-nav,
|
|
18
|
-
#ws-core-c-navigation-grouped-nav-no-titles-no-margin-top {
|
|
19
|
-
padding: 0;
|
|
20
|
-
background-color: var(--pf-v5-global--BackgroundColor--dark-300);
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
#ws-core-c-navigation-expandable-third-level .pf-v5-c-nav {
|
|
1
|
+
.ws-core-c-navigation:not([id*="tertiary"]):not([id*="light-mode"]) .pf-v5-c-nav{
|
|
24
2
|
background-color: var(--pf-v5-global--BackgroundColor--dark-300);
|
|
25
3
|
}
|
|
26
4
|
|
|
27
5
|
#ws-core-c-navigation-horizontal-in-masthead,
|
|
28
6
|
#ws-core-c-navigation-horizontal-in-masthead-overflow {
|
|
29
|
-
padding: 0;
|
|
30
7
|
grid-template-rows: auto;
|
|
31
8
|
}
|
|
32
9
|
|
|
@@ -58,6 +35,6 @@
|
|
|
58
35
|
|
|
59
36
|
#ws-core-c-navigation-nav-with-flyout .pf-v5-c-menu.pf-m-flyout.pf-m-nav {
|
|
60
37
|
position: absolute;
|
|
61
|
-
|
|
62
|
-
|
|
38
|
+
inset-block-start: 168px;
|
|
39
|
+
inset-inline-start: 256px;
|
|
63
40
|
}
|