@patternfly/patternfly 6.0.0-alpha.132 → 6.0.0-alpha.133
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/Breadcrumb/breadcrumb.css +10 -10
- package/components/Breadcrumb/breadcrumb.scss +10 -10
- package/components/Hint/hint.css +2 -2
- package/components/Hint/hint.scss +2 -3
- package/components/Login/login.css +4 -2
- package/components/Login/login.scss +2 -1
- package/components/Menu/menu.css +4 -1
- package/components/Menu/menu.scss +5 -1
- package/components/_index.css +20 -15
- package/docs/components/ActionList/examples/ActionList.md +4 -4
- package/docs/components/Breadcrumb/examples/Breadcrumb.md +2 -1
- package/docs/components/Card/examples/Card.md +80 -416
- package/docs/components/DataList/examples/DataList.md +170 -952
- package/docs/components/DualListSelector/examples/DualListSelector.md +160 -896
- package/docs/components/Hint/examples/Hint.md +30 -156
- package/docs/components/InlineEdit/examples/InlineEdit.md +2 -2
- package/docs/components/LogViewer/examples/LogViewer.css +9 -2
- package/docs/components/LogViewer/examples/LogViewer.md +315 -3313
- package/docs/components/Menu/examples/Menu.md +6 -76
- package/docs/components/MenuToggle/examples/MenuToggle.md +4 -0
- package/docs/components/NotificationDrawer/examples/NotificationDrawer.md +370 -2064
- package/docs/components/OverflowMenu/examples/overflow-menu.css +3 -27
- package/docs/components/OverflowMenu/examples/overflow-menu.md +56 -143
- package/docs/components/Table/examples/Table.css +7 -0
- package/docs/components/Table/examples/Table.md +281 -405
- package/docs/components/Toolbar/examples/Toolbar.md +32 -239
- package/docs/demos/CardView/examples/CardView.md +110 -583
- package/docs/demos/Dashboard/examples/Dashboard.md +10 -56
- package/docs/demos/DataList/examples/DataList.md +44 -96
- package/docs/demos/DescriptionList/examples/DescriptionList.md +10 -56
- package/docs/demos/Drawer/examples/Drawer.md +10 -56
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +647 -3504
- package/docs/demos/Page/examples/Penta.md +5 -5
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +150 -675
- package/docs/demos/Table/examples/Table.md +142 -220
- package/docs/demos/Tabs/examples/Tabs.md +15 -28
- package/docs/demos/Toolbar/examples/Toolbar.css +0 -16
- package/docs/demos/Toolbar/examples/Toolbar.md +88 -609
- package/docs/utilities/Display/examples/Display.css +1 -8
- package/docs/utilities/Display/examples/Display.md +16 -7
- package/package.json +1 -1
- package/patternfly-addons.css +38 -0
- package/patternfly-no-globals.css +20 -15
- package/patternfly.css +20 -15
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/utilities/Display/display.css +38 -0
- package/utilities/Display/display.scss +3 -1
- package/utilities/_index.css +38 -0
|
@@ -352,38 +352,16 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
352
352
|
<td class="pf-v6-c-table__td pf-v6-c-table__action" role="cell">
|
|
353
353
|
<div
|
|
354
354
|
class="pf-v6-c-overflow-menu"
|
|
355
|
-
id="table-with-expanded-overflow-
|
|
355
|
+
id="table-with-expanded-overflow-menuoverflow-menu1"
|
|
356
356
|
>
|
|
357
|
-
<div class="pf-v6-c-overflow-
|
|
358
|
-
<div class="pf-v6-c-
|
|
359
|
-
<
|
|
360
|
-
class="pf-v6-c-button pf-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
>
|
|
366
|
-
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
367
|
-
</button>
|
|
368
|
-
<ul
|
|
369
|
-
class="pf-v6-c-dropdown__menu pf-m-align-right"
|
|
370
|
-
role="menu"
|
|
371
|
-
aria-labelledby="table-with-expanded-overflow-menu-overflow-menu-1-dropdown-toggle"
|
|
372
|
-
hidden
|
|
373
|
-
>
|
|
374
|
-
<li role="none">
|
|
375
|
-
<button
|
|
376
|
-
role="menuitem"
|
|
377
|
-
class="pf-v6-c-dropdown__menu-item"
|
|
378
|
-
>Start</button>
|
|
379
|
-
</li>
|
|
380
|
-
<li role="none">
|
|
381
|
-
<button
|
|
382
|
-
role="menuitem"
|
|
383
|
-
class="pf-v6-c-dropdown__menu-item"
|
|
384
|
-
>Stop</button>
|
|
385
|
-
</li>
|
|
386
|
-
</ul>
|
|
357
|
+
<div class="pf-v6-c-overflow-menu__content">
|
|
358
|
+
<div class="pf-v6-c-overflow-menu__group pf-m-button-group">
|
|
359
|
+
<div class="pf-v6-c-overflow-menu__item">
|
|
360
|
+
<button class="pf-v6-c-button pf-m-primary" type="button">Start</button>
|
|
361
|
+
</div>
|
|
362
|
+
<div class="pf-v6-c-overflow-menu__item">
|
|
363
|
+
<button class="pf-v6-c-button pf-m-secondary" type="button">Stop</button>
|
|
364
|
+
</div>
|
|
387
365
|
</div>
|
|
388
366
|
</div>
|
|
389
367
|
</div>
|
|
@@ -402,38 +380,16 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
402
380
|
<td class="pf-v6-c-table__td pf-v6-c-table__action" role="cell">
|
|
403
381
|
<div
|
|
404
382
|
class="pf-v6-c-overflow-menu"
|
|
405
|
-
id="table-with-expanded-overflow-
|
|
383
|
+
id="table-with-expanded-overflow-menuoverflow-menu2"
|
|
406
384
|
>
|
|
407
|
-
<div class="pf-v6-c-overflow-
|
|
408
|
-
<div class="pf-v6-c-
|
|
409
|
-
<
|
|
410
|
-
class="pf-v6-c-button pf-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
>
|
|
416
|
-
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
417
|
-
</button>
|
|
418
|
-
<ul
|
|
419
|
-
class="pf-v6-c-dropdown__menu pf-m-align-right"
|
|
420
|
-
role="menu"
|
|
421
|
-
aria-labelledby="table-with-expanded-overflow-menu-overflow-menu-2-dropdown-toggle"
|
|
422
|
-
hidden
|
|
423
|
-
>
|
|
424
|
-
<li role="none">
|
|
425
|
-
<button
|
|
426
|
-
role="menuitem"
|
|
427
|
-
class="pf-v6-c-dropdown__menu-item"
|
|
428
|
-
>Start</button>
|
|
429
|
-
</li>
|
|
430
|
-
<li role="none">
|
|
431
|
-
<button
|
|
432
|
-
role="menuitem"
|
|
433
|
-
class="pf-v6-c-dropdown__menu-item"
|
|
434
|
-
>Stop</button>
|
|
435
|
-
</li>
|
|
436
|
-
</ul>
|
|
385
|
+
<div class="pf-v6-c-overflow-menu__content">
|
|
386
|
+
<div class="pf-v6-c-overflow-menu__group pf-m-button-group">
|
|
387
|
+
<div class="pf-v6-c-overflow-menu__item">
|
|
388
|
+
<button class="pf-v6-c-button pf-m-primary" type="button">Start</button>
|
|
389
|
+
</div>
|
|
390
|
+
<div class="pf-v6-c-overflow-menu__item">
|
|
391
|
+
<button class="pf-v6-c-button pf-m-secondary" type="button">Stop</button>
|
|
392
|
+
</div>
|
|
437
393
|
</div>
|
|
438
394
|
</div>
|
|
439
395
|
</div>
|
|
@@ -483,39 +439,19 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
483
439
|
<td class="pf-v6-c-table__td pf-v6-c-table__action" role="cell">
|
|
484
440
|
<div
|
|
485
441
|
class="pf-v6-c-overflow-menu"
|
|
486
|
-
id="table-with-overflow-menu-
|
|
442
|
+
id="table-with-overflow-menu-collapsedoverflow-menu1"
|
|
487
443
|
>
|
|
488
444
|
<div class="pf-v6-c-overflow-menu__control">
|
|
489
|
-
<
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
>
|
|
445
|
+
<button
|
|
446
|
+
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
447
|
+
type="button"
|
|
448
|
+
aria-expanded="false"
|
|
449
|
+
aria-label="Menu toggle"
|
|
450
|
+
>
|
|
451
|
+
<span class="pf-v6-c-menu-toggle__icon">
|
|
497
452
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
498
|
-
</
|
|
499
|
-
|
|
500
|
-
class="pf-v6-c-dropdown__menu pf-m-align-right"
|
|
501
|
-
role="menu"
|
|
502
|
-
aria-labelledby="table-with-overflow-menu-collapsed-overflow-menu-1-dropdown-toggle"
|
|
503
|
-
hidden
|
|
504
|
-
>
|
|
505
|
-
<li role="none">
|
|
506
|
-
<button
|
|
507
|
-
role="menuitem"
|
|
508
|
-
class="pf-v6-c-dropdown__menu-item"
|
|
509
|
-
>Start</button>
|
|
510
|
-
</li>
|
|
511
|
-
<li role="none">
|
|
512
|
-
<button
|
|
513
|
-
role="menuitem"
|
|
514
|
-
class="pf-v6-c-dropdown__menu-item"
|
|
515
|
-
>Stop</button>
|
|
516
|
-
</li>
|
|
517
|
-
</ul>
|
|
518
|
-
</div>
|
|
453
|
+
</span>
|
|
454
|
+
</button>
|
|
519
455
|
</div>
|
|
520
456
|
</div>
|
|
521
457
|
</td>
|
|
@@ -533,39 +469,19 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
533
469
|
<td class="pf-v6-c-table__td pf-v6-c-table__action" role="cell">
|
|
534
470
|
<div
|
|
535
471
|
class="pf-v6-c-overflow-menu"
|
|
536
|
-
id="table-with-overflow-menu-
|
|
472
|
+
id="table-with-overflow-menu-collapsedoverflow-menu2"
|
|
537
473
|
>
|
|
538
474
|
<div class="pf-v6-c-overflow-menu__control">
|
|
539
|
-
<
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
>
|
|
475
|
+
<button
|
|
476
|
+
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
477
|
+
type="button"
|
|
478
|
+
aria-expanded="false"
|
|
479
|
+
aria-label="Menu toggle"
|
|
480
|
+
>
|
|
481
|
+
<span class="pf-v6-c-menu-toggle__icon">
|
|
547
482
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
548
|
-
</
|
|
549
|
-
|
|
550
|
-
class="pf-v6-c-dropdown__menu pf-m-align-right"
|
|
551
|
-
role="menu"
|
|
552
|
-
aria-labelledby="table-with-overflow-menu-collapsed-overflow-menu-2-dropdown-toggle"
|
|
553
|
-
hidden
|
|
554
|
-
>
|
|
555
|
-
<li role="none">
|
|
556
|
-
<button
|
|
557
|
-
role="menuitem"
|
|
558
|
-
class="pf-v6-c-dropdown__menu-item"
|
|
559
|
-
>Start</button>
|
|
560
|
-
</li>
|
|
561
|
-
<li role="none">
|
|
562
|
-
<button
|
|
563
|
-
role="menuitem"
|
|
564
|
-
class="pf-v6-c-dropdown__menu-item"
|
|
565
|
-
>Stop</button>
|
|
566
|
-
</li>
|
|
567
|
-
</ul>
|
|
568
|
-
</div>
|
|
483
|
+
</span>
|
|
484
|
+
</button>
|
|
569
485
|
</div>
|
|
570
486
|
</div>
|
|
571
487
|
</td>
|
|
@@ -613,39 +529,19 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
613
529
|
<td class="pf-v6-c-table__td pf-v6-c-table__action" role="cell">
|
|
614
530
|
<div
|
|
615
531
|
class="pf-v6-c-overflow-menu"
|
|
616
|
-
id="table-with-overflow-menu-collapsed-
|
|
532
|
+
id="table-with-overflow-menu-collapsed-mobileoverflow-menu1"
|
|
617
533
|
>
|
|
618
534
|
<div class="pf-v6-c-overflow-menu__control">
|
|
619
|
-
<
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
>
|
|
535
|
+
<button
|
|
536
|
+
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
537
|
+
type="button"
|
|
538
|
+
aria-expanded="false"
|
|
539
|
+
aria-label="Menu toggle"
|
|
540
|
+
>
|
|
541
|
+
<span class="pf-v6-c-menu-toggle__icon">
|
|
627
542
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
628
|
-
</
|
|
629
|
-
|
|
630
|
-
class="pf-v6-c-dropdown__menu pf-m-align-right"
|
|
631
|
-
role="menu"
|
|
632
|
-
aria-labelledby="table-with-overflow-menu-collapsed-mobile-overflow-menu-1-dropdown-toggle"
|
|
633
|
-
hidden
|
|
634
|
-
>
|
|
635
|
-
<li role="none">
|
|
636
|
-
<button
|
|
637
|
-
role="menuitem"
|
|
638
|
-
class="pf-v6-c-dropdown__menu-item"
|
|
639
|
-
>Start</button>
|
|
640
|
-
</li>
|
|
641
|
-
<li role="none">
|
|
642
|
-
<button
|
|
643
|
-
role="menuitem"
|
|
644
|
-
class="pf-v6-c-dropdown__menu-item"
|
|
645
|
-
>Stop</button>
|
|
646
|
-
</li>
|
|
647
|
-
</ul>
|
|
648
|
-
</div>
|
|
543
|
+
</span>
|
|
544
|
+
</button>
|
|
649
545
|
</div>
|
|
650
546
|
</div>
|
|
651
547
|
</td>
|
|
@@ -663,39 +559,19 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
663
559
|
<td class="pf-v6-c-table__td pf-v6-c-table__action" role="cell">
|
|
664
560
|
<div
|
|
665
561
|
class="pf-v6-c-overflow-menu"
|
|
666
|
-
id="table-with-overflow-menu-collapsed-
|
|
562
|
+
id="table-with-overflow-menu-collapsed-mobileoverflow-menu2"
|
|
667
563
|
>
|
|
668
564
|
<div class="pf-v6-c-overflow-menu__control">
|
|
669
|
-
<
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
>
|
|
565
|
+
<button
|
|
566
|
+
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
567
|
+
type="button"
|
|
568
|
+
aria-expanded="false"
|
|
569
|
+
aria-label="Menu toggle"
|
|
570
|
+
>
|
|
571
|
+
<span class="pf-v6-c-menu-toggle__icon">
|
|
677
572
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
678
|
-
</
|
|
679
|
-
|
|
680
|
-
class="pf-v6-c-dropdown__menu pf-m-align-right"
|
|
681
|
-
role="menu"
|
|
682
|
-
aria-labelledby="table-with-overflow-menu-collapsed-mobile-overflow-menu-2-dropdown-toggle"
|
|
683
|
-
hidden
|
|
684
|
-
>
|
|
685
|
-
<li role="none">
|
|
686
|
-
<button
|
|
687
|
-
role="menuitem"
|
|
688
|
-
class="pf-v6-c-dropdown__menu-item"
|
|
689
|
-
>Start</button>
|
|
690
|
-
</li>
|
|
691
|
-
<li role="none">
|
|
692
|
-
<button
|
|
693
|
-
role="menuitem"
|
|
694
|
-
class="pf-v6-c-dropdown__menu-item"
|
|
695
|
-
>Stop</button>
|
|
696
|
-
</li>
|
|
697
|
-
</ul>
|
|
698
|
-
</div>
|
|
573
|
+
</span>
|
|
574
|
+
</button>
|
|
699
575
|
</div>
|
|
700
576
|
</div>
|
|
701
577
|
</td>
|
|
@@ -792,7 +668,7 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
792
668
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
793
669
|
type="button"
|
|
794
670
|
aria-expanded="false"
|
|
795
|
-
aria-label="
|
|
671
|
+
aria-label="Menu toggle"
|
|
796
672
|
>
|
|
797
673
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
798
674
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -841,7 +717,7 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
841
717
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
842
718
|
type="button"
|
|
843
719
|
aria-expanded="false"
|
|
844
|
-
aria-label="
|
|
720
|
+
aria-label="Menu toggle"
|
|
845
721
|
>
|
|
846
722
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
847
723
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -890,7 +766,7 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
890
766
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
891
767
|
type="button"
|
|
892
768
|
aria-expanded="false"
|
|
893
|
-
aria-label="
|
|
769
|
+
aria-label="Menu toggle"
|
|
894
770
|
>
|
|
895
771
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
896
772
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -939,7 +815,7 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
939
815
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
940
816
|
type="button"
|
|
941
817
|
aria-expanded="false"
|
|
942
|
-
aria-label="
|
|
818
|
+
aria-label="Menu toggle"
|
|
943
819
|
>
|
|
944
820
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
945
821
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -1017,7 +893,7 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
1017
893
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1018
894
|
type="button"
|
|
1019
895
|
aria-expanded="false"
|
|
1020
|
-
aria-label="
|
|
896
|
+
aria-label="Menu toggle"
|
|
1021
897
|
>
|
|
1022
898
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1023
899
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -1060,7 +936,7 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
1060
936
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1061
937
|
type="button"
|
|
1062
938
|
aria-expanded="false"
|
|
1063
|
-
aria-label="
|
|
939
|
+
aria-label="Menu toggle"
|
|
1064
940
|
>
|
|
1065
941
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1066
942
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -1103,7 +979,7 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
1103
979
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1104
980
|
type="button"
|
|
1105
981
|
aria-expanded="false"
|
|
1106
|
-
aria-label="
|
|
982
|
+
aria-label="Menu toggle"
|
|
1107
983
|
>
|
|
1108
984
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1109
985
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -1146,7 +1022,7 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
1146
1022
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1147
1023
|
type="button"
|
|
1148
1024
|
aria-expanded="false"
|
|
1149
|
-
aria-label="
|
|
1025
|
+
aria-label="Menu toggle"
|
|
1150
1026
|
>
|
|
1151
1027
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1152
1028
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -1326,7 +1202,7 @@ Note: Table column widths will respond automatically when toggling expanded rows
|
|
|
1326
1202
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1327
1203
|
type="button"
|
|
1328
1204
|
aria-expanded="false"
|
|
1329
|
-
aria-label="
|
|
1205
|
+
aria-label="Menu toggle"
|
|
1330
1206
|
>
|
|
1331
1207
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1332
1208
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -1407,7 +1283,7 @@ Note: Table column widths will respond automatically when toggling expanded rows
|
|
|
1407
1283
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1408
1284
|
type="button"
|
|
1409
1285
|
aria-expanded="false"
|
|
1410
|
-
aria-label="
|
|
1286
|
+
aria-label="Menu toggle"
|
|
1411
1287
|
>
|
|
1412
1288
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1413
1289
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -1481,7 +1357,7 @@ Note: Table column widths will respond automatically when toggling expanded rows
|
|
|
1481
1357
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1482
1358
|
type="button"
|
|
1483
1359
|
aria-expanded="false"
|
|
1484
|
-
aria-label="
|
|
1360
|
+
aria-label="Menu toggle"
|
|
1485
1361
|
>
|
|
1486
1362
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1487
1363
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -1558,7 +1434,7 @@ Note: Table column widths will respond automatically when toggling expanded rows
|
|
|
1558
1434
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1559
1435
|
type="button"
|
|
1560
1436
|
aria-expanded="false"
|
|
1561
|
-
aria-label="
|
|
1437
|
+
aria-label="Menu toggle"
|
|
1562
1438
|
>
|
|
1563
1439
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1564
1440
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -1736,7 +1612,7 @@ Note: Table column widths will respond automatically when toggling expanded rows
|
|
|
1736
1612
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1737
1613
|
type="button"
|
|
1738
1614
|
aria-expanded="false"
|
|
1739
|
-
aria-label="
|
|
1615
|
+
aria-label="Menu toggle"
|
|
1740
1616
|
>
|
|
1741
1617
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1742
1618
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -1814,7 +1690,7 @@ Note: Table column widths will respond automatically when toggling expanded rows
|
|
|
1814
1690
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1815
1691
|
type="button"
|
|
1816
1692
|
aria-expanded="false"
|
|
1817
|
-
aria-label="
|
|
1693
|
+
aria-label="Menu toggle"
|
|
1818
1694
|
>
|
|
1819
1695
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1820
1696
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -1893,7 +1769,7 @@ Note: Table column widths will respond automatically when toggling expanded rows
|
|
|
1893
1769
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1894
1770
|
type="button"
|
|
1895
1771
|
aria-expanded="false"
|
|
1896
|
-
aria-label="
|
|
1772
|
+
aria-label="Menu toggle"
|
|
1897
1773
|
>
|
|
1898
1774
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1899
1775
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -1966,7 +1842,7 @@ Note: Table column widths will respond automatically when toggling expanded rows
|
|
|
1966
1842
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1967
1843
|
type="button"
|
|
1968
1844
|
aria-expanded="false"
|
|
1969
|
-
aria-label="
|
|
1845
|
+
aria-label="Menu toggle"
|
|
1970
1846
|
>
|
|
1971
1847
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
1972
1848
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -2141,7 +2017,7 @@ Note: Table column widths will respond automatically when toggling expanded rows
|
|
|
2141
2017
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2142
2018
|
type="button"
|
|
2143
2019
|
aria-expanded="false"
|
|
2144
|
-
aria-label="
|
|
2020
|
+
aria-label="Menu toggle"
|
|
2145
2021
|
>
|
|
2146
2022
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
2147
2023
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -2370,7 +2246,7 @@ Note: Table column widths will respond automatically when toggling expanded rows
|
|
|
2370
2246
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2371
2247
|
type="button"
|
|
2372
2248
|
aria-expanded="false"
|
|
2373
|
-
aria-label="
|
|
2249
|
+
aria-label="Menu toggle"
|
|
2374
2250
|
>
|
|
2375
2251
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
2376
2252
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -2444,7 +2320,7 @@ Note: Table column widths will respond automatically when toggling expanded rows
|
|
|
2444
2320
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2445
2321
|
type="button"
|
|
2446
2322
|
aria-expanded="false"
|
|
2447
|
-
aria-label="
|
|
2323
|
+
aria-label="Menu toggle"
|
|
2448
2324
|
>
|
|
2449
2325
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
2450
2326
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -2521,7 +2397,7 @@ Note: Table column widths will respond automatically when toggling expanded rows
|
|
|
2521
2397
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2522
2398
|
type="button"
|
|
2523
2399
|
aria-expanded="false"
|
|
2524
|
-
aria-label="
|
|
2400
|
+
aria-label="Menu toggle"
|
|
2525
2401
|
>
|
|
2526
2402
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
2527
2403
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -2701,7 +2577,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
2701
2577
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2702
2578
|
type="button"
|
|
2703
2579
|
aria-expanded="false"
|
|
2704
|
-
aria-label="
|
|
2580
|
+
aria-label="Menu toggle"
|
|
2705
2581
|
>
|
|
2706
2582
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
2707
2583
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -2776,7 +2652,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
2776
2652
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2777
2653
|
type="button"
|
|
2778
2654
|
aria-expanded="false"
|
|
2779
|
-
aria-label="
|
|
2655
|
+
aria-label="Menu toggle"
|
|
2780
2656
|
>
|
|
2781
2657
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
2782
2658
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -2808,7 +2684,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
2808
2684
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2809
2685
|
type="button"
|
|
2810
2686
|
aria-expanded="false"
|
|
2811
|
-
aria-label="
|
|
2687
|
+
aria-label="Menu toggle"
|
|
2812
2688
|
>
|
|
2813
2689
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
2814
2690
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -2840,7 +2716,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
2840
2716
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2841
2717
|
type="button"
|
|
2842
2718
|
aria-expanded="false"
|
|
2843
|
-
aria-label="
|
|
2719
|
+
aria-label="Menu toggle"
|
|
2844
2720
|
>
|
|
2845
2721
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
2846
2722
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -2872,7 +2748,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
2872
2748
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2873
2749
|
type="button"
|
|
2874
2750
|
aria-expanded="false"
|
|
2875
|
-
aria-label="
|
|
2751
|
+
aria-label="Menu toggle"
|
|
2876
2752
|
>
|
|
2877
2753
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
2878
2754
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -2904,7 +2780,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
2904
2780
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2905
2781
|
type="button"
|
|
2906
2782
|
aria-expanded="false"
|
|
2907
|
-
aria-label="
|
|
2783
|
+
aria-label="Menu toggle"
|
|
2908
2784
|
>
|
|
2909
2785
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
2910
2786
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -2980,7 +2856,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
2980
2856
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2981
2857
|
type="button"
|
|
2982
2858
|
aria-expanded="false"
|
|
2983
|
-
aria-label="
|
|
2859
|
+
aria-label="Menu toggle"
|
|
2984
2860
|
>
|
|
2985
2861
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
2986
2862
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3012,7 +2888,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3012
2888
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3013
2889
|
type="button"
|
|
3014
2890
|
aria-expanded="false"
|
|
3015
|
-
aria-label="
|
|
2891
|
+
aria-label="Menu toggle"
|
|
3016
2892
|
>
|
|
3017
2893
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3018
2894
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3044,7 +2920,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3044
2920
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3045
2921
|
type="button"
|
|
3046
2922
|
aria-expanded="false"
|
|
3047
|
-
aria-label="
|
|
2923
|
+
aria-label="Menu toggle"
|
|
3048
2924
|
>
|
|
3049
2925
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3050
2926
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3076,7 +2952,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3076
2952
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3077
2953
|
type="button"
|
|
3078
2954
|
aria-expanded="false"
|
|
3079
|
-
aria-label="
|
|
2955
|
+
aria-label="Menu toggle"
|
|
3080
2956
|
>
|
|
3081
2957
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3082
2958
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3108,7 +2984,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3108
2984
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3109
2985
|
type="button"
|
|
3110
2986
|
aria-expanded="false"
|
|
3111
|
-
aria-label="
|
|
2987
|
+
aria-label="Menu toggle"
|
|
3112
2988
|
>
|
|
3113
2989
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3114
2990
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3184,7 +3060,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3184
3060
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3185
3061
|
type="button"
|
|
3186
3062
|
aria-expanded="false"
|
|
3187
|
-
aria-label="
|
|
3063
|
+
aria-label="Menu toggle"
|
|
3188
3064
|
>
|
|
3189
3065
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3190
3066
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3216,7 +3092,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3216
3092
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3217
3093
|
type="button"
|
|
3218
3094
|
aria-expanded="false"
|
|
3219
|
-
aria-label="
|
|
3095
|
+
aria-label="Menu toggle"
|
|
3220
3096
|
>
|
|
3221
3097
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3222
3098
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3248,7 +3124,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3248
3124
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3249
3125
|
type="button"
|
|
3250
3126
|
aria-expanded="false"
|
|
3251
|
-
aria-label="
|
|
3127
|
+
aria-label="Menu toggle"
|
|
3252
3128
|
>
|
|
3253
3129
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3254
3130
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3280,7 +3156,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3280
3156
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3281
3157
|
type="button"
|
|
3282
3158
|
aria-expanded="false"
|
|
3283
|
-
aria-label="
|
|
3159
|
+
aria-label="Menu toggle"
|
|
3284
3160
|
>
|
|
3285
3161
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3286
3162
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3312,7 +3188,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3312
3188
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3313
3189
|
type="button"
|
|
3314
3190
|
aria-expanded="false"
|
|
3315
|
-
aria-label="
|
|
3191
|
+
aria-label="Menu toggle"
|
|
3316
3192
|
>
|
|
3317
3193
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3318
3194
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3381,7 +3257,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3381
3257
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3382
3258
|
type="button"
|
|
3383
3259
|
aria-expanded="false"
|
|
3384
|
-
aria-label="
|
|
3260
|
+
aria-label="Menu toggle"
|
|
3385
3261
|
>
|
|
3386
3262
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3387
3263
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3453,7 +3329,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3453
3329
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3454
3330
|
type="button"
|
|
3455
3331
|
aria-expanded="false"
|
|
3456
|
-
aria-label="
|
|
3332
|
+
aria-label="Menu toggle"
|
|
3457
3333
|
>
|
|
3458
3334
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3459
3335
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3485,7 +3361,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3485
3361
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3486
3362
|
type="button"
|
|
3487
3363
|
aria-expanded="false"
|
|
3488
|
-
aria-label="
|
|
3364
|
+
aria-label="Menu toggle"
|
|
3489
3365
|
>
|
|
3490
3366
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3491
3367
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3517,7 +3393,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3517
3393
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3518
3394
|
type="button"
|
|
3519
3395
|
aria-expanded="false"
|
|
3520
|
-
aria-label="
|
|
3396
|
+
aria-label="Menu toggle"
|
|
3521
3397
|
>
|
|
3522
3398
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3523
3399
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3549,7 +3425,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3549
3425
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3550
3426
|
type="button"
|
|
3551
3427
|
aria-expanded="false"
|
|
3552
|
-
aria-label="
|
|
3428
|
+
aria-label="Menu toggle"
|
|
3553
3429
|
>
|
|
3554
3430
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3555
3431
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3581,7 +3457,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3581
3457
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3582
3458
|
type="button"
|
|
3583
3459
|
aria-expanded="false"
|
|
3584
|
-
aria-label="
|
|
3460
|
+
aria-label="Menu toggle"
|
|
3585
3461
|
>
|
|
3586
3462
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3587
3463
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3657,7 +3533,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3657
3533
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3658
3534
|
type="button"
|
|
3659
3535
|
aria-expanded="false"
|
|
3660
|
-
aria-label="
|
|
3536
|
+
aria-label="Menu toggle"
|
|
3661
3537
|
>
|
|
3662
3538
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3663
3539
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3689,7 +3565,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3689
3565
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3690
3566
|
type="button"
|
|
3691
3567
|
aria-expanded="false"
|
|
3692
|
-
aria-label="
|
|
3568
|
+
aria-label="Menu toggle"
|
|
3693
3569
|
>
|
|
3694
3570
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3695
3571
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3721,7 +3597,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3721
3597
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3722
3598
|
type="button"
|
|
3723
3599
|
aria-expanded="false"
|
|
3724
|
-
aria-label="
|
|
3600
|
+
aria-label="Menu toggle"
|
|
3725
3601
|
>
|
|
3726
3602
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3727
3603
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3753,7 +3629,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3753
3629
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3754
3630
|
type="button"
|
|
3755
3631
|
aria-expanded="false"
|
|
3756
|
-
aria-label="
|
|
3632
|
+
aria-label="Menu toggle"
|
|
3757
3633
|
>
|
|
3758
3634
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3759
3635
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3785,7 +3661,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3785
3661
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3786
3662
|
type="button"
|
|
3787
3663
|
aria-expanded="false"
|
|
3788
|
-
aria-label="
|
|
3664
|
+
aria-label="Menu toggle"
|
|
3789
3665
|
>
|
|
3790
3666
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3791
3667
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3861,7 +3737,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3861
3737
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3862
3738
|
type="button"
|
|
3863
3739
|
aria-expanded="false"
|
|
3864
|
-
aria-label="
|
|
3740
|
+
aria-label="Menu toggle"
|
|
3865
3741
|
>
|
|
3866
3742
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3867
3743
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3893,7 +3769,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3893
3769
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3894
3770
|
type="button"
|
|
3895
3771
|
aria-expanded="false"
|
|
3896
|
-
aria-label="
|
|
3772
|
+
aria-label="Menu toggle"
|
|
3897
3773
|
>
|
|
3898
3774
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3899
3775
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3925,7 +3801,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3925
3801
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3926
3802
|
type="button"
|
|
3927
3803
|
aria-expanded="false"
|
|
3928
|
-
aria-label="
|
|
3804
|
+
aria-label="Menu toggle"
|
|
3929
3805
|
>
|
|
3930
3806
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3931
3807
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3957,7 +3833,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3957
3833
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3958
3834
|
type="button"
|
|
3959
3835
|
aria-expanded="false"
|
|
3960
|
-
aria-label="
|
|
3836
|
+
aria-label="Menu toggle"
|
|
3961
3837
|
>
|
|
3962
3838
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3963
3839
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -3989,7 +3865,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
3989
3865
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3990
3866
|
type="button"
|
|
3991
3867
|
aria-expanded="false"
|
|
3992
|
-
aria-label="
|
|
3868
|
+
aria-label="Menu toggle"
|
|
3993
3869
|
>
|
|
3994
3870
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
3995
3871
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4058,7 +3934,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4058
3934
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4059
3935
|
type="button"
|
|
4060
3936
|
aria-expanded="false"
|
|
4061
|
-
aria-label="
|
|
3937
|
+
aria-label="Menu toggle"
|
|
4062
3938
|
>
|
|
4063
3939
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4064
3940
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4130,7 +4006,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4130
4006
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4131
4007
|
type="button"
|
|
4132
4008
|
aria-expanded="false"
|
|
4133
|
-
aria-label="
|
|
4009
|
+
aria-label="Menu toggle"
|
|
4134
4010
|
>
|
|
4135
4011
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4136
4012
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4162,7 +4038,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4162
4038
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4163
4039
|
type="button"
|
|
4164
4040
|
aria-expanded="false"
|
|
4165
|
-
aria-label="
|
|
4041
|
+
aria-label="Menu toggle"
|
|
4166
4042
|
>
|
|
4167
4043
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4168
4044
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4194,7 +4070,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4194
4070
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4195
4071
|
type="button"
|
|
4196
4072
|
aria-expanded="false"
|
|
4197
|
-
aria-label="
|
|
4073
|
+
aria-label="Menu toggle"
|
|
4198
4074
|
>
|
|
4199
4075
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4200
4076
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4226,7 +4102,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4226
4102
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4227
4103
|
type="button"
|
|
4228
4104
|
aria-expanded="false"
|
|
4229
|
-
aria-label="
|
|
4105
|
+
aria-label="Menu toggle"
|
|
4230
4106
|
>
|
|
4231
4107
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4232
4108
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4258,7 +4134,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4258
4134
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4259
4135
|
type="button"
|
|
4260
4136
|
aria-expanded="false"
|
|
4261
|
-
aria-label="
|
|
4137
|
+
aria-label="Menu toggle"
|
|
4262
4138
|
>
|
|
4263
4139
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4264
4140
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4334,7 +4210,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4334
4210
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4335
4211
|
type="button"
|
|
4336
4212
|
aria-expanded="false"
|
|
4337
|
-
aria-label="
|
|
4213
|
+
aria-label="Menu toggle"
|
|
4338
4214
|
>
|
|
4339
4215
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4340
4216
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4366,7 +4242,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4366
4242
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4367
4243
|
type="button"
|
|
4368
4244
|
aria-expanded="false"
|
|
4369
|
-
aria-label="
|
|
4245
|
+
aria-label="Menu toggle"
|
|
4370
4246
|
>
|
|
4371
4247
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4372
4248
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4398,7 +4274,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4398
4274
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4399
4275
|
type="button"
|
|
4400
4276
|
aria-expanded="false"
|
|
4401
|
-
aria-label="
|
|
4277
|
+
aria-label="Menu toggle"
|
|
4402
4278
|
>
|
|
4403
4279
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4404
4280
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4430,7 +4306,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4430
4306
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4431
4307
|
type="button"
|
|
4432
4308
|
aria-expanded="false"
|
|
4433
|
-
aria-label="
|
|
4309
|
+
aria-label="Menu toggle"
|
|
4434
4310
|
>
|
|
4435
4311
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4436
4312
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4462,7 +4338,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4462
4338
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4463
4339
|
type="button"
|
|
4464
4340
|
aria-expanded="false"
|
|
4465
|
-
aria-label="
|
|
4341
|
+
aria-label="Menu toggle"
|
|
4466
4342
|
>
|
|
4467
4343
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4468
4344
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4538,7 +4414,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4538
4414
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4539
4415
|
type="button"
|
|
4540
4416
|
aria-expanded="false"
|
|
4541
|
-
aria-label="
|
|
4417
|
+
aria-label="Menu toggle"
|
|
4542
4418
|
>
|
|
4543
4419
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4544
4420
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4570,7 +4446,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4570
4446
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4571
4447
|
type="button"
|
|
4572
4448
|
aria-expanded="false"
|
|
4573
|
-
aria-label="
|
|
4449
|
+
aria-label="Menu toggle"
|
|
4574
4450
|
>
|
|
4575
4451
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4576
4452
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4602,7 +4478,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4602
4478
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4603
4479
|
type="button"
|
|
4604
4480
|
aria-expanded="false"
|
|
4605
|
-
aria-label="
|
|
4481
|
+
aria-label="Menu toggle"
|
|
4606
4482
|
>
|
|
4607
4483
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4608
4484
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4634,7 +4510,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4634
4510
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4635
4511
|
type="button"
|
|
4636
4512
|
aria-expanded="false"
|
|
4637
|
-
aria-label="
|
|
4513
|
+
aria-label="Menu toggle"
|
|
4638
4514
|
>
|
|
4639
4515
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4640
4516
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4666,7 +4542,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4666
4542
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
4667
4543
|
type="button"
|
|
4668
4544
|
aria-expanded="false"
|
|
4669
|
-
aria-label="
|
|
4545
|
+
aria-label="Menu toggle"
|
|
4670
4546
|
>
|
|
4671
4547
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4672
4548
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4825,7 +4701,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4825
4701
|
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
4826
4702
|
type="button"
|
|
4827
4703
|
aria-expanded="false"
|
|
4828
|
-
aria-label="
|
|
4704
|
+
aria-label="Menu toggle"
|
|
4829
4705
|
>
|
|
4830
4706
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4831
4707
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4905,7 +4781,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4905
4781
|
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
4906
4782
|
type="button"
|
|
4907
4783
|
aria-expanded="false"
|
|
4908
|
-
aria-label="
|
|
4784
|
+
aria-label="Menu toggle"
|
|
4909
4785
|
>
|
|
4910
4786
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4911
4787
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -4985,7 +4861,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
4985
4861
|
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
4986
4862
|
type="button"
|
|
4987
4863
|
aria-expanded="false"
|
|
4988
|
-
aria-label="
|
|
4864
|
+
aria-label="Menu toggle"
|
|
4989
4865
|
>
|
|
4990
4866
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
4991
4867
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -5065,7 +4941,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
5065
4941
|
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
5066
4942
|
type="button"
|
|
5067
4943
|
aria-expanded="false"
|
|
5068
|
-
aria-label="
|
|
4944
|
+
aria-label="Menu toggle"
|
|
5069
4945
|
>
|
|
5070
4946
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
5071
4947
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -5214,7 +5090,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
5214
5090
|
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
5215
5091
|
type="button"
|
|
5216
5092
|
aria-expanded="false"
|
|
5217
|
-
aria-label="
|
|
5093
|
+
aria-label="Menu toggle"
|
|
5218
5094
|
>
|
|
5219
5095
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
5220
5096
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -5315,7 +5191,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
5315
5191
|
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
5316
5192
|
type="button"
|
|
5317
5193
|
aria-expanded="false"
|
|
5318
|
-
aria-label="
|
|
5194
|
+
aria-label="Menu toggle"
|
|
5319
5195
|
>
|
|
5320
5196
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
5321
5197
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -5409,7 +5285,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
5409
5285
|
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
5410
5286
|
type="button"
|
|
5411
5287
|
aria-expanded="false"
|
|
5412
|
-
aria-label="
|
|
5288
|
+
aria-label="Menu toggle"
|
|
5413
5289
|
>
|
|
5414
5290
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
5415
5291
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -5506,7 +5382,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
5506
5382
|
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
5507
5383
|
type="button"
|
|
5508
5384
|
aria-expanded="false"
|
|
5509
|
-
aria-label="
|
|
5385
|
+
aria-label="Menu toggle"
|
|
5510
5386
|
>
|
|
5511
5387
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
5512
5388
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -5602,7 +5478,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
5602
5478
|
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
5603
5479
|
type="button"
|
|
5604
5480
|
aria-expanded="false"
|
|
5605
|
-
aria-label="
|
|
5481
|
+
aria-label="Menu toggle"
|
|
5606
5482
|
>
|
|
5607
5483
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
5608
5484
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -5696,7 +5572,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
5696
5572
|
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
5697
5573
|
type="button"
|
|
5698
5574
|
aria-expanded="false"
|
|
5699
|
-
aria-label="
|
|
5575
|
+
aria-label="Menu toggle"
|
|
5700
5576
|
>
|
|
5701
5577
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
5702
5578
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -5799,7 +5675,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
5799
5675
|
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
5800
5676
|
type="button"
|
|
5801
5677
|
aria-expanded="false"
|
|
5802
|
-
aria-label="
|
|
5678
|
+
aria-label="Menu toggle"
|
|
5803
5679
|
>
|
|
5804
5680
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
5805
5681
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -5893,7 +5769,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
5893
5769
|
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
5894
5770
|
type="button"
|
|
5895
5771
|
aria-expanded="false"
|
|
5896
|
-
aria-label="
|
|
5772
|
+
aria-label="Menu toggle"
|
|
5897
5773
|
>
|
|
5898
5774
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
5899
5775
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -5991,7 +5867,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
5991
5867
|
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
5992
5868
|
type="button"
|
|
5993
5869
|
aria-expanded="false"
|
|
5994
|
-
aria-label="
|
|
5870
|
+
aria-label="Menu toggle"
|
|
5995
5871
|
>
|
|
5996
5872
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
5997
5873
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -6103,7 +5979,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
6103
5979
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
6104
5980
|
type="button"
|
|
6105
5981
|
aria-expanded="false"
|
|
6106
|
-
aria-label="
|
|
5982
|
+
aria-label="Menu toggle"
|
|
6107
5983
|
>
|
|
6108
5984
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
6109
5985
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -6147,7 +6023,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
6147
6023
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
6148
6024
|
type="button"
|
|
6149
6025
|
aria-expanded="false"
|
|
6150
|
-
aria-label="
|
|
6026
|
+
aria-label="Menu toggle"
|
|
6151
6027
|
>
|
|
6152
6028
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
6153
6029
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -6185,7 +6061,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
6185
6061
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
6186
6062
|
type="button"
|
|
6187
6063
|
aria-expanded="false"
|
|
6188
|
-
aria-label="
|
|
6064
|
+
aria-label="Menu toggle"
|
|
6189
6065
|
>
|
|
6190
6066
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
6191
6067
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -6337,7 +6213,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
6337
6213
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
6338
6214
|
type="button"
|
|
6339
6215
|
aria-expanded="false"
|
|
6340
|
-
aria-label="
|
|
6216
|
+
aria-label="Menu toggle"
|
|
6341
6217
|
>
|
|
6342
6218
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
6343
6219
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -6421,7 +6297,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
6421
6297
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
6422
6298
|
type="button"
|
|
6423
6299
|
aria-expanded="false"
|
|
6424
|
-
aria-label="
|
|
6300
|
+
aria-label="Menu toggle"
|
|
6425
6301
|
>
|
|
6426
6302
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
6427
6303
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -6506,7 +6382,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
6506
6382
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
6507
6383
|
type="button"
|
|
6508
6384
|
aria-expanded="false"
|
|
6509
|
-
aria-label="
|
|
6385
|
+
aria-label="Menu toggle"
|
|
6510
6386
|
>
|
|
6511
6387
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
6512
6388
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -6588,7 +6464,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
6588
6464
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
6589
6465
|
type="button"
|
|
6590
6466
|
aria-expanded="false"
|
|
6591
|
-
aria-label="
|
|
6467
|
+
aria-label="Menu toggle"
|
|
6592
6468
|
>
|
|
6593
6469
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
6594
6470
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -6724,7 +6600,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
6724
6600
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
6725
6601
|
type="button"
|
|
6726
6602
|
aria-expanded="false"
|
|
6727
|
-
aria-label="
|
|
6603
|
+
aria-label="Menu toggle"
|
|
6728
6604
|
id="tree-table-basic-example-actions-1"
|
|
6729
6605
|
>
|
|
6730
6606
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -6794,7 +6670,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
6794
6670
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
6795
6671
|
type="button"
|
|
6796
6672
|
aria-expanded="false"
|
|
6797
|
-
aria-label="
|
|
6673
|
+
aria-label="Menu toggle"
|
|
6798
6674
|
id="tree-table-basic-example-actions-2"
|
|
6799
6675
|
>
|
|
6800
6676
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -6850,7 +6726,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
6850
6726
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
6851
6727
|
type="button"
|
|
6852
6728
|
aria-expanded="false"
|
|
6853
|
-
aria-label="
|
|
6729
|
+
aria-label="Menu toggle"
|
|
6854
6730
|
id="tree-table-basic-example-actions-3"
|
|
6855
6731
|
>
|
|
6856
6732
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -6906,7 +6782,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
6906
6782
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
6907
6783
|
type="button"
|
|
6908
6784
|
aria-expanded="false"
|
|
6909
|
-
aria-label="
|
|
6785
|
+
aria-label="Menu toggle"
|
|
6910
6786
|
id="tree-table-basic-example-actions-4"
|
|
6911
6787
|
>
|
|
6912
6788
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -6962,7 +6838,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
6962
6838
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
6963
6839
|
type="button"
|
|
6964
6840
|
aria-expanded="false"
|
|
6965
|
-
aria-label="
|
|
6841
|
+
aria-label="Menu toggle"
|
|
6966
6842
|
id="tree-table-basic-example-actions-5"
|
|
6967
6843
|
>
|
|
6968
6844
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -7017,7 +6893,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
7017
6893
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
7018
6894
|
type="button"
|
|
7019
6895
|
aria-expanded="false"
|
|
7020
|
-
aria-label="
|
|
6896
|
+
aria-label="Menu toggle"
|
|
7021
6897
|
id="tree-table-basic-example-actions-6"
|
|
7022
6898
|
>
|
|
7023
6899
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -7087,7 +6963,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
7087
6963
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
7088
6964
|
type="button"
|
|
7089
6965
|
aria-expanded="false"
|
|
7090
|
-
aria-label="
|
|
6966
|
+
aria-label="Menu toggle"
|
|
7091
6967
|
id="tree-table-basic-example-actions-7"
|
|
7092
6968
|
>
|
|
7093
6969
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -7142,7 +7018,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
7142
7018
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
7143
7019
|
type="button"
|
|
7144
7020
|
aria-expanded="false"
|
|
7145
|
-
aria-label="
|
|
7021
|
+
aria-label="Menu toggle"
|
|
7146
7022
|
id="tree-table-basic-example-actions-8"
|
|
7147
7023
|
>
|
|
7148
7024
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -7211,7 +7087,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
7211
7087
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
7212
7088
|
type="button"
|
|
7213
7089
|
aria-expanded="false"
|
|
7214
|
-
aria-label="
|
|
7090
|
+
aria-label="Menu toggle"
|
|
7215
7091
|
id="tree-table-basic-example-actions-9"
|
|
7216
7092
|
>
|
|
7217
7093
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -7267,7 +7143,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
7267
7143
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
7268
7144
|
type="button"
|
|
7269
7145
|
aria-expanded="false"
|
|
7270
|
-
aria-label="
|
|
7146
|
+
aria-label="Menu toggle"
|
|
7271
7147
|
id="tree-table-basic-example-actions-10"
|
|
7272
7148
|
>
|
|
7273
7149
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -7322,7 +7198,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
7322
7198
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
7323
7199
|
type="button"
|
|
7324
7200
|
aria-expanded="false"
|
|
7325
|
-
aria-label="
|
|
7201
|
+
aria-label="Menu toggle"
|
|
7326
7202
|
id="tree-table-basic-example-actions-11"
|
|
7327
7203
|
>
|
|
7328
7204
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -7392,7 +7268,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
7392
7268
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
7393
7269
|
type="button"
|
|
7394
7270
|
aria-expanded="false"
|
|
7395
|
-
aria-label="
|
|
7271
|
+
aria-label="Menu toggle"
|
|
7396
7272
|
id="tree-table-basic-example-actions-12"
|
|
7397
7273
|
>
|
|
7398
7274
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -7447,7 +7323,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
7447
7323
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
7448
7324
|
type="button"
|
|
7449
7325
|
aria-expanded="false"
|
|
7450
|
-
aria-label="
|
|
7326
|
+
aria-label="Menu toggle"
|
|
7451
7327
|
id="tree-table-basic-example-actions-13"
|
|
7452
7328
|
>
|
|
7453
7329
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -7502,7 +7378,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
7502
7378
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
7503
7379
|
type="button"
|
|
7504
7380
|
aria-expanded="false"
|
|
7505
|
-
aria-label="
|
|
7381
|
+
aria-label="Menu toggle"
|
|
7506
7382
|
id="tree-table-basic-example-actions-14"
|
|
7507
7383
|
>
|
|
7508
7384
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -7571,7 +7447,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
7571
7447
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
7572
7448
|
type="button"
|
|
7573
7449
|
aria-expanded="false"
|
|
7574
|
-
aria-label="
|
|
7450
|
+
aria-label="Menu toggle"
|
|
7575
7451
|
id="tree-table-basic-example-actions-15"
|
|
7576
7452
|
>
|
|
7577
7453
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -7627,7 +7503,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
7627
7503
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
7628
7504
|
type="button"
|
|
7629
7505
|
aria-expanded="false"
|
|
7630
|
-
aria-label="
|
|
7506
|
+
aria-label="Menu toggle"
|
|
7631
7507
|
id="tree-table-basic-example-actions-16"
|
|
7632
7508
|
>
|
|
7633
7509
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -7683,7 +7559,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
7683
7559
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
7684
7560
|
type="button"
|
|
7685
7561
|
aria-expanded="false"
|
|
7686
|
-
aria-label="
|
|
7562
|
+
aria-label="Menu toggle"
|
|
7687
7563
|
id="tree-table-basic-example-actions-17"
|
|
7688
7564
|
>
|
|
7689
7565
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -7801,7 +7677,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
7801
7677
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
7802
7678
|
type="button"
|
|
7803
7679
|
aria-expanded="false"
|
|
7804
|
-
aria-label="
|
|
7680
|
+
aria-label="Menu toggle"
|
|
7805
7681
|
id="tree-table-with-checkboxes-example-actions-1"
|
|
7806
7682
|
>
|
|
7807
7683
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -7886,7 +7762,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
7886
7762
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
7887
7763
|
type="button"
|
|
7888
7764
|
aria-expanded="false"
|
|
7889
|
-
aria-label="
|
|
7765
|
+
aria-label="Menu toggle"
|
|
7890
7766
|
id="tree-table-with-checkboxes-example-actions-2"
|
|
7891
7767
|
>
|
|
7892
7768
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -7958,7 +7834,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
7958
7834
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
7959
7835
|
type="button"
|
|
7960
7836
|
aria-expanded="false"
|
|
7961
|
-
aria-label="
|
|
7837
|
+
aria-label="Menu toggle"
|
|
7962
7838
|
id="tree-table-with-checkboxes-example-actions-3"
|
|
7963
7839
|
>
|
|
7964
7840
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -8030,7 +7906,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
8030
7906
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
8031
7907
|
type="button"
|
|
8032
7908
|
aria-expanded="false"
|
|
8033
|
-
aria-label="
|
|
7909
|
+
aria-label="Menu toggle"
|
|
8034
7910
|
id="tree-table-with-checkboxes-example-actions-4"
|
|
8035
7911
|
>
|
|
8036
7912
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -8102,7 +7978,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
8102
7978
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
8103
7979
|
type="button"
|
|
8104
7980
|
aria-expanded="false"
|
|
8105
|
-
aria-label="
|
|
7981
|
+
aria-label="Menu toggle"
|
|
8106
7982
|
id="tree-table-with-checkboxes-example-actions-5"
|
|
8107
7983
|
>
|
|
8108
7984
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -8173,7 +8049,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
8173
8049
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
8174
8050
|
type="button"
|
|
8175
8051
|
aria-expanded="false"
|
|
8176
|
-
aria-label="
|
|
8052
|
+
aria-label="Menu toggle"
|
|
8177
8053
|
id="tree-table-with-checkboxes-example-actions-6"
|
|
8178
8054
|
>
|
|
8179
8055
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -8258,7 +8134,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
8258
8134
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
8259
8135
|
type="button"
|
|
8260
8136
|
aria-expanded="false"
|
|
8261
|
-
aria-label="
|
|
8137
|
+
aria-label="Menu toggle"
|
|
8262
8138
|
id="tree-table-with-checkboxes-example-actions-7"
|
|
8263
8139
|
>
|
|
8264
8140
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -8329,7 +8205,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
8329
8205
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
8330
8206
|
type="button"
|
|
8331
8207
|
aria-expanded="false"
|
|
8332
|
-
aria-label="
|
|
8208
|
+
aria-label="Menu toggle"
|
|
8333
8209
|
id="tree-table-with-checkboxes-example-actions-8"
|
|
8334
8210
|
>
|
|
8335
8211
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -8413,7 +8289,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
8413
8289
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
8414
8290
|
type="button"
|
|
8415
8291
|
aria-expanded="false"
|
|
8416
|
-
aria-label="
|
|
8292
|
+
aria-label="Menu toggle"
|
|
8417
8293
|
id="tree-table-with-checkboxes-example-actions-9"
|
|
8418
8294
|
>
|
|
8419
8295
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -8485,7 +8361,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
8485
8361
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
8486
8362
|
type="button"
|
|
8487
8363
|
aria-expanded="false"
|
|
8488
|
-
aria-label="
|
|
8364
|
+
aria-label="Menu toggle"
|
|
8489
8365
|
id="tree-table-with-checkboxes-example-actions-10"
|
|
8490
8366
|
>
|
|
8491
8367
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -8556,7 +8432,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
8556
8432
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
8557
8433
|
type="button"
|
|
8558
8434
|
aria-expanded="false"
|
|
8559
|
-
aria-label="
|
|
8435
|
+
aria-label="Menu toggle"
|
|
8560
8436
|
id="tree-table-with-checkboxes-example-actions-11"
|
|
8561
8437
|
>
|
|
8562
8438
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -8641,7 +8517,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
8641
8517
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
8642
8518
|
type="button"
|
|
8643
8519
|
aria-expanded="false"
|
|
8644
|
-
aria-label="
|
|
8520
|
+
aria-label="Menu toggle"
|
|
8645
8521
|
id="tree-table-with-checkboxes-example-actions-12"
|
|
8646
8522
|
>
|
|
8647
8523
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -8712,7 +8588,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
8712
8588
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
8713
8589
|
type="button"
|
|
8714
8590
|
aria-expanded="false"
|
|
8715
|
-
aria-label="
|
|
8591
|
+
aria-label="Menu toggle"
|
|
8716
8592
|
id="tree-table-with-checkboxes-example-actions-13"
|
|
8717
8593
|
>
|
|
8718
8594
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -8783,7 +8659,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
8783
8659
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
8784
8660
|
type="button"
|
|
8785
8661
|
aria-expanded="false"
|
|
8786
|
-
aria-label="
|
|
8662
|
+
aria-label="Menu toggle"
|
|
8787
8663
|
id="tree-table-with-checkboxes-example-actions-14"
|
|
8788
8664
|
>
|
|
8789
8665
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -8867,7 +8743,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
8867
8743
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
8868
8744
|
type="button"
|
|
8869
8745
|
aria-expanded="false"
|
|
8870
|
-
aria-label="
|
|
8746
|
+
aria-label="Menu toggle"
|
|
8871
8747
|
id="tree-table-with-checkboxes-example-actions-15"
|
|
8872
8748
|
>
|
|
8873
8749
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -8939,7 +8815,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
8939
8815
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
8940
8816
|
type="button"
|
|
8941
8817
|
aria-expanded="false"
|
|
8942
|
-
aria-label="
|
|
8818
|
+
aria-label="Menu toggle"
|
|
8943
8819
|
id="tree-table-with-checkboxes-example-actions-16"
|
|
8944
8820
|
>
|
|
8945
8821
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -9011,7 +8887,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
9011
8887
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
9012
8888
|
type="button"
|
|
9013
8889
|
aria-expanded="false"
|
|
9014
|
-
aria-label="
|
|
8890
|
+
aria-label="Menu toggle"
|
|
9015
8891
|
id="tree-table-with-checkboxes-example-actions-17"
|
|
9016
8892
|
>
|
|
9017
8893
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -9131,7 +9007,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
9131
9007
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
9132
9008
|
type="button"
|
|
9133
9009
|
aria-expanded="false"
|
|
9134
|
-
aria-label="
|
|
9010
|
+
aria-label="Menu toggle"
|
|
9135
9011
|
id="tree-table-with-checkboxes-icons-example-actions-1"
|
|
9136
9012
|
>
|
|
9137
9013
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -9219,7 +9095,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
9219
9095
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
9220
9096
|
type="button"
|
|
9221
9097
|
aria-expanded="false"
|
|
9222
|
-
aria-label="
|
|
9098
|
+
aria-label="Menu toggle"
|
|
9223
9099
|
id="tree-table-with-checkboxes-icons-example-actions-2"
|
|
9224
9100
|
>
|
|
9225
9101
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -9294,7 +9170,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
9294
9170
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
9295
9171
|
type="button"
|
|
9296
9172
|
aria-expanded="false"
|
|
9297
|
-
aria-label="
|
|
9173
|
+
aria-label="Menu toggle"
|
|
9298
9174
|
id="tree-table-with-checkboxes-icons-example-actions-3"
|
|
9299
9175
|
>
|
|
9300
9176
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -9369,7 +9245,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
9369
9245
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
9370
9246
|
type="button"
|
|
9371
9247
|
aria-expanded="false"
|
|
9372
|
-
aria-label="
|
|
9248
|
+
aria-label="Menu toggle"
|
|
9373
9249
|
id="tree-table-with-checkboxes-icons-example-actions-4"
|
|
9374
9250
|
>
|
|
9375
9251
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -9444,7 +9320,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
9444
9320
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
9445
9321
|
type="button"
|
|
9446
9322
|
aria-expanded="false"
|
|
9447
|
-
aria-label="
|
|
9323
|
+
aria-label="Menu toggle"
|
|
9448
9324
|
id="tree-table-with-checkboxes-icons-example-actions-5"
|
|
9449
9325
|
>
|
|
9450
9326
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -9518,7 +9394,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
9518
9394
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
9519
9395
|
type="button"
|
|
9520
9396
|
aria-expanded="false"
|
|
9521
|
-
aria-label="
|
|
9397
|
+
aria-label="Menu toggle"
|
|
9522
9398
|
id="tree-table-with-checkboxes-icons-example-actions-6"
|
|
9523
9399
|
>
|
|
9524
9400
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -9606,7 +9482,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
9606
9482
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
9607
9483
|
type="button"
|
|
9608
9484
|
aria-expanded="false"
|
|
9609
|
-
aria-label="
|
|
9485
|
+
aria-label="Menu toggle"
|
|
9610
9486
|
id="tree-table-with-checkboxes-icons-example-actions-7"
|
|
9611
9487
|
>
|
|
9612
9488
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -9680,7 +9556,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
9680
9556
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
9681
9557
|
type="button"
|
|
9682
9558
|
aria-expanded="false"
|
|
9683
|
-
aria-label="
|
|
9559
|
+
aria-label="Menu toggle"
|
|
9684
9560
|
id="tree-table-with-checkboxes-icons-example-actions-8"
|
|
9685
9561
|
>
|
|
9686
9562
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -9767,7 +9643,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
9767
9643
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
9768
9644
|
type="button"
|
|
9769
9645
|
aria-expanded="false"
|
|
9770
|
-
aria-label="
|
|
9646
|
+
aria-label="Menu toggle"
|
|
9771
9647
|
id="tree-table-with-checkboxes-icons-example-actions-9"
|
|
9772
9648
|
>
|
|
9773
9649
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -9842,7 +9718,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
9842
9718
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
9843
9719
|
type="button"
|
|
9844
9720
|
aria-expanded="false"
|
|
9845
|
-
aria-label="
|
|
9721
|
+
aria-label="Menu toggle"
|
|
9846
9722
|
id="tree-table-with-checkboxes-icons-example-actions-10"
|
|
9847
9723
|
>
|
|
9848
9724
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -9916,7 +9792,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
9916
9792
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
9917
9793
|
type="button"
|
|
9918
9794
|
aria-expanded="false"
|
|
9919
|
-
aria-label="
|
|
9795
|
+
aria-label="Menu toggle"
|
|
9920
9796
|
id="tree-table-with-checkboxes-icons-example-actions-11"
|
|
9921
9797
|
>
|
|
9922
9798
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -10004,7 +9880,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
10004
9880
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
10005
9881
|
type="button"
|
|
10006
9882
|
aria-expanded="false"
|
|
10007
|
-
aria-label="
|
|
9883
|
+
aria-label="Menu toggle"
|
|
10008
9884
|
id="tree-table-with-checkboxes-icons-example-actions-12"
|
|
10009
9885
|
>
|
|
10010
9886
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -10078,7 +9954,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
10078
9954
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
10079
9955
|
type="button"
|
|
10080
9956
|
aria-expanded="false"
|
|
10081
|
-
aria-label="
|
|
9957
|
+
aria-label="Menu toggle"
|
|
10082
9958
|
id="tree-table-with-checkboxes-icons-example-actions-13"
|
|
10083
9959
|
>
|
|
10084
9960
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -10152,7 +10028,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
10152
10028
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
10153
10029
|
type="button"
|
|
10154
10030
|
aria-expanded="false"
|
|
10155
|
-
aria-label="
|
|
10031
|
+
aria-label="Menu toggle"
|
|
10156
10032
|
id="tree-table-with-checkboxes-icons-example-actions-14"
|
|
10157
10033
|
>
|
|
10158
10034
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -10239,7 +10115,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
10239
10115
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
10240
10116
|
type="button"
|
|
10241
10117
|
aria-expanded="false"
|
|
10242
|
-
aria-label="
|
|
10118
|
+
aria-label="Menu toggle"
|
|
10243
10119
|
id="tree-table-with-checkboxes-icons-example-actions-15"
|
|
10244
10120
|
>
|
|
10245
10121
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -10314,7 +10190,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
10314
10190
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
10315
10191
|
type="button"
|
|
10316
10192
|
aria-expanded="false"
|
|
10317
|
-
aria-label="
|
|
10193
|
+
aria-label="Menu toggle"
|
|
10318
10194
|
id="tree-table-with-checkboxes-icons-example-actions-16"
|
|
10319
10195
|
>
|
|
10320
10196
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -10389,7 +10265,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
10389
10265
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
10390
10266
|
type="button"
|
|
10391
10267
|
aria-expanded="false"
|
|
10392
|
-
aria-label="
|
|
10268
|
+
aria-label="Menu toggle"
|
|
10393
10269
|
id="tree-table-with-checkboxes-icons-example-actions-17"
|
|
10394
10270
|
>
|
|
10395
10271
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
@@ -10776,7 +10652,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
10776
10652
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
10777
10653
|
type="button"
|
|
10778
10654
|
aria-expanded="false"
|
|
10779
|
-
aria-label="
|
|
10655
|
+
aria-label="Menu toggle"
|
|
10780
10656
|
>
|
|
10781
10657
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
10782
10658
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -10838,7 +10714,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
10838
10714
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
10839
10715
|
type="button"
|
|
10840
10716
|
aria-expanded="false"
|
|
10841
|
-
aria-label="
|
|
10717
|
+
aria-label="Menu toggle"
|
|
10842
10718
|
>
|
|
10843
10719
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
10844
10720
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -10900,7 +10776,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
10900
10776
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
10901
10777
|
type="button"
|
|
10902
10778
|
aria-expanded="false"
|
|
10903
|
-
aria-label="
|
|
10779
|
+
aria-label="Menu toggle"
|
|
10904
10780
|
>
|
|
10905
10781
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
10906
10782
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -10962,7 +10838,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
10962
10838
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
10963
10839
|
type="button"
|
|
10964
10840
|
aria-expanded="false"
|
|
10965
|
-
aria-label="
|
|
10841
|
+
aria-label="Menu toggle"
|
|
10966
10842
|
>
|
|
10967
10843
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
10968
10844
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -11099,7 +10975,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
11099
10975
|
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
11100
10976
|
type="button"
|
|
11101
10977
|
aria-expanded="false"
|
|
11102
|
-
aria-label="
|
|
10978
|
+
aria-label="Menu toggle"
|
|
11103
10979
|
>
|
|
11104
10980
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
11105
10981
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -11179,7 +11055,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
11179
11055
|
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
11180
11056
|
type="button"
|
|
11181
11057
|
aria-expanded="false"
|
|
11182
|
-
aria-label="
|
|
11058
|
+
aria-label="Menu toggle"
|
|
11183
11059
|
>
|
|
11184
11060
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
11185
11061
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -11259,7 +11135,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
11259
11135
|
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
11260
11136
|
type="button"
|
|
11261
11137
|
aria-expanded="false"
|
|
11262
|
-
aria-label="
|
|
11138
|
+
aria-label="Menu toggle"
|
|
11263
11139
|
>
|
|
11264
11140
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
11265
11141
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -11339,7 +11215,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
11339
11215
|
class="pf-v6-c-menu-toggle pf-m-plain pf-m-small"
|
|
11340
11216
|
type="button"
|
|
11341
11217
|
aria-expanded="false"
|
|
11342
|
-
aria-label="
|
|
11218
|
+
aria-label="Menu toggle"
|
|
11343
11219
|
>
|
|
11344
11220
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
11345
11221
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -11486,7 +11362,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
11486
11362
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
11487
11363
|
type="button"
|
|
11488
11364
|
aria-expanded="false"
|
|
11489
|
-
aria-label="
|
|
11365
|
+
aria-label="Menu toggle"
|
|
11490
11366
|
>
|
|
11491
11367
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
11492
11368
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -11567,7 +11443,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
11567
11443
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
11568
11444
|
type="button"
|
|
11569
11445
|
aria-expanded="false"
|
|
11570
|
-
aria-label="
|
|
11446
|
+
aria-label="Menu toggle"
|
|
11571
11447
|
>
|
|
11572
11448
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
11573
11449
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -11641,7 +11517,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
11641
11517
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
11642
11518
|
type="button"
|
|
11643
11519
|
aria-expanded="false"
|
|
11644
|
-
aria-label="
|
|
11520
|
+
aria-label="Menu toggle"
|
|
11645
11521
|
>
|
|
11646
11522
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
11647
11523
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -11718,7 +11594,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
11718
11594
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
11719
11595
|
type="button"
|
|
11720
11596
|
aria-expanded="false"
|
|
11721
|
-
aria-label="
|
|
11597
|
+
aria-label="Menu toggle"
|
|
11722
11598
|
>
|
|
11723
11599
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
11724
11600
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -11870,7 +11746,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
11870
11746
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
11871
11747
|
type="button"
|
|
11872
11748
|
aria-expanded="false"
|
|
11873
|
-
aria-label="
|
|
11749
|
+
aria-label="Menu toggle"
|
|
11874
11750
|
>
|
|
11875
11751
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
11876
11752
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -11942,7 +11818,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
11942
11818
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
11943
11819
|
type="button"
|
|
11944
11820
|
aria-expanded="false"
|
|
11945
|
-
aria-label="
|
|
11821
|
+
aria-label="Menu toggle"
|
|
11946
11822
|
>
|
|
11947
11823
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
11948
11824
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -11974,7 +11850,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
11974
11850
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
11975
11851
|
type="button"
|
|
11976
11852
|
aria-expanded="false"
|
|
11977
|
-
aria-label="
|
|
11853
|
+
aria-label="Menu toggle"
|
|
11978
11854
|
>
|
|
11979
11855
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
11980
11856
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12006,7 +11882,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12006
11882
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12007
11883
|
type="button"
|
|
12008
11884
|
aria-expanded="false"
|
|
12009
|
-
aria-label="
|
|
11885
|
+
aria-label="Menu toggle"
|
|
12010
11886
|
>
|
|
12011
11887
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12012
11888
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12038,7 +11914,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12038
11914
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12039
11915
|
type="button"
|
|
12040
11916
|
aria-expanded="false"
|
|
12041
|
-
aria-label="
|
|
11917
|
+
aria-label="Menu toggle"
|
|
12042
11918
|
>
|
|
12043
11919
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12044
11920
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12070,7 +11946,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12070
11946
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12071
11947
|
type="button"
|
|
12072
11948
|
aria-expanded="false"
|
|
12073
|
-
aria-label="
|
|
11949
|
+
aria-label="Menu toggle"
|
|
12074
11950
|
>
|
|
12075
11951
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12076
11952
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12146,7 +12022,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12146
12022
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12147
12023
|
type="button"
|
|
12148
12024
|
aria-expanded="false"
|
|
12149
|
-
aria-label="
|
|
12025
|
+
aria-label="Menu toggle"
|
|
12150
12026
|
>
|
|
12151
12027
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12152
12028
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12178,7 +12054,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12178
12054
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12179
12055
|
type="button"
|
|
12180
12056
|
aria-expanded="false"
|
|
12181
|
-
aria-label="
|
|
12057
|
+
aria-label="Menu toggle"
|
|
12182
12058
|
>
|
|
12183
12059
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12184
12060
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12210,7 +12086,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12210
12086
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12211
12087
|
type="button"
|
|
12212
12088
|
aria-expanded="false"
|
|
12213
|
-
aria-label="
|
|
12089
|
+
aria-label="Menu toggle"
|
|
12214
12090
|
>
|
|
12215
12091
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12216
12092
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12242,7 +12118,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12242
12118
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12243
12119
|
type="button"
|
|
12244
12120
|
aria-expanded="false"
|
|
12245
|
-
aria-label="
|
|
12121
|
+
aria-label="Menu toggle"
|
|
12246
12122
|
>
|
|
12247
12123
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12248
12124
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12274,7 +12150,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12274
12150
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12275
12151
|
type="button"
|
|
12276
12152
|
aria-expanded="false"
|
|
12277
|
-
aria-label="
|
|
12153
|
+
aria-label="Menu toggle"
|
|
12278
12154
|
>
|
|
12279
12155
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12280
12156
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12350,7 +12226,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12350
12226
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12351
12227
|
type="button"
|
|
12352
12228
|
aria-expanded="false"
|
|
12353
|
-
aria-label="
|
|
12229
|
+
aria-label="Menu toggle"
|
|
12354
12230
|
>
|
|
12355
12231
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12356
12232
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12382,7 +12258,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12382
12258
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12383
12259
|
type="button"
|
|
12384
12260
|
aria-expanded="false"
|
|
12385
|
-
aria-label="
|
|
12261
|
+
aria-label="Menu toggle"
|
|
12386
12262
|
>
|
|
12387
12263
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12388
12264
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12414,7 +12290,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12414
12290
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12415
12291
|
type="button"
|
|
12416
12292
|
aria-expanded="false"
|
|
12417
|
-
aria-label="
|
|
12293
|
+
aria-label="Menu toggle"
|
|
12418
12294
|
>
|
|
12419
12295
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12420
12296
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12446,7 +12322,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12446
12322
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12447
12323
|
type="button"
|
|
12448
12324
|
aria-expanded="false"
|
|
12449
|
-
aria-label="
|
|
12325
|
+
aria-label="Menu toggle"
|
|
12450
12326
|
>
|
|
12451
12327
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12452
12328
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12478,7 +12354,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12478
12354
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12479
12355
|
type="button"
|
|
12480
12356
|
aria-expanded="false"
|
|
12481
|
-
aria-label="
|
|
12357
|
+
aria-label="Menu toggle"
|
|
12482
12358
|
>
|
|
12483
12359
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12484
12360
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12544,7 +12420,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12544
12420
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12545
12421
|
type="button"
|
|
12546
12422
|
aria-expanded="false"
|
|
12547
|
-
aria-label="
|
|
12423
|
+
aria-label="Menu toggle"
|
|
12548
12424
|
>
|
|
12549
12425
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12550
12426
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12616,7 +12492,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12616
12492
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12617
12493
|
type="button"
|
|
12618
12494
|
aria-expanded="false"
|
|
12619
|
-
aria-label="
|
|
12495
|
+
aria-label="Menu toggle"
|
|
12620
12496
|
>
|
|
12621
12497
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12622
12498
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12648,7 +12524,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12648
12524
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12649
12525
|
type="button"
|
|
12650
12526
|
aria-expanded="false"
|
|
12651
|
-
aria-label="
|
|
12527
|
+
aria-label="Menu toggle"
|
|
12652
12528
|
>
|
|
12653
12529
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12654
12530
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12680,7 +12556,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12680
12556
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12681
12557
|
type="button"
|
|
12682
12558
|
aria-expanded="false"
|
|
12683
|
-
aria-label="
|
|
12559
|
+
aria-label="Menu toggle"
|
|
12684
12560
|
>
|
|
12685
12561
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12686
12562
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12712,7 +12588,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12712
12588
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12713
12589
|
type="button"
|
|
12714
12590
|
aria-expanded="false"
|
|
12715
|
-
aria-label="
|
|
12591
|
+
aria-label="Menu toggle"
|
|
12716
12592
|
>
|
|
12717
12593
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12718
12594
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12744,7 +12620,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12744
12620
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12745
12621
|
type="button"
|
|
12746
12622
|
aria-expanded="false"
|
|
12747
|
-
aria-label="
|
|
12623
|
+
aria-label="Menu toggle"
|
|
12748
12624
|
>
|
|
12749
12625
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12750
12626
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12820,7 +12696,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12820
12696
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12821
12697
|
type="button"
|
|
12822
12698
|
aria-expanded="false"
|
|
12823
|
-
aria-label="
|
|
12699
|
+
aria-label="Menu toggle"
|
|
12824
12700
|
>
|
|
12825
12701
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12826
12702
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12852,7 +12728,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12852
12728
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12853
12729
|
type="button"
|
|
12854
12730
|
aria-expanded="false"
|
|
12855
|
-
aria-label="
|
|
12731
|
+
aria-label="Menu toggle"
|
|
12856
12732
|
>
|
|
12857
12733
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12858
12734
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12884,7 +12760,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12884
12760
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12885
12761
|
type="button"
|
|
12886
12762
|
aria-expanded="false"
|
|
12887
|
-
aria-label="
|
|
12763
|
+
aria-label="Menu toggle"
|
|
12888
12764
|
>
|
|
12889
12765
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12890
12766
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12916,7 +12792,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12916
12792
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12917
12793
|
type="button"
|
|
12918
12794
|
aria-expanded="false"
|
|
12919
|
-
aria-label="
|
|
12795
|
+
aria-label="Menu toggle"
|
|
12920
12796
|
>
|
|
12921
12797
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12922
12798
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -12948,7 +12824,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
12948
12824
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
12949
12825
|
type="button"
|
|
12950
12826
|
aria-expanded="false"
|
|
12951
|
-
aria-label="
|
|
12827
|
+
aria-label="Menu toggle"
|
|
12952
12828
|
>
|
|
12953
12829
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
12954
12830
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13024,7 +12900,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13024
12900
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13025
12901
|
type="button"
|
|
13026
12902
|
aria-expanded="false"
|
|
13027
|
-
aria-label="
|
|
12903
|
+
aria-label="Menu toggle"
|
|
13028
12904
|
>
|
|
13029
12905
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13030
12906
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13056,7 +12932,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13056
12932
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13057
12933
|
type="button"
|
|
13058
12934
|
aria-expanded="false"
|
|
13059
|
-
aria-label="
|
|
12935
|
+
aria-label="Menu toggle"
|
|
13060
12936
|
>
|
|
13061
12937
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13062
12938
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13088,7 +12964,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13088
12964
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13089
12965
|
type="button"
|
|
13090
12966
|
aria-expanded="false"
|
|
13091
|
-
aria-label="
|
|
12967
|
+
aria-label="Menu toggle"
|
|
13092
12968
|
>
|
|
13093
12969
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13094
12970
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13120,7 +12996,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13120
12996
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13121
12997
|
type="button"
|
|
13122
12998
|
aria-expanded="false"
|
|
13123
|
-
aria-label="
|
|
12999
|
+
aria-label="Menu toggle"
|
|
13124
13000
|
>
|
|
13125
13001
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13126
13002
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13152,7 +13028,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13152
13028
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13153
13029
|
type="button"
|
|
13154
13030
|
aria-expanded="false"
|
|
13155
|
-
aria-label="
|
|
13031
|
+
aria-label="Menu toggle"
|
|
13156
13032
|
>
|
|
13157
13033
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13158
13034
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13224,7 +13100,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13224
13100
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13225
13101
|
type="button"
|
|
13226
13102
|
aria-expanded="false"
|
|
13227
|
-
aria-label="
|
|
13103
|
+
aria-label="Menu toggle"
|
|
13228
13104
|
>
|
|
13229
13105
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13230
13106
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13299,7 +13175,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13299
13175
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13300
13176
|
type="button"
|
|
13301
13177
|
aria-expanded="false"
|
|
13302
|
-
aria-label="
|
|
13178
|
+
aria-label="Menu toggle"
|
|
13303
13179
|
>
|
|
13304
13180
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13305
13181
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13331,7 +13207,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13331
13207
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13332
13208
|
type="button"
|
|
13333
13209
|
aria-expanded="false"
|
|
13334
|
-
aria-label="
|
|
13210
|
+
aria-label="Menu toggle"
|
|
13335
13211
|
>
|
|
13336
13212
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13337
13213
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13363,7 +13239,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13363
13239
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13364
13240
|
type="button"
|
|
13365
13241
|
aria-expanded="false"
|
|
13366
|
-
aria-label="
|
|
13242
|
+
aria-label="Menu toggle"
|
|
13367
13243
|
>
|
|
13368
13244
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13369
13245
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13395,7 +13271,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13395
13271
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13396
13272
|
type="button"
|
|
13397
13273
|
aria-expanded="false"
|
|
13398
|
-
aria-label="
|
|
13274
|
+
aria-label="Menu toggle"
|
|
13399
13275
|
>
|
|
13400
13276
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13401
13277
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13427,7 +13303,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13427
13303
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13428
13304
|
type="button"
|
|
13429
13305
|
aria-expanded="false"
|
|
13430
|
-
aria-label="
|
|
13306
|
+
aria-label="Menu toggle"
|
|
13431
13307
|
>
|
|
13432
13308
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13433
13309
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13503,7 +13379,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13503
13379
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13504
13380
|
type="button"
|
|
13505
13381
|
aria-expanded="false"
|
|
13506
|
-
aria-label="
|
|
13382
|
+
aria-label="Menu toggle"
|
|
13507
13383
|
>
|
|
13508
13384
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13509
13385
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13535,7 +13411,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13535
13411
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13536
13412
|
type="button"
|
|
13537
13413
|
aria-expanded="false"
|
|
13538
|
-
aria-label="
|
|
13414
|
+
aria-label="Menu toggle"
|
|
13539
13415
|
>
|
|
13540
13416
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13541
13417
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13567,7 +13443,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13567
13443
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13568
13444
|
type="button"
|
|
13569
13445
|
aria-expanded="false"
|
|
13570
|
-
aria-label="
|
|
13446
|
+
aria-label="Menu toggle"
|
|
13571
13447
|
>
|
|
13572
13448
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13573
13449
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13599,7 +13475,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13599
13475
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13600
13476
|
type="button"
|
|
13601
13477
|
aria-expanded="false"
|
|
13602
|
-
aria-label="
|
|
13478
|
+
aria-label="Menu toggle"
|
|
13603
13479
|
>
|
|
13604
13480
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13605
13481
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13631,7 +13507,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13631
13507
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13632
13508
|
type="button"
|
|
13633
13509
|
aria-expanded="false"
|
|
13634
|
-
aria-label="
|
|
13510
|
+
aria-label="Menu toggle"
|
|
13635
13511
|
>
|
|
13636
13512
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13637
13513
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13707,7 +13583,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13707
13583
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13708
13584
|
type="button"
|
|
13709
13585
|
aria-expanded="false"
|
|
13710
|
-
aria-label="
|
|
13586
|
+
aria-label="Menu toggle"
|
|
13711
13587
|
>
|
|
13712
13588
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13713
13589
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13739,7 +13615,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13739
13615
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13740
13616
|
type="button"
|
|
13741
13617
|
aria-expanded="false"
|
|
13742
|
-
aria-label="
|
|
13618
|
+
aria-label="Menu toggle"
|
|
13743
13619
|
>
|
|
13744
13620
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13745
13621
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13771,7 +13647,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13771
13647
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13772
13648
|
type="button"
|
|
13773
13649
|
aria-expanded="false"
|
|
13774
|
-
aria-label="
|
|
13650
|
+
aria-label="Menu toggle"
|
|
13775
13651
|
>
|
|
13776
13652
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13777
13653
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13803,7 +13679,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13803
13679
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13804
13680
|
type="button"
|
|
13805
13681
|
aria-expanded="false"
|
|
13806
|
-
aria-label="
|
|
13682
|
+
aria-label="Menu toggle"
|
|
13807
13683
|
>
|
|
13808
13684
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13809
13685
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13835,7 +13711,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13835
13711
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13836
13712
|
type="button"
|
|
13837
13713
|
aria-expanded="false"
|
|
13838
|
-
aria-label="
|
|
13714
|
+
aria-label="Menu toggle"
|
|
13839
13715
|
>
|
|
13840
13716
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13841
13717
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13904,7 +13780,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13904
13780
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13905
13781
|
type="button"
|
|
13906
13782
|
aria-expanded="false"
|
|
13907
|
-
aria-label="
|
|
13783
|
+
aria-label="Menu toggle"
|
|
13908
13784
|
>
|
|
13909
13785
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13910
13786
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -13976,7 +13852,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
13976
13852
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
13977
13853
|
type="button"
|
|
13978
13854
|
aria-expanded="false"
|
|
13979
|
-
aria-label="
|
|
13855
|
+
aria-label="Menu toggle"
|
|
13980
13856
|
>
|
|
13981
13857
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
13982
13858
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -14008,7 +13884,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
14008
13884
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
14009
13885
|
type="button"
|
|
14010
13886
|
aria-expanded="false"
|
|
14011
|
-
aria-label="
|
|
13887
|
+
aria-label="Menu toggle"
|
|
14012
13888
|
>
|
|
14013
13889
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
14014
13890
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -14040,7 +13916,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
14040
13916
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
14041
13917
|
type="button"
|
|
14042
13918
|
aria-expanded="false"
|
|
14043
|
-
aria-label="
|
|
13919
|
+
aria-label="Menu toggle"
|
|
14044
13920
|
>
|
|
14045
13921
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
14046
13922
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -14072,7 +13948,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
14072
13948
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
14073
13949
|
type="button"
|
|
14074
13950
|
aria-expanded="false"
|
|
14075
|
-
aria-label="
|
|
13951
|
+
aria-label="Menu toggle"
|
|
14076
13952
|
>
|
|
14077
13953
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
14078
13954
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -14104,7 +13980,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
14104
13980
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
14105
13981
|
type="button"
|
|
14106
13982
|
aria-expanded="false"
|
|
14107
|
-
aria-label="
|
|
13983
|
+
aria-label="Menu toggle"
|
|
14108
13984
|
>
|
|
14109
13985
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
14110
13986
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -14180,7 +14056,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
14180
14056
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
14181
14057
|
type="button"
|
|
14182
14058
|
aria-expanded="false"
|
|
14183
|
-
aria-label="
|
|
14059
|
+
aria-label="Menu toggle"
|
|
14184
14060
|
>
|
|
14185
14061
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
14186
14062
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -14212,7 +14088,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
14212
14088
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
14213
14089
|
type="button"
|
|
14214
14090
|
aria-expanded="false"
|
|
14215
|
-
aria-label="
|
|
14091
|
+
aria-label="Menu toggle"
|
|
14216
14092
|
>
|
|
14217
14093
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
14218
14094
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -14244,7 +14120,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
14244
14120
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
14245
14121
|
type="button"
|
|
14246
14122
|
aria-expanded="false"
|
|
14247
|
-
aria-label="
|
|
14123
|
+
aria-label="Menu toggle"
|
|
14248
14124
|
>
|
|
14249
14125
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
14250
14126
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -14276,7 +14152,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
14276
14152
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
14277
14153
|
type="button"
|
|
14278
14154
|
aria-expanded="false"
|
|
14279
|
-
aria-label="
|
|
14155
|
+
aria-label="Menu toggle"
|
|
14280
14156
|
>
|
|
14281
14157
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
14282
14158
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -14308,7 +14184,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
14308
14184
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
14309
14185
|
type="button"
|
|
14310
14186
|
aria-expanded="false"
|
|
14311
|
-
aria-label="
|
|
14187
|
+
aria-label="Menu toggle"
|
|
14312
14188
|
>
|
|
14313
14189
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
14314
14190
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -14384,7 +14260,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
14384
14260
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
14385
14261
|
type="button"
|
|
14386
14262
|
aria-expanded="false"
|
|
14387
|
-
aria-label="
|
|
14263
|
+
aria-label="Menu toggle"
|
|
14388
14264
|
>
|
|
14389
14265
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
14390
14266
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -14416,7 +14292,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
14416
14292
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
14417
14293
|
type="button"
|
|
14418
14294
|
aria-expanded="false"
|
|
14419
|
-
aria-label="
|
|
14295
|
+
aria-label="Menu toggle"
|
|
14420
14296
|
>
|
|
14421
14297
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
14422
14298
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -14448,7 +14324,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
14448
14324
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
14449
14325
|
type="button"
|
|
14450
14326
|
aria-expanded="false"
|
|
14451
|
-
aria-label="
|
|
14327
|
+
aria-label="Menu toggle"
|
|
14452
14328
|
>
|
|
14453
14329
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
14454
14330
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -14480,7 +14356,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
14480
14356
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
14481
14357
|
type="button"
|
|
14482
14358
|
aria-expanded="false"
|
|
14483
|
-
aria-label="
|
|
14359
|
+
aria-label="Menu toggle"
|
|
14484
14360
|
>
|
|
14485
14361
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
14486
14362
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -14512,7 +14388,7 @@ Note: To apply padding to `.pf-v6-c-table__expandable-row`, wrap the content in
|
|
|
14512
14388
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
14513
14389
|
type="button"
|
|
14514
14390
|
aria-expanded="false"
|
|
14515
|
-
aria-label="
|
|
14391
|
+
aria-label="Menu toggle"
|
|
14516
14392
|
>
|
|
14517
14393
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
14518
14394
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -19813,7 +19689,7 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
19813
19689
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
19814
19690
|
type="button"
|
|
19815
19691
|
aria-expanded="false"
|
|
19816
|
-
aria-label="
|
|
19692
|
+
aria-label="Menu toggle"
|
|
19817
19693
|
>
|
|
19818
19694
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
19819
19695
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -19866,7 +19742,7 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
19866
19742
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
19867
19743
|
type="button"
|
|
19868
19744
|
aria-expanded="false"
|
|
19869
|
-
aria-label="
|
|
19745
|
+
aria-label="Menu toggle"
|
|
19870
19746
|
>
|
|
19871
19747
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
19872
19748
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -19922,7 +19798,7 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
19922
19798
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
19923
19799
|
type="button"
|
|
19924
19800
|
aria-expanded="false"
|
|
19925
|
-
aria-label="
|
|
19801
|
+
aria-label="Menu toggle"
|
|
19926
19802
|
>
|
|
19927
19803
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
19928
19804
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -19975,7 +19851,7 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
19975
19851
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
19976
19852
|
type="button"
|
|
19977
19853
|
aria-expanded="false"
|
|
19978
|
-
aria-label="
|
|
19854
|
+
aria-label="Menu toggle"
|
|
19979
19855
|
>
|
|
19980
19856
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
19981
19857
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -20595,7 +20471,7 @@ Basic striped table rows are supported on tables with a single `<tbody>` element
|
|
|
20595
20471
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
20596
20472
|
type="button"
|
|
20597
20473
|
aria-expanded="false"
|
|
20598
|
-
aria-label="
|
|
20474
|
+
aria-label="Menu toggle"
|
|
20599
20475
|
>
|
|
20600
20476
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
20601
20477
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -20676,7 +20552,7 @@ Basic striped table rows are supported on tables with a single `<tbody>` element
|
|
|
20676
20552
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
20677
20553
|
type="button"
|
|
20678
20554
|
aria-expanded="false"
|
|
20679
|
-
aria-label="
|
|
20555
|
+
aria-label="Menu toggle"
|
|
20680
20556
|
>
|
|
20681
20557
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
20682
20558
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -20750,7 +20626,7 @@ Basic striped table rows are supported on tables with a single `<tbody>` element
|
|
|
20750
20626
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
20751
20627
|
type="button"
|
|
20752
20628
|
aria-expanded="false"
|
|
20753
|
-
aria-label="
|
|
20629
|
+
aria-label="Menu toggle"
|
|
20754
20630
|
>
|
|
20755
20631
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
20756
20632
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -20827,7 +20703,7 @@ Basic striped table rows are supported on tables with a single `<tbody>` element
|
|
|
20827
20703
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
20828
20704
|
type="button"
|
|
20829
20705
|
aria-expanded="false"
|
|
20830
|
-
aria-label="
|
|
20706
|
+
aria-label="Menu toggle"
|
|
20831
20707
|
>
|
|
20832
20708
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
20833
20709
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|