@patternfly/patternfly 4.161.0 → 4.163.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/DataList/data-list.scss +1 -1
- package/components/DescriptionList/description-list.css +14 -0
- package/components/DescriptionList/description-list.scss +19 -0
- package/components/Dropdown/dropdown.css +19 -11
- package/components/Dropdown/dropdown.scss +35 -21
- package/components/Table/table.css +14 -3
- package/components/Table/table.scss +16 -3
- package/components/_all.scss +88 -88
- package/docs/components/DescriptionList/examples/DescriptionList.md +174 -0
- package/docs/components/Dropdown/examples/Dropdown.css +2 -1
- package/docs/components/Dropdown/examples/Dropdown.md +229 -0
- package/docs/components/Table/examples/Table.md +1029 -883
- package/docs/demos/Table/examples/Table.md +100 -100
- package/package.json +7 -7
- package/patternfly-addons.scss +10 -10
- package/patternfly-base-no-reset.scss +1 -1
- package/patternfly-no-reset.css +47 -14
- package/patternfly-no-reset.scss +1 -1
- package/patternfly.css +47 -14
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/patternfly.scss +1 -1
|
@@ -250,11 +250,13 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
250
250
|
<thead>
|
|
251
251
|
<tr role="row">
|
|
252
252
|
<td class="pf-c-table__check" role="cell">
|
|
253
|
-
<
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
253
|
+
<label>
|
|
254
|
+
<input
|
|
255
|
+
type="checkbox"
|
|
256
|
+
name="table-checkboxes-and-actions-checkrowthead"
|
|
257
|
+
aria-label="Select all rows"
|
|
258
|
+
/>
|
|
259
|
+
</label>
|
|
258
260
|
</td>
|
|
259
261
|
<th role="columnheader" scope="col">Repositories</th>
|
|
260
262
|
<th role="columnheader" scope="col">Branches</th>
|
|
@@ -268,13 +270,15 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
268
270
|
<tbody role="rowgroup">
|
|
269
271
|
<tr role="row">
|
|
270
272
|
<td class="pf-c-table__check" role="cell">
|
|
271
|
-
<
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
273
|
+
<label>
|
|
274
|
+
<input
|
|
275
|
+
type="checkbox"
|
|
276
|
+
name="table-checkboxes-and-actions-checkrow1"
|
|
277
|
+
aria-labelledby="table-checkboxes-and-actions-node1"
|
|
278
|
+
/>
|
|
279
|
+
</label>
|
|
276
280
|
</td>
|
|
277
|
-
<th role="columnheader" data-label="
|
|
281
|
+
<th role="columnheader" data-label="Data label name">
|
|
278
282
|
<div id="table-checkboxes-and-actions-node1">Node 1</div>
|
|
279
283
|
</th>
|
|
280
284
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -329,17 +333,17 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
329
333
|
|
|
330
334
|
<tr role="row">
|
|
331
335
|
<td class="pf-c-table__check" role="cell">
|
|
332
|
-
<
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
336
|
+
<label>
|
|
337
|
+
<input
|
|
338
|
+
type="checkbox"
|
|
339
|
+
name="table-checkboxes-and-actions-checkrow2"
|
|
340
|
+
aria-labelledby="table-checkboxes-and-actions-node2"
|
|
341
|
+
/>
|
|
342
|
+
</label>
|
|
337
343
|
</td>
|
|
338
|
-
<th role="columnheader" data-label="
|
|
339
|
-
<div>
|
|
340
|
-
|
|
341
|
-
<a href="#">siemur/test-space</a>
|
|
342
|
-
</div>
|
|
344
|
+
<th role="columnheader" data-label="Data label name">
|
|
345
|
+
<div id="table-checkboxes-and-actions-node2">Node 2</div>
|
|
346
|
+
<a href="#">siemur/test-space</a>
|
|
343
347
|
</th>
|
|
344
348
|
<td role="cell" data-label="Branches">10</td>
|
|
345
349
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -393,17 +397,17 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
393
397
|
|
|
394
398
|
<tr role="row">
|
|
395
399
|
<td class="pf-c-table__check" role="cell">
|
|
396
|
-
<
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
400
|
+
<label>
|
|
401
|
+
<input
|
|
402
|
+
type="checkbox"
|
|
403
|
+
name="table-checkboxes-and-actions-checkrow3"
|
|
404
|
+
aria-labelledby="table-checkboxes-and-actions-node3"
|
|
405
|
+
/>
|
|
406
|
+
</label>
|
|
401
407
|
</td>
|
|
402
|
-
<th role="columnheader" data-label="
|
|
403
|
-
<div>
|
|
404
|
-
|
|
405
|
-
<a href="#">siemur/test-space</a>
|
|
406
|
-
</div>
|
|
408
|
+
<th role="columnheader" data-label="Data label name">
|
|
409
|
+
<div id="table-checkboxes-and-actions-node3">Node 3</div>
|
|
410
|
+
<a href="#">siemur/test-space</a>
|
|
407
411
|
</th>
|
|
408
412
|
<td role="cell" data-label="Branches">10</td>
|
|
409
413
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -457,17 +461,17 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
457
461
|
|
|
458
462
|
<tr role="row">
|
|
459
463
|
<td class="pf-c-table__check" role="cell">
|
|
460
|
-
<
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
464
|
+
<label>
|
|
465
|
+
<input
|
|
466
|
+
type="checkbox"
|
|
467
|
+
name="table-checkboxes-and-actions-checkrow4"
|
|
468
|
+
aria-labelledby="table-checkboxes-and-actions-node4"
|
|
469
|
+
/>
|
|
470
|
+
</label>
|
|
465
471
|
</td>
|
|
466
|
-
<th role="columnheader" data-label="
|
|
467
|
-
<div>
|
|
468
|
-
|
|
469
|
-
<a href="#">siemur/test-space</a>
|
|
470
|
-
</div>
|
|
472
|
+
<th role="columnheader" data-label="Data label name">
|
|
473
|
+
<div id="table-checkboxes-and-actions-node4">Node 4</div>
|
|
474
|
+
<a href="#">siemur/test-space</a>
|
|
471
475
|
</th>
|
|
472
476
|
<td role="cell" data-label="Branches">10</td>
|
|
473
477
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -547,13 +551,15 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
547
551
|
<tbody role="rowgroup">
|
|
548
552
|
<tr role="row">
|
|
549
553
|
<td class="pf-c-table__check" role="cell">
|
|
550
|
-
<
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
554
|
+
<label>
|
|
555
|
+
<input
|
|
556
|
+
type="radio"
|
|
557
|
+
name="table-single-select-radio-radio"
|
|
558
|
+
aria-labelledby="table-single-select-radio-node1"
|
|
559
|
+
/>
|
|
560
|
+
</label>
|
|
555
561
|
</td>
|
|
556
|
-
<th role="columnheader" data-label="
|
|
562
|
+
<th role="columnheader" data-label="Data label name">
|
|
557
563
|
<div id="table-single-select-radio-node1">Node 1</div>
|
|
558
564
|
</th>
|
|
559
565
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -608,17 +614,17 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
608
614
|
|
|
609
615
|
<tr role="row">
|
|
610
616
|
<td class="pf-c-table__check" role="cell">
|
|
611
|
-
<
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
617
|
+
<label>
|
|
618
|
+
<input
|
|
619
|
+
type="radio"
|
|
620
|
+
name="table-single-select-radio-radio"
|
|
621
|
+
aria-labelledby="table-single-select-radio-node2"
|
|
622
|
+
/>
|
|
623
|
+
</label>
|
|
616
624
|
</td>
|
|
617
|
-
<th role="columnheader" data-label="
|
|
618
|
-
<div>
|
|
619
|
-
|
|
620
|
-
<a href="#">siemur/test-space</a>
|
|
621
|
-
</div>
|
|
625
|
+
<th role="columnheader" data-label="Data label name">
|
|
626
|
+
<div id="table-single-select-radio-node2">Node 2</div>
|
|
627
|
+
<a href="#">siemur/test-space</a>
|
|
622
628
|
</th>
|
|
623
629
|
<td role="cell" data-label="Branches">10</td>
|
|
624
630
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -672,17 +678,17 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
672
678
|
|
|
673
679
|
<tr role="row">
|
|
674
680
|
<td class="pf-c-table__check" role="cell">
|
|
675
|
-
<
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
681
|
+
<label>
|
|
682
|
+
<input
|
|
683
|
+
type="radio"
|
|
684
|
+
name="table-single-select-radio-radio"
|
|
685
|
+
aria-labelledby="table-single-select-radio-node3"
|
|
686
|
+
/>
|
|
687
|
+
</label>
|
|
680
688
|
</td>
|
|
681
|
-
<th role="columnheader" data-label="
|
|
682
|
-
<div>
|
|
683
|
-
|
|
684
|
-
<a href="#">siemur/test-space</a>
|
|
685
|
-
</div>
|
|
689
|
+
<th role="columnheader" data-label="Data label name">
|
|
690
|
+
<div id="table-single-select-radio-node3">Node 3</div>
|
|
691
|
+
<a href="#">siemur/test-space</a>
|
|
686
692
|
</th>
|
|
687
693
|
<td role="cell" data-label="Branches">10</td>
|
|
688
694
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -736,17 +742,17 @@ These classes can be used to ensure that the table changes between the tabular a
|
|
|
736
742
|
|
|
737
743
|
<tr role="row">
|
|
738
744
|
<td class="pf-c-table__check" role="cell">
|
|
739
|
-
<
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
745
|
+
<label>
|
|
746
|
+
<input
|
|
747
|
+
type="radio"
|
|
748
|
+
name="table-single-select-radio-radio"
|
|
749
|
+
aria-labelledby="table-single-select-radio-node4"
|
|
750
|
+
/>
|
|
751
|
+
</label>
|
|
744
752
|
</td>
|
|
745
|
-
<th role="columnheader" data-label="
|
|
746
|
-
<div>
|
|
747
|
-
|
|
748
|
-
<a href="#">siemur/test-space</a>
|
|
749
|
-
</div>
|
|
753
|
+
<th role="columnheader" data-label="Data label name">
|
|
754
|
+
<div id="table-single-select-radio-node4">Node 4</div>
|
|
755
|
+
<a href="#">siemur/test-space</a>
|
|
750
756
|
</th>
|
|
751
757
|
<td role="cell" data-label="Branches">10</td>
|
|
752
758
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -836,11 +842,13 @@ When header cells are empty or they contain interactive elements, `<th>` should
|
|
|
836
842
|
<tr role="row">
|
|
837
843
|
<td></td>
|
|
838
844
|
<td class="pf-c-table__check" role="cell">
|
|
839
|
-
<
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
845
|
+
<label>
|
|
846
|
+
<input
|
|
847
|
+
type="checkbox"
|
|
848
|
+
name="table-expandable-checkrowthead"
|
|
849
|
+
aria-label="Select all rows"
|
|
850
|
+
/>
|
|
851
|
+
</label>
|
|
844
852
|
</td>
|
|
845
853
|
<th
|
|
846
854
|
class="pf-m-width-30 pf-c-table__sort pf-m-selected"
|
|
@@ -910,17 +918,17 @@ When header cells are empty or they contain interactive elements, `<th>` should
|
|
|
910
918
|
</td>
|
|
911
919
|
|
|
912
920
|
<td class="pf-c-table__check" role="cell">
|
|
913
|
-
<
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
921
|
+
<label>
|
|
922
|
+
<input
|
|
923
|
+
type="checkbox"
|
|
924
|
+
name="table-expandable-checkrow1"
|
|
925
|
+
aria-labelledby="table-expandable-node1"
|
|
926
|
+
/>
|
|
927
|
+
</label>
|
|
918
928
|
</td>
|
|
919
|
-
<th role="columnheader" data-label="
|
|
920
|
-
<div>
|
|
921
|
-
|
|
922
|
-
<a href="#">siemur/test-space</a>
|
|
923
|
-
</div>
|
|
929
|
+
<th role="columnheader" data-label="Data label name">
|
|
930
|
+
<div id="table-expandable-node1">Node 1</div>
|
|
931
|
+
<a href="#">siemur/test-space</a>
|
|
924
932
|
</th>
|
|
925
933
|
<td role="cell" data-label="Branches">10</td>
|
|
926
934
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -1002,17 +1010,17 @@ When header cells are empty or they contain interactive elements, `<th>` should
|
|
|
1002
1010
|
</td>
|
|
1003
1011
|
|
|
1004
1012
|
<td class="pf-c-table__check" role="cell">
|
|
1005
|
-
<
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1013
|
+
<label>
|
|
1014
|
+
<input
|
|
1015
|
+
type="checkbox"
|
|
1016
|
+
name="table-expandable-checkrow2"
|
|
1017
|
+
aria-labelledby="table-expandable-node2"
|
|
1018
|
+
/>
|
|
1019
|
+
</label>
|
|
1010
1020
|
</td>
|
|
1011
|
-
<th role="columnheader" data-label="
|
|
1012
|
-
<div>
|
|
1013
|
-
|
|
1014
|
-
<a href="#">siemur/test-space</a>
|
|
1015
|
-
</div>
|
|
1021
|
+
<th role="columnheader" data-label="Data label name">
|
|
1022
|
+
<div id="table-expandable-node2">Node 2</div>
|
|
1023
|
+
<a href="#">siemur/test-space</a>
|
|
1016
1024
|
</th>
|
|
1017
1025
|
<td role="cell" data-label="Branches">10</td>
|
|
1018
1026
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -1092,17 +1100,17 @@ When header cells are empty or they contain interactive elements, `<th>` should
|
|
|
1092
1100
|
</td>
|
|
1093
1101
|
|
|
1094
1102
|
<td class="pf-c-table__check" role="cell">
|
|
1095
|
-
<
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1103
|
+
<label>
|
|
1104
|
+
<input
|
|
1105
|
+
type="checkbox"
|
|
1106
|
+
name="table-expandable-checkrow3"
|
|
1107
|
+
aria-labelledby="table-expandable-node3"
|
|
1108
|
+
/>
|
|
1109
|
+
</label>
|
|
1100
1110
|
</td>
|
|
1101
|
-
<th role="columnheader" data-label="
|
|
1102
|
-
<div>
|
|
1103
|
-
|
|
1104
|
-
<a href="#">siemur/test-space</a>
|
|
1105
|
-
</div>
|
|
1111
|
+
<th role="columnheader" data-label="Data label name">
|
|
1112
|
+
<div id="table-expandable-node3">Node 3</div>
|
|
1113
|
+
<a href="#">siemur/test-space</a>
|
|
1106
1114
|
</th>
|
|
1107
1115
|
<td role="cell" data-label="Branches">10</td>
|
|
1108
1116
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -1182,17 +1190,17 @@ When header cells are empty or they contain interactive elements, `<th>` should
|
|
|
1182
1190
|
</td>
|
|
1183
1191
|
|
|
1184
1192
|
<td class="pf-c-table__check" role="cell">
|
|
1185
|
-
<
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1193
|
+
<label>
|
|
1194
|
+
<input
|
|
1195
|
+
type="checkbox"
|
|
1196
|
+
name="table-expandable-checkrow4"
|
|
1197
|
+
aria-labelledby="table-expandable-node4"
|
|
1198
|
+
/>
|
|
1199
|
+
</label>
|
|
1190
1200
|
</td>
|
|
1191
|
-
<th role="columnheader" data-label="
|
|
1192
|
-
<div>
|
|
1193
|
-
|
|
1194
|
-
<a href="#">siemur/test-space</a>
|
|
1195
|
-
</div>
|
|
1201
|
+
<th role="columnheader" data-label="Data label name">
|
|
1202
|
+
<div id="table-expandable-node4">Node 4</div>
|
|
1203
|
+
<a href="#">siemur/test-space</a>
|
|
1196
1204
|
</th>
|
|
1197
1205
|
<td role="cell" data-label="Branches">10</td>
|
|
1198
1206
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -1275,11 +1283,13 @@ When header cells are empty or they contain interactive elements, `<th>` should
|
|
|
1275
1283
|
<tr role="row">
|
|
1276
1284
|
<td></td>
|
|
1277
1285
|
<td class="pf-c-table__check" role="cell">
|
|
1278
|
-
<
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1286
|
+
<label>
|
|
1287
|
+
<input
|
|
1288
|
+
type="checkbox"
|
|
1289
|
+
name="table-expandable-nested-table-checkrowthead"
|
|
1290
|
+
aria-label="Select all rows"
|
|
1291
|
+
/>
|
|
1292
|
+
</label>
|
|
1283
1293
|
</td>
|
|
1284
1294
|
<th
|
|
1285
1295
|
class="pf-m-width-30 pf-c-table__sort pf-m-selected"
|
|
@@ -1349,17 +1359,17 @@ When header cells are empty or they contain interactive elements, `<th>` should
|
|
|
1349
1359
|
</td>
|
|
1350
1360
|
|
|
1351
1361
|
<td class="pf-c-table__check" role="cell">
|
|
1352
|
-
<
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1362
|
+
<label>
|
|
1363
|
+
<input
|
|
1364
|
+
type="checkbox"
|
|
1365
|
+
name="table-expandable-nested-table-checkrow1"
|
|
1366
|
+
aria-labelledby="table-expandable-nested-table-node1"
|
|
1367
|
+
/>
|
|
1368
|
+
</label>
|
|
1357
1369
|
</td>
|
|
1358
|
-
<th role="columnheader" data-label="
|
|
1359
|
-
<div>
|
|
1360
|
-
|
|
1361
|
-
<a href="#">siemur/test-space</a>
|
|
1362
|
-
</div>
|
|
1370
|
+
<th role="columnheader" data-label="Data label name">
|
|
1371
|
+
<div id="table-expandable-nested-table-node1">Node 1</div>
|
|
1372
|
+
<a href="#">siemur/test-space</a>
|
|
1363
1373
|
</th>
|
|
1364
1374
|
<td role="cell" data-label="Branches">10</td>
|
|
1365
1375
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -1492,17 +1502,17 @@ When header cells are empty or they contain interactive elements, `<th>` should
|
|
|
1492
1502
|
</td>
|
|
1493
1503
|
|
|
1494
1504
|
<td class="pf-c-table__check" role="cell">
|
|
1495
|
-
<
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1505
|
+
<label>
|
|
1506
|
+
<input
|
|
1507
|
+
type="checkbox"
|
|
1508
|
+
name="table-expandable-nested-table-checkrow2"
|
|
1509
|
+
aria-labelledby="table-expandable-nested-table-node2"
|
|
1510
|
+
/>
|
|
1511
|
+
</label>
|
|
1500
1512
|
</td>
|
|
1501
|
-
<th role="columnheader" data-label="
|
|
1502
|
-
<div>
|
|
1503
|
-
|
|
1504
|
-
<a href="#">siemur/test-space</a>
|
|
1505
|
-
</div>
|
|
1513
|
+
<th role="columnheader" data-label="Data label name">
|
|
1514
|
+
<div id="table-expandable-nested-table-node2">Node 2</div>
|
|
1515
|
+
<a href="#">siemur/test-space</a>
|
|
1506
1516
|
</th>
|
|
1507
1517
|
<td role="cell" data-label="Branches">10</td>
|
|
1508
1518
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -1587,17 +1597,17 @@ When header cells are empty or they contain interactive elements, `<th>` should
|
|
|
1587
1597
|
</td>
|
|
1588
1598
|
|
|
1589
1599
|
<td class="pf-c-table__check" role="cell">
|
|
1590
|
-
<
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1600
|
+
<label>
|
|
1601
|
+
<input
|
|
1602
|
+
type="checkbox"
|
|
1603
|
+
name="table-expandable-nested-table-checkrow3"
|
|
1604
|
+
aria-labelledby="table-expandable-nested-table-node3"
|
|
1605
|
+
/>
|
|
1606
|
+
</label>
|
|
1595
1607
|
</td>
|
|
1596
|
-
<th role="columnheader" data-label="
|
|
1597
|
-
<div>
|
|
1598
|
-
|
|
1599
|
-
<a href="#">siemur/test-space</a>
|
|
1600
|
-
</div>
|
|
1608
|
+
<th role="columnheader" data-label="Data label name">
|
|
1609
|
+
<div id="table-expandable-nested-table-node3">Node 3</div>
|
|
1610
|
+
<a href="#">siemur/test-space</a>
|
|
1601
1611
|
</th>
|
|
1602
1612
|
<td role="cell" data-label="Branches">10</td>
|
|
1603
1613
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -1682,17 +1692,17 @@ When header cells are empty or they contain interactive elements, `<th>` should
|
|
|
1682
1692
|
</td>
|
|
1683
1693
|
|
|
1684
1694
|
<td class="pf-c-table__check" role="cell">
|
|
1685
|
-
<
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1695
|
+
<label>
|
|
1696
|
+
<input
|
|
1697
|
+
type="checkbox"
|
|
1698
|
+
name="table-expandable-nested-table-checkrow4"
|
|
1699
|
+
aria-labelledby="table-expandable-nested-table-node4"
|
|
1700
|
+
/>
|
|
1701
|
+
</label>
|
|
1690
1702
|
</td>
|
|
1691
|
-
<th role="columnheader" data-label="
|
|
1692
|
-
<div>
|
|
1693
|
-
|
|
1694
|
-
<a href="#">siemur/test-space</a>
|
|
1695
|
-
</div>
|
|
1703
|
+
<th role="columnheader" data-label="Data label name">
|
|
1704
|
+
<div id="table-expandable-nested-table-node4">Node 4</div>
|
|
1705
|
+
<a href="#">siemur/test-space</a>
|
|
1696
1706
|
</th>
|
|
1697
1707
|
<td role="cell" data-label="Branches">10</td>
|
|
1698
1708
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -1853,7 +1863,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
1853
1863
|
<tbody class="pf-m-expanded" role="rowgroup">
|
|
1854
1864
|
<tr class="pf-c-table__control-row" role="row">
|
|
1855
1865
|
<td
|
|
1856
|
-
class="pf-c-table__compound-expansion-
|
|
1866
|
+
class="pf-c-table__compound-expansion-toggle pf-m-expanded"
|
|
1857
1867
|
role="cell"
|
|
1858
1868
|
data-label="Repositories"
|
|
1859
1869
|
>
|
|
@@ -5125,11 +5135,13 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
5125
5135
|
<thead>
|
|
5126
5136
|
<tr role="row">
|
|
5127
5137
|
<td class="pf-c-table__check" role="cell">
|
|
5128
|
-
<
|
|
5129
|
-
|
|
5130
|
-
|
|
5131
|
-
|
|
5132
|
-
|
|
5138
|
+
<label>
|
|
5139
|
+
<input
|
|
5140
|
+
type="checkbox"
|
|
5141
|
+
name="table-compact-checkrowthead"
|
|
5142
|
+
aria-label="Select all rows"
|
|
5143
|
+
/>
|
|
5144
|
+
</label>
|
|
5133
5145
|
</td>
|
|
5134
5146
|
<th role="columnheader" scope="col">Contributor</th>
|
|
5135
5147
|
<th role="columnheader" scope="col">Position</th>
|
|
@@ -5145,14 +5157,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
5145
5157
|
<tbody role="rowgroup">
|
|
5146
5158
|
<tr role="row">
|
|
5147
5159
|
<td class="pf-c-table__check" role="cell">
|
|
5148
|
-
<
|
|
5149
|
-
|
|
5150
|
-
|
|
5151
|
-
|
|
5152
|
-
|
|
5160
|
+
<label>
|
|
5161
|
+
<input
|
|
5162
|
+
type="checkbox"
|
|
5163
|
+
name="table-compact-checkrow1"
|
|
5164
|
+
aria-labelledby="table-compact-node1"
|
|
5165
|
+
/>
|
|
5166
|
+
</label>
|
|
5153
5167
|
</td>
|
|
5154
|
-
<th role="columnheader" data-label="
|
|
5155
|
-
<
|
|
5168
|
+
<th role="columnheader" data-label="Data label name">
|
|
5169
|
+
<div id="table-compact-node1">Sam Jones</div>
|
|
5156
5170
|
</th>
|
|
5157
5171
|
<td role="cell" data-label="Position">CSS guru</td>
|
|
5158
5172
|
<td role="cell" data-label="Location">Not too sure</td>
|
|
@@ -5212,14 +5226,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
5212
5226
|
|
|
5213
5227
|
<tr role="row">
|
|
5214
5228
|
<td class="pf-c-table__check" role="cell">
|
|
5215
|
-
<
|
|
5216
|
-
|
|
5217
|
-
|
|
5218
|
-
|
|
5219
|
-
|
|
5229
|
+
<label>
|
|
5230
|
+
<input
|
|
5231
|
+
type="checkbox"
|
|
5232
|
+
name="table-compact-checkrow2"
|
|
5233
|
+
aria-labelledby="table-compact-node2"
|
|
5234
|
+
/>
|
|
5235
|
+
</label>
|
|
5220
5236
|
</td>
|
|
5221
|
-
<th role="columnheader" data-label="
|
|
5222
|
-
<
|
|
5237
|
+
<th role="columnheader" data-label="Data label name">
|
|
5238
|
+
<div id="table-compact-node2">Amy Wilson</div>
|
|
5223
5239
|
</th>
|
|
5224
5240
|
<td role="cell" data-label="Position">Visual design</td>
|
|
5225
5241
|
<td role="cell" data-label="Location">Raleigh</td>
|
|
@@ -5279,14 +5295,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
5279
5295
|
|
|
5280
5296
|
<tr role="row">
|
|
5281
5297
|
<td class="pf-c-table__check" role="cell">
|
|
5282
|
-
<
|
|
5283
|
-
|
|
5284
|
-
|
|
5285
|
-
|
|
5286
|
-
|
|
5298
|
+
<label>
|
|
5299
|
+
<input
|
|
5300
|
+
type="checkbox"
|
|
5301
|
+
name="table-compact-checkrow3"
|
|
5302
|
+
aria-labelledby="table-compact-node3"
|
|
5303
|
+
/>
|
|
5304
|
+
</label>
|
|
5287
5305
|
</td>
|
|
5288
|
-
<th role="columnheader" data-label="
|
|
5289
|
-
<
|
|
5306
|
+
<th role="columnheader" data-label="Data label name">
|
|
5307
|
+
<div id="table-compact-node3">Steve Wilson</div>
|
|
5290
5308
|
</th>
|
|
5291
5309
|
<td role="cell" data-label="Position">Visual design lead</td>
|
|
5292
5310
|
<td role="cell" data-label="Location">Westford</td>
|
|
@@ -5346,14 +5364,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
5346
5364
|
|
|
5347
5365
|
<tr role="row">
|
|
5348
5366
|
<td class="pf-c-table__check" role="cell">
|
|
5349
|
-
<
|
|
5350
|
-
|
|
5351
|
-
|
|
5352
|
-
|
|
5353
|
-
|
|
5367
|
+
<label>
|
|
5368
|
+
<input
|
|
5369
|
+
type="checkbox"
|
|
5370
|
+
name="table-compact-checkrow4"
|
|
5371
|
+
aria-labelledby="table-compact-node4"
|
|
5372
|
+
/>
|
|
5373
|
+
</label>
|
|
5354
5374
|
</td>
|
|
5355
|
-
<th role="columnheader" data-label="
|
|
5356
|
-
<
|
|
5375
|
+
<th role="columnheader" data-label="Data label name">
|
|
5376
|
+
<div id="table-compact-node4">Emma Jackson</div>
|
|
5357
5377
|
</th>
|
|
5358
5378
|
<td role="cell" data-label="Position">Interaction design</td>
|
|
5359
5379
|
<td role="cell" data-label="Location">Westford</td>
|
|
@@ -5428,11 +5448,13 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
5428
5448
|
<tr role="row">
|
|
5429
5449
|
<td></td>
|
|
5430
5450
|
<td class="pf-c-table__check" role="cell">
|
|
5431
|
-
<
|
|
5432
|
-
|
|
5433
|
-
|
|
5434
|
-
|
|
5435
|
-
|
|
5451
|
+
<label>
|
|
5452
|
+
<input
|
|
5453
|
+
type="checkbox"
|
|
5454
|
+
name="table-compact-expandable-checkrowthead"
|
|
5455
|
+
aria-label="Select all rows"
|
|
5456
|
+
/>
|
|
5457
|
+
</label>
|
|
5436
5458
|
</td>
|
|
5437
5459
|
<th class="pf-m-width-30" role="columnheader" scope="col">Repositories</th>
|
|
5438
5460
|
<th role="columnheader" scope="col">Branches</th>
|
|
@@ -5460,14 +5482,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
5460
5482
|
</td>
|
|
5461
5483
|
|
|
5462
5484
|
<td class="pf-c-table__check" role="cell">
|
|
5463
|
-
<
|
|
5464
|
-
|
|
5465
|
-
|
|
5466
|
-
|
|
5467
|
-
|
|
5485
|
+
<label>
|
|
5486
|
+
<input
|
|
5487
|
+
type="checkbox"
|
|
5488
|
+
name="table-compact-expandable-checkrow1"
|
|
5489
|
+
aria-labelledby="table-compact-expandable-node1"
|
|
5490
|
+
/>
|
|
5491
|
+
</label>
|
|
5468
5492
|
</td>
|
|
5469
|
-
<th role="columnheader" data-label="
|
|
5470
|
-
<
|
|
5493
|
+
<th role="columnheader" data-label="Data label name">
|
|
5494
|
+
<div id="table-compact-expandable-node1">Node 1</div>
|
|
5471
5495
|
</th>
|
|
5472
5496
|
<td role="cell" data-label="Branches">10</td>
|
|
5473
5497
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -5549,14 +5573,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
5549
5573
|
</td>
|
|
5550
5574
|
|
|
5551
5575
|
<td class="pf-c-table__check" role="cell">
|
|
5552
|
-
<
|
|
5553
|
-
|
|
5554
|
-
|
|
5555
|
-
|
|
5556
|
-
|
|
5576
|
+
<label>
|
|
5577
|
+
<input
|
|
5578
|
+
type="checkbox"
|
|
5579
|
+
name="table-compact-expandable-checkrow2"
|
|
5580
|
+
aria-labelledby="table-compact-expandable-node2"
|
|
5581
|
+
/>
|
|
5582
|
+
</label>
|
|
5557
5583
|
</td>
|
|
5558
|
-
<th role="columnheader" data-label="
|
|
5559
|
-
<
|
|
5584
|
+
<th role="columnheader" data-label="Data label name">
|
|
5585
|
+
<div id="table-compact-expandable-node2">Node 2</div>
|
|
5560
5586
|
</th>
|
|
5561
5587
|
<td role="cell" data-label="Branches">10</td>
|
|
5562
5588
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -5641,14 +5667,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
5641
5667
|
</td>
|
|
5642
5668
|
|
|
5643
5669
|
<td class="pf-c-table__check" role="cell">
|
|
5644
|
-
<
|
|
5645
|
-
|
|
5646
|
-
|
|
5647
|
-
|
|
5648
|
-
|
|
5670
|
+
<label>
|
|
5671
|
+
<input
|
|
5672
|
+
type="checkbox"
|
|
5673
|
+
name="table-compact-expandable-checkrow3"
|
|
5674
|
+
aria-labelledby="table-compact-expandable-node3"
|
|
5675
|
+
/>
|
|
5676
|
+
</label>
|
|
5649
5677
|
</td>
|
|
5650
|
-
<th role="columnheader" data-label="
|
|
5651
|
-
<
|
|
5678
|
+
<th role="columnheader" data-label="Data label name">
|
|
5679
|
+
<div id="table-compact-expandable-node3">Node 3</div>
|
|
5652
5680
|
</th>
|
|
5653
5681
|
<td role="cell" data-label="Branches">10</td>
|
|
5654
5682
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -5728,14 +5756,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
5728
5756
|
</td>
|
|
5729
5757
|
|
|
5730
5758
|
<td class="pf-c-table__check" role="cell">
|
|
5731
|
-
<
|
|
5732
|
-
|
|
5733
|
-
|
|
5734
|
-
|
|
5735
|
-
|
|
5759
|
+
<label>
|
|
5760
|
+
<input
|
|
5761
|
+
type="checkbox"
|
|
5762
|
+
name="table-compact-expandable-checkrow4"
|
|
5763
|
+
aria-labelledby="table-compact-expandable-node4"
|
|
5764
|
+
/>
|
|
5765
|
+
</label>
|
|
5736
5766
|
</td>
|
|
5737
|
-
<th role="columnheader" data-label="
|
|
5738
|
-
<
|
|
5767
|
+
<th role="columnheader" data-label="Data label name">
|
|
5768
|
+
<div id="table-compact-expandable-node4">Node 4</div>
|
|
5739
5769
|
</th>
|
|
5740
5770
|
<td role="cell" data-label="Branches">10</td>
|
|
5741
5771
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -5819,15 +5849,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
5819
5849
|
</td>
|
|
5820
5850
|
|
|
5821
5851
|
<td class="pf-c-table__check" role="cell">
|
|
5822
|
-
<
|
|
5823
|
-
|
|
5824
|
-
|
|
5825
|
-
|
|
5826
|
-
|
|
5827
|
-
|
|
5828
|
-
|
|
5829
|
-
<p id="table-compact-expandable-node5">Node 5</p>
|
|
5852
|
+
<label>
|
|
5853
|
+
<input
|
|
5854
|
+
type="checkbox"
|
|
5855
|
+
name="table-compact-expandable-checkrow5"
|
|
5856
|
+
aria-labelledby="table-compact-expandable-node5"
|
|
5857
|
+
/>
|
|
5858
|
+
</label>
|
|
5830
5859
|
</td>
|
|
5860
|
+
<th role="columnheader" data-label="Data label name">
|
|
5861
|
+
<div id="table-compact-expandable-node5">Node 5</div>
|
|
5862
|
+
</th>
|
|
5831
5863
|
<td role="cell" data-label="Branches">10</td>
|
|
5832
5864
|
<td role="cell" data-label="Pull requests">25</td>
|
|
5833
5865
|
<td role="cell" data-label="Action">
|
|
@@ -5906,14 +5938,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
5906
5938
|
</td>
|
|
5907
5939
|
|
|
5908
5940
|
<td class="pf-c-table__check" role="cell">
|
|
5909
|
-
<
|
|
5910
|
-
|
|
5911
|
-
|
|
5912
|
-
|
|
5913
|
-
|
|
5941
|
+
<label>
|
|
5942
|
+
<input
|
|
5943
|
+
type="checkbox"
|
|
5944
|
+
name="table-compact-expandable-checkrow6"
|
|
5945
|
+
aria-labelledby="table-compact-expandable-node6"
|
|
5946
|
+
/>
|
|
5947
|
+
</label>
|
|
5914
5948
|
</td>
|
|
5915
|
-
<th role="columnheader" data-label="
|
|
5916
|
-
<
|
|
5949
|
+
<th role="columnheader" data-label="Data label name">
|
|
5950
|
+
<div id="table-compact-expandable-node6">Node 6</div>
|
|
5917
5951
|
</th>
|
|
5918
5952
|
<td role="cell" data-label="Branches">10</td>
|
|
5919
5953
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -6005,14 +6039,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6005
6039
|
</td>
|
|
6006
6040
|
|
|
6007
6041
|
<td class="pf-c-table__check" role="cell">
|
|
6008
|
-
<
|
|
6009
|
-
|
|
6010
|
-
|
|
6011
|
-
|
|
6012
|
-
|
|
6042
|
+
<label>
|
|
6043
|
+
<input
|
|
6044
|
+
type="checkbox"
|
|
6045
|
+
name="table-compact-expandable-checkrow7"
|
|
6046
|
+
aria-labelledby="table-compact-expandable-node7"
|
|
6047
|
+
/>
|
|
6048
|
+
</label>
|
|
6013
6049
|
</td>
|
|
6014
|
-
<th role="columnheader" data-label="
|
|
6015
|
-
<
|
|
6050
|
+
<th role="columnheader" data-label="Data label name">
|
|
6051
|
+
<div id="table-compact-expandable-node7">Node 7</div>
|
|
6016
6052
|
</th>
|
|
6017
6053
|
<td role="cell" data-label="Branches">10</td>
|
|
6018
6054
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -6092,14 +6128,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6092
6128
|
</td>
|
|
6093
6129
|
|
|
6094
6130
|
<td class="pf-c-table__check" role="cell">
|
|
6095
|
-
<
|
|
6096
|
-
|
|
6097
|
-
|
|
6098
|
-
|
|
6099
|
-
|
|
6131
|
+
<label>
|
|
6132
|
+
<input
|
|
6133
|
+
type="checkbox"
|
|
6134
|
+
name="table-compact-expandable-checkrow8"
|
|
6135
|
+
aria-labelledby="table-compact-expandable-node8"
|
|
6136
|
+
/>
|
|
6137
|
+
</label>
|
|
6100
6138
|
</td>
|
|
6101
|
-
<th role="columnheader" data-label="
|
|
6102
|
-
<
|
|
6139
|
+
<th role="columnheader" data-label="Data label name">
|
|
6140
|
+
<div id="table-compact-expandable-node8">Node 8</div>
|
|
6103
6141
|
</th>
|
|
6104
6142
|
<td role="cell" data-label="Branches">10</td>
|
|
6105
6143
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -6188,14 +6226,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6188
6226
|
</td>
|
|
6189
6227
|
|
|
6190
6228
|
<td class="pf-c-table__check" role="cell">
|
|
6191
|
-
<
|
|
6192
|
-
|
|
6193
|
-
|
|
6194
|
-
|
|
6195
|
-
|
|
6229
|
+
<label>
|
|
6230
|
+
<input
|
|
6231
|
+
type="checkbox"
|
|
6232
|
+
name="table-compact-expandable-checkrow9"
|
|
6233
|
+
aria-labelledby="table-compact-expandable-node9"
|
|
6234
|
+
/>
|
|
6235
|
+
</label>
|
|
6196
6236
|
</td>
|
|
6197
|
-
<th role="columnheader" data-label="
|
|
6198
|
-
<
|
|
6237
|
+
<th role="columnheader" data-label="Data label name">
|
|
6238
|
+
<div id="table-compact-expandable-node9">Node 9</div>
|
|
6199
6239
|
</th>
|
|
6200
6240
|
<td role="cell" data-label="Branches">10</td>
|
|
6201
6241
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -6280,11 +6320,13 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6280
6320
|
<thead>
|
|
6281
6321
|
<tr role="row">
|
|
6282
6322
|
<td class="pf-c-table__check" role="cell">
|
|
6283
|
-
<
|
|
6284
|
-
|
|
6285
|
-
|
|
6286
|
-
|
|
6287
|
-
|
|
6323
|
+
<label>
|
|
6324
|
+
<input
|
|
6325
|
+
type="checkbox"
|
|
6326
|
+
name="table-expandable-hoverable-checkrowthead"
|
|
6327
|
+
aria-label="Select all rows"
|
|
6328
|
+
/>
|
|
6329
|
+
</label>
|
|
6288
6330
|
</td>
|
|
6289
6331
|
<th
|
|
6290
6332
|
class="pf-m-width-30 pf-c-table__sort pf-m-selected"
|
|
@@ -6306,14 +6348,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6306
6348
|
</thead>
|
|
6307
6349
|
<tr class="pf-m-hoverable" role="row" tabindex="0">
|
|
6308
6350
|
<td class="pf-c-table__check" role="cell">
|
|
6309
|
-
<
|
|
6310
|
-
|
|
6311
|
-
|
|
6312
|
-
|
|
6313
|
-
|
|
6351
|
+
<label>
|
|
6352
|
+
<input
|
|
6353
|
+
type="checkbox"
|
|
6354
|
+
name="table-expandable-hoverable-checkrow1"
|
|
6355
|
+
aria-labelledby="table-expandable-hoverable-node1"
|
|
6356
|
+
/>
|
|
6357
|
+
</label>
|
|
6314
6358
|
</td>
|
|
6315
6359
|
<th role="columnheader" data-label="Repository name">
|
|
6316
|
-
<div id="table-expandable-hoverable-
|
|
6360
|
+
<div id="table-expandable-hoverable-node1">Hoverable</div>
|
|
6317
6361
|
</th>
|
|
6318
6362
|
<td class="pf-c-table__action" role="cell">
|
|
6319
6363
|
<div class="pf-c-dropdown">
|
|
@@ -6362,14 +6406,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6362
6406
|
</tr>
|
|
6363
6407
|
<tr class="pf-m-hoverable pf-m-selected" role="row" tabindex="0">
|
|
6364
6408
|
<td class="pf-c-table__check" role="cell">
|
|
6365
|
-
<
|
|
6366
|
-
|
|
6367
|
-
|
|
6368
|
-
|
|
6369
|
-
|
|
6409
|
+
<label>
|
|
6410
|
+
<input
|
|
6411
|
+
type="checkbox"
|
|
6412
|
+
name="table-expandable-hoverable-checkrow2"
|
|
6413
|
+
aria-labelledby="table-expandable-hoverable-node2"
|
|
6414
|
+
/>
|
|
6415
|
+
</label>
|
|
6370
6416
|
</td>
|
|
6371
6417
|
<th role="columnheader" data-label="Repository name">
|
|
6372
|
-
<div id="table-expandable-hoverable-
|
|
6418
|
+
<div id="table-expandable-hoverable-node2">
|
|
6373
6419
|
<b>Selected</b>
|
|
6374
6420
|
</div>
|
|
6375
6421
|
</th>
|
|
@@ -6420,14 +6466,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6420
6466
|
</tr>
|
|
6421
6467
|
<tr class="pf-m-hoverable" role="row" tabindex="0">
|
|
6422
6468
|
<td class="pf-c-table__check" role="cell">
|
|
6423
|
-
<
|
|
6424
|
-
|
|
6425
|
-
|
|
6426
|
-
|
|
6427
|
-
|
|
6469
|
+
<label>
|
|
6470
|
+
<input
|
|
6471
|
+
type="checkbox"
|
|
6472
|
+
name="table-expandable-hoverable-checkrow3"
|
|
6473
|
+
aria-labelledby="table-expandable-hoverable-node3"
|
|
6474
|
+
/>
|
|
6475
|
+
</label>
|
|
6428
6476
|
</td>
|
|
6429
6477
|
<th role="columnheader" data-label="Repository name">
|
|
6430
|
-
<div id="table-expandable-hoverable-
|
|
6478
|
+
<div id="table-expandable-hoverable-node3">Hoverable</div>
|
|
6431
6479
|
</th>
|
|
6432
6480
|
<td class="pf-c-table__action" role="cell">
|
|
6433
6481
|
<div class="pf-c-dropdown">
|
|
@@ -6476,14 +6524,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6476
6524
|
</tr>
|
|
6477
6525
|
<tr class="pf-m-hoverable" role="row" tabindex="0">
|
|
6478
6526
|
<td class="pf-c-table__check" role="cell">
|
|
6479
|
-
<
|
|
6480
|
-
|
|
6481
|
-
|
|
6482
|
-
|
|
6483
|
-
|
|
6527
|
+
<label>
|
|
6528
|
+
<input
|
|
6529
|
+
type="checkbox"
|
|
6530
|
+
name="table-expandable-hoverable-checkrow4"
|
|
6531
|
+
aria-labelledby="table-expandable-hoverable-node4"
|
|
6532
|
+
/>
|
|
6533
|
+
</label>
|
|
6484
6534
|
</td>
|
|
6485
6535
|
<th role="columnheader" data-label="Repository name">
|
|
6486
|
-
<div id="table-expandable-hoverable-
|
|
6536
|
+
<div id="table-expandable-hoverable-node4">Hoverable</div>
|
|
6487
6537
|
</th>
|
|
6488
6538
|
<td class="pf-c-table__action" role="cell">
|
|
6489
6539
|
<div class="pf-c-dropdown">
|
|
@@ -6532,14 +6582,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6532
6582
|
</tr>
|
|
6533
6583
|
<tr class="pf-m-hoverable pf-m-selected" role="row" tabindex="0">
|
|
6534
6584
|
<td class="pf-c-table__check" role="cell">
|
|
6535
|
-
<
|
|
6536
|
-
|
|
6537
|
-
|
|
6538
|
-
|
|
6539
|
-
|
|
6585
|
+
<label>
|
|
6586
|
+
<input
|
|
6587
|
+
type="checkbox"
|
|
6588
|
+
name="table-expandable-hoverable-checkrow5"
|
|
6589
|
+
aria-labelledby="table-expandable-hoverable-node5"
|
|
6590
|
+
/>
|
|
6591
|
+
</label>
|
|
6540
6592
|
</td>
|
|
6541
6593
|
<th role="columnheader" data-label="Repository name">
|
|
6542
|
-
<div id="table-expandable-hoverable-
|
|
6594
|
+
<div id="table-expandable-hoverable-node5">
|
|
6543
6595
|
<b>Selected</b>
|
|
6544
6596
|
</div>
|
|
6545
6597
|
</th>
|
|
@@ -6590,14 +6642,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6590
6642
|
</tr>
|
|
6591
6643
|
<tr class="pf-m-hoverable pf-m-selected" role="row" tabindex="0">
|
|
6592
6644
|
<td class="pf-c-table__check" role="cell">
|
|
6593
|
-
<
|
|
6594
|
-
|
|
6595
|
-
|
|
6596
|
-
|
|
6597
|
-
|
|
6645
|
+
<label>
|
|
6646
|
+
<input
|
|
6647
|
+
type="checkbox"
|
|
6648
|
+
name="table-expandable-hoverable-checkrow6"
|
|
6649
|
+
aria-labelledby="table-expandable-hoverable-node6"
|
|
6650
|
+
/>
|
|
6651
|
+
</label>
|
|
6598
6652
|
</td>
|
|
6599
6653
|
<th role="columnheader" data-label="Repository name">
|
|
6600
|
-
<div id="table-expandable-hoverable-
|
|
6654
|
+
<div id="table-expandable-hoverable-node6">
|
|
6601
6655
|
<b>Selected</b>
|
|
6602
6656
|
</div>
|
|
6603
6657
|
</th>
|
|
@@ -6648,14 +6702,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6648
6702
|
</tr>
|
|
6649
6703
|
<tr class="pf-m-hoverable pf-m-selected" role="row" tabindex="0">
|
|
6650
6704
|
<td class="pf-c-table__check" role="cell">
|
|
6651
|
-
<
|
|
6652
|
-
|
|
6653
|
-
|
|
6654
|
-
|
|
6655
|
-
|
|
6705
|
+
<label>
|
|
6706
|
+
<input
|
|
6707
|
+
type="checkbox"
|
|
6708
|
+
name="table-expandable-hoverable-checkrow7"
|
|
6709
|
+
aria-labelledby="table-expandable-hoverable-node7"
|
|
6710
|
+
/>
|
|
6711
|
+
</label>
|
|
6656
6712
|
</td>
|
|
6657
6713
|
<th role="columnheader" data-label="Repository name">
|
|
6658
|
-
<div id="table-expandable-hoverable-
|
|
6714
|
+
<div id="table-expandable-hoverable-node7">
|
|
6659
6715
|
<b>Selected</b>
|
|
6660
6716
|
</div>
|
|
6661
6717
|
</th>
|
|
@@ -6706,14 +6762,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6706
6762
|
</tr>
|
|
6707
6763
|
<tr class="pf-m-hoverable" role="row" tabindex="0">
|
|
6708
6764
|
<td class="pf-c-table__check" role="cell">
|
|
6709
|
-
<
|
|
6710
|
-
|
|
6711
|
-
|
|
6712
|
-
|
|
6713
|
-
|
|
6765
|
+
<label>
|
|
6766
|
+
<input
|
|
6767
|
+
type="checkbox"
|
|
6768
|
+
name="table-expandable-hoverable-checkrow8"
|
|
6769
|
+
aria-labelledby="table-expandable-hoverable-node8"
|
|
6770
|
+
/>
|
|
6771
|
+
</label>
|
|
6714
6772
|
</td>
|
|
6715
6773
|
<th role="columnheader" data-label="Repository name">
|
|
6716
|
-
<div id="table-expandable-hoverable-
|
|
6774
|
+
<div id="table-expandable-hoverable-node8">Hoverable</div>
|
|
6717
6775
|
</th>
|
|
6718
6776
|
<td class="pf-c-table__action" role="cell">
|
|
6719
6777
|
<div class="pf-c-dropdown">
|
|
@@ -6762,14 +6820,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6762
6820
|
</tr>
|
|
6763
6821
|
<tr class="pf-m-hoverable" role="row" tabindex="0">
|
|
6764
6822
|
<td class="pf-c-table__check" role="cell">
|
|
6765
|
-
<
|
|
6766
|
-
|
|
6767
|
-
|
|
6768
|
-
|
|
6769
|
-
|
|
6823
|
+
<label>
|
|
6824
|
+
<input
|
|
6825
|
+
type="checkbox"
|
|
6826
|
+
name="table-expandable-hoverable-checkrow9"
|
|
6827
|
+
aria-labelledby="table-expandable-hoverable-node9"
|
|
6828
|
+
/>
|
|
6829
|
+
</label>
|
|
6770
6830
|
</td>
|
|
6771
6831
|
<th role="columnheader" data-label="Repository name">
|
|
6772
|
-
<div id="table-expandable-hoverable-
|
|
6832
|
+
<div id="table-expandable-hoverable-node9">Hoverable</div>
|
|
6773
6833
|
</th>
|
|
6774
6834
|
<td class="pf-c-table__action" role="cell">
|
|
6775
6835
|
<div class="pf-c-dropdown">
|
|
@@ -6818,14 +6878,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6818
6878
|
</tr>
|
|
6819
6879
|
<tr class="pf-m-hoverable pf-m-selected" role="row" tabindex="0">
|
|
6820
6880
|
<td class="pf-c-table__check" role="cell">
|
|
6821
|
-
<
|
|
6822
|
-
|
|
6823
|
-
|
|
6824
|
-
|
|
6825
|
-
|
|
6881
|
+
<label>
|
|
6882
|
+
<input
|
|
6883
|
+
type="checkbox"
|
|
6884
|
+
name="table-expandable-hoverable-checkrow10"
|
|
6885
|
+
aria-labelledby="table-expandable-hoverable-node10"
|
|
6886
|
+
/>
|
|
6887
|
+
</label>
|
|
6826
6888
|
</td>
|
|
6827
6889
|
<th role="columnheader" data-label="Repository name">
|
|
6828
|
-
<div id="table-expandable-hoverable-
|
|
6890
|
+
<div id="table-expandable-hoverable-node10">
|
|
6829
6891
|
<b>Selected</b>
|
|
6830
6892
|
</div>
|
|
6831
6893
|
</th>
|
|
@@ -6876,14 +6938,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6876
6938
|
</tr>
|
|
6877
6939
|
<tr class="pf-m-hoverable" role="row" tabindex="0">
|
|
6878
6940
|
<td class="pf-c-table__check" role="cell">
|
|
6879
|
-
<
|
|
6880
|
-
|
|
6881
|
-
|
|
6882
|
-
|
|
6883
|
-
|
|
6941
|
+
<label>
|
|
6942
|
+
<input
|
|
6943
|
+
type="checkbox"
|
|
6944
|
+
name="table-expandable-hoverable-checkrow11"
|
|
6945
|
+
aria-labelledby="table-expandable-hoverable-node11"
|
|
6946
|
+
/>
|
|
6947
|
+
</label>
|
|
6884
6948
|
</td>
|
|
6885
6949
|
<th role="columnheader" data-label="Repository name">
|
|
6886
|
-
<div id="table-expandable-hoverable-
|
|
6950
|
+
<div id="table-expandable-hoverable-node11">Hoverable</div>
|
|
6887
6951
|
</th>
|
|
6888
6952
|
<td class="pf-c-table__action" role="cell">
|
|
6889
6953
|
<div class="pf-c-dropdown">
|
|
@@ -6947,11 +7011,13 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6947
7011
|
<tr role="row">
|
|
6948
7012
|
<td></td>
|
|
6949
7013
|
<td class="pf-c-table__check" role="cell">
|
|
6950
|
-
<
|
|
6951
|
-
|
|
6952
|
-
|
|
6953
|
-
|
|
6954
|
-
|
|
7014
|
+
<label>
|
|
7015
|
+
<input
|
|
7016
|
+
type="checkbox"
|
|
7017
|
+
name="table-tbody-expandable-hoverable-checkrowthead"
|
|
7018
|
+
aria-label="Select all rows"
|
|
7019
|
+
/>
|
|
7020
|
+
</label>
|
|
6955
7021
|
</td>
|
|
6956
7022
|
<th
|
|
6957
7023
|
class="pf-m-width-30 pf-c-table__sort pf-m-selected"
|
|
@@ -7007,10 +7073,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7007
7073
|
<td class="pf-c-table__toggle" role="cell">
|
|
7008
7074
|
<button
|
|
7009
7075
|
class="pf-c-button pf-m-plain"
|
|
7010
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
7011
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
7076
|
+
aria-labelledby="table-tbody-expandable-hoverable-node1 table-tbody-expandable-hoverable-expandable-toggle1"
|
|
7077
|
+
id="table-tbody-expandable-hoverable-expandable-toggle1"
|
|
7012
7078
|
aria-label="Details"
|
|
7013
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
7079
|
+
aria-controls="table-tbody-expandable-hoverable-content1"
|
|
7014
7080
|
>
|
|
7015
7081
|
<div class="pf-c-table__toggle-icon">
|
|
7016
7082
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7019,15 +7085,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7019
7085
|
</td>
|
|
7020
7086
|
|
|
7021
7087
|
<td class="pf-c-table__check" role="cell">
|
|
7022
|
-
<
|
|
7023
|
-
|
|
7024
|
-
|
|
7025
|
-
|
|
7026
|
-
|
|
7088
|
+
<label>
|
|
7089
|
+
<input
|
|
7090
|
+
type="checkbox"
|
|
7091
|
+
name="table-tbody-expandable-hoverable-checkrow1"
|
|
7092
|
+
aria-labelledby="table-tbody-expandable-hoverable-node1"
|
|
7093
|
+
/>
|
|
7094
|
+
</label>
|
|
7027
7095
|
</td>
|
|
7028
7096
|
<th role="columnheader" data-label="Repository name">
|
|
7029
7097
|
<div>
|
|
7030
|
-
<div id="table-tbody-expandable-hoverable-
|
|
7098
|
+
<div id="table-tbody-expandable-hoverable-node1">Hoverable</div>
|
|
7031
7099
|
</div>
|
|
7032
7100
|
</th>
|
|
7033
7101
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -7088,7 +7156,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7088
7156
|
class
|
|
7089
7157
|
role="cell"
|
|
7090
7158
|
colspan="4"
|
|
7091
|
-
id="table-tbody-expandable-hoverable-
|
|
7159
|
+
id="table-tbody-expandable-hoverable-content1"
|
|
7092
7160
|
>
|
|
7093
7161
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7094
7162
|
</td>
|
|
@@ -7100,10 +7168,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7100
7168
|
<td class="pf-c-table__toggle" role="cell">
|
|
7101
7169
|
<button
|
|
7102
7170
|
class="pf-c-button pf-m-plain"
|
|
7103
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
7104
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
7171
|
+
aria-labelledby="table-tbody-expandable-hoverable-node2 table-tbody-expandable-hoverable-expandable-toggle2"
|
|
7172
|
+
id="table-tbody-expandable-hoverable-expandable-toggle2"
|
|
7105
7173
|
aria-label="Details"
|
|
7106
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
7174
|
+
aria-controls="table-tbody-expandable-hoverable-content2"
|
|
7107
7175
|
>
|
|
7108
7176
|
<div class="pf-c-table__toggle-icon">
|
|
7109
7177
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7112,15 +7180,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7112
7180
|
</td>
|
|
7113
7181
|
|
|
7114
7182
|
<td class="pf-c-table__check" role="cell">
|
|
7115
|
-
<
|
|
7116
|
-
|
|
7117
|
-
|
|
7118
|
-
|
|
7119
|
-
|
|
7183
|
+
<label>
|
|
7184
|
+
<input
|
|
7185
|
+
type="checkbox"
|
|
7186
|
+
name="table-tbody-expandable-hoverable-checkrow2"
|
|
7187
|
+
aria-labelledby="table-tbody-expandable-hoverable-node2"
|
|
7188
|
+
/>
|
|
7189
|
+
</label>
|
|
7120
7190
|
</td>
|
|
7121
7191
|
<th role="columnheader" data-label="Repository name">
|
|
7122
7192
|
<div>
|
|
7123
|
-
<div id="table-tbody-expandable-hoverable-
|
|
7193
|
+
<div id="table-tbody-expandable-hoverable-node2">
|
|
7124
7194
|
<i>Selected and not expanded</i>
|
|
7125
7195
|
</div>
|
|
7126
7196
|
</div>
|
|
@@ -7183,7 +7253,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7183
7253
|
class
|
|
7184
7254
|
role="cell"
|
|
7185
7255
|
colspan="4"
|
|
7186
|
-
id="table-tbody-expandable-hoverable-
|
|
7256
|
+
id="table-tbody-expandable-hoverable-content2"
|
|
7187
7257
|
>
|
|
7188
7258
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7189
7259
|
</td>
|
|
@@ -7195,10 +7265,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7195
7265
|
<td class="pf-c-table__toggle" role="cell">
|
|
7196
7266
|
<button
|
|
7197
7267
|
class="pf-c-button pf-m-plain"
|
|
7198
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
7199
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
7268
|
+
aria-labelledby="table-tbody-expandable-hoverable-node3 table-tbody-expandable-hoverable-expandable-toggle3"
|
|
7269
|
+
id="table-tbody-expandable-hoverable-expandable-toggle3"
|
|
7200
7270
|
aria-label="Details"
|
|
7201
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
7271
|
+
aria-controls="table-tbody-expandable-hoverable-content3"
|
|
7202
7272
|
>
|
|
7203
7273
|
<div class="pf-c-table__toggle-icon">
|
|
7204
7274
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7207,15 +7277,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7207
7277
|
</td>
|
|
7208
7278
|
|
|
7209
7279
|
<td class="pf-c-table__check" role="cell">
|
|
7210
|
-
<
|
|
7211
|
-
|
|
7212
|
-
|
|
7213
|
-
|
|
7214
|
-
|
|
7280
|
+
<label>
|
|
7281
|
+
<input
|
|
7282
|
+
type="checkbox"
|
|
7283
|
+
name="table-tbody-expandable-hoverable-checkrow3"
|
|
7284
|
+
aria-labelledby="table-tbody-expandable-hoverable-node3"
|
|
7285
|
+
/>
|
|
7286
|
+
</label>
|
|
7215
7287
|
</td>
|
|
7216
7288
|
<th role="columnheader" data-label="Repository name">
|
|
7217
7289
|
<div>
|
|
7218
|
-
<div id="table-tbody-expandable-hoverable-
|
|
7290
|
+
<div id="table-tbody-expandable-hoverable-node3">Hoverable</div>
|
|
7219
7291
|
</div>
|
|
7220
7292
|
</th>
|
|
7221
7293
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -7276,7 +7348,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7276
7348
|
class
|
|
7277
7349
|
role="cell"
|
|
7278
7350
|
colspan="4"
|
|
7279
|
-
id="table-tbody-expandable-hoverable-
|
|
7351
|
+
id="table-tbody-expandable-hoverable-content3"
|
|
7280
7352
|
>
|
|
7281
7353
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7282
7354
|
</td>
|
|
@@ -7288,10 +7360,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7288
7360
|
<td class="pf-c-table__toggle" role="cell">
|
|
7289
7361
|
<button
|
|
7290
7362
|
class="pf-c-button pf-m-plain"
|
|
7291
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
7292
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
7363
|
+
aria-labelledby="table-tbody-expandable-hoverable-node4 table-tbody-expandable-hoverable-expandable-toggle4"
|
|
7364
|
+
id="table-tbody-expandable-hoverable-expandable-toggle4"
|
|
7293
7365
|
aria-label="Details"
|
|
7294
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
7366
|
+
aria-controls="table-tbody-expandable-hoverable-content4"
|
|
7295
7367
|
>
|
|
7296
7368
|
<div class="pf-c-table__toggle-icon">
|
|
7297
7369
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7300,15 +7372,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7300
7372
|
</td>
|
|
7301
7373
|
|
|
7302
7374
|
<td class="pf-c-table__check" role="cell">
|
|
7303
|
-
<
|
|
7304
|
-
|
|
7305
|
-
|
|
7306
|
-
|
|
7307
|
-
|
|
7375
|
+
<label>
|
|
7376
|
+
<input
|
|
7377
|
+
type="checkbox"
|
|
7378
|
+
name="table-tbody-expandable-hoverable-checkrow4"
|
|
7379
|
+
aria-labelledby="table-tbody-expandable-hoverable-node4"
|
|
7380
|
+
/>
|
|
7381
|
+
</label>
|
|
7308
7382
|
</td>
|
|
7309
7383
|
<th role="columnheader" data-label="Repository name">
|
|
7310
7384
|
<div>
|
|
7311
|
-
<div id="table-tbody-expandable-hoverable-
|
|
7385
|
+
<div id="table-tbody-expandable-hoverable-node4">Hoverable</div>
|
|
7312
7386
|
</div>
|
|
7313
7387
|
</th>
|
|
7314
7388
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -7369,7 +7443,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7369
7443
|
class
|
|
7370
7444
|
role="cell"
|
|
7371
7445
|
colspan="4"
|
|
7372
|
-
id="table-tbody-expandable-hoverable-
|
|
7446
|
+
id="table-tbody-expandable-hoverable-content4"
|
|
7373
7447
|
>
|
|
7374
7448
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7375
7449
|
</td>
|
|
@@ -7381,10 +7455,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7381
7455
|
<td class="pf-c-table__toggle" role="cell">
|
|
7382
7456
|
<button
|
|
7383
7457
|
class="pf-c-button pf-m-plain"
|
|
7384
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
7385
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
7458
|
+
aria-labelledby="table-tbody-expandable-hoverable-node5 table-tbody-expandable-hoverable-expandable-toggle5"
|
|
7459
|
+
id="table-tbody-expandable-hoverable-expandable-toggle5"
|
|
7386
7460
|
aria-label="Details"
|
|
7387
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
7461
|
+
aria-controls="table-tbody-expandable-hoverable-content5"
|
|
7388
7462
|
>
|
|
7389
7463
|
<div class="pf-c-table__toggle-icon">
|
|
7390
7464
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7393,15 +7467,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7393
7467
|
</td>
|
|
7394
7468
|
|
|
7395
7469
|
<td class="pf-c-table__check" role="cell">
|
|
7396
|
-
<
|
|
7397
|
-
|
|
7398
|
-
|
|
7399
|
-
|
|
7400
|
-
|
|
7470
|
+
<label>
|
|
7471
|
+
<input
|
|
7472
|
+
type="checkbox"
|
|
7473
|
+
name="table-tbody-expandable-hoverable-checkrow5"
|
|
7474
|
+
aria-labelledby="table-tbody-expandable-hoverable-node5"
|
|
7475
|
+
/>
|
|
7476
|
+
</label>
|
|
7401
7477
|
</td>
|
|
7402
7478
|
<th role="columnheader" data-label="Repository name">
|
|
7403
7479
|
<div>
|
|
7404
|
-
<div id="table-tbody-expandable-hoverable-
|
|
7480
|
+
<div id="table-tbody-expandable-hoverable-node5">
|
|
7405
7481
|
<i>Selected and not expanded</i>
|
|
7406
7482
|
</div>
|
|
7407
7483
|
</div>
|
|
@@ -7464,7 +7540,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7464
7540
|
class
|
|
7465
7541
|
role="cell"
|
|
7466
7542
|
colspan="4"
|
|
7467
|
-
id="table-tbody-expandable-hoverable-
|
|
7543
|
+
id="table-tbody-expandable-hoverable-content5"
|
|
7468
7544
|
>
|
|
7469
7545
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7470
7546
|
</td>
|
|
@@ -7476,10 +7552,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7476
7552
|
<td class="pf-c-table__toggle" role="cell">
|
|
7477
7553
|
<button
|
|
7478
7554
|
class="pf-c-button pf-m-plain"
|
|
7479
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
7480
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
7555
|
+
aria-labelledby="table-tbody-expandable-hoverable-node6 table-tbody-expandable-hoverable-expandable-toggle6"
|
|
7556
|
+
id="table-tbody-expandable-hoverable-expandable-toggle6"
|
|
7481
7557
|
aria-label="Details"
|
|
7482
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
7558
|
+
aria-controls="table-tbody-expandable-hoverable-content6"
|
|
7483
7559
|
>
|
|
7484
7560
|
<div class="pf-c-table__toggle-icon">
|
|
7485
7561
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7488,15 +7564,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7488
7564
|
</td>
|
|
7489
7565
|
|
|
7490
7566
|
<td class="pf-c-table__check" role="cell">
|
|
7491
|
-
<
|
|
7492
|
-
|
|
7493
|
-
|
|
7494
|
-
|
|
7495
|
-
|
|
7567
|
+
<label>
|
|
7568
|
+
<input
|
|
7569
|
+
type="checkbox"
|
|
7570
|
+
name="table-tbody-expandable-hoverable-checkrow6"
|
|
7571
|
+
aria-labelledby="table-tbody-expandable-hoverable-node6"
|
|
7572
|
+
/>
|
|
7573
|
+
</label>
|
|
7496
7574
|
</td>
|
|
7497
7575
|
<th role="columnheader" data-label="Repository name">
|
|
7498
7576
|
<div>
|
|
7499
|
-
<div id="table-tbody-expandable-hoverable-
|
|
7577
|
+
<div id="table-tbody-expandable-hoverable-node6">
|
|
7500
7578
|
<i>Selected and not expanded</i>
|
|
7501
7579
|
</div>
|
|
7502
7580
|
</div>
|
|
@@ -7559,7 +7637,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7559
7637
|
class
|
|
7560
7638
|
role="cell"
|
|
7561
7639
|
colspan="4"
|
|
7562
|
-
id="table-tbody-expandable-hoverable-
|
|
7640
|
+
id="table-tbody-expandable-hoverable-content6"
|
|
7563
7641
|
>
|
|
7564
7642
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7565
7643
|
</td>
|
|
@@ -7571,10 +7649,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7571
7649
|
<td class="pf-c-table__toggle" role="cell">
|
|
7572
7650
|
<button
|
|
7573
7651
|
class="pf-c-button pf-m-plain"
|
|
7574
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
7575
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
7652
|
+
aria-labelledby="table-tbody-expandable-hoverable-node7 table-tbody-expandable-hoverable-expandable-toggle7"
|
|
7653
|
+
id="table-tbody-expandable-hoverable-expandable-toggle7"
|
|
7576
7654
|
aria-label="Details"
|
|
7577
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
7655
|
+
aria-controls="table-tbody-expandable-hoverable-content7"
|
|
7578
7656
|
>
|
|
7579
7657
|
<div class="pf-c-table__toggle-icon">
|
|
7580
7658
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7583,15 +7661,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7583
7661
|
</td>
|
|
7584
7662
|
|
|
7585
7663
|
<td class="pf-c-table__check" role="cell">
|
|
7586
|
-
<
|
|
7587
|
-
|
|
7588
|
-
|
|
7589
|
-
|
|
7590
|
-
|
|
7664
|
+
<label>
|
|
7665
|
+
<input
|
|
7666
|
+
type="checkbox"
|
|
7667
|
+
name="table-tbody-expandable-hoverable-checkrow7"
|
|
7668
|
+
aria-labelledby="table-tbody-expandable-hoverable-node7"
|
|
7669
|
+
/>
|
|
7670
|
+
</label>
|
|
7591
7671
|
</td>
|
|
7592
7672
|
<th role="columnheader" data-label="Repository name">
|
|
7593
7673
|
<div>
|
|
7594
|
-
<div id="table-tbody-expandable-hoverable-
|
|
7674
|
+
<div id="table-tbody-expandable-hoverable-node7">
|
|
7595
7675
|
<i>Selected and not expanded</i>
|
|
7596
7676
|
</div>
|
|
7597
7677
|
</div>
|
|
@@ -7654,7 +7734,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7654
7734
|
class
|
|
7655
7735
|
role="cell"
|
|
7656
7736
|
colspan="4"
|
|
7657
|
-
id="table-tbody-expandable-hoverable-
|
|
7737
|
+
id="table-tbody-expandable-hoverable-content7"
|
|
7658
7738
|
>
|
|
7659
7739
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7660
7740
|
</td>
|
|
@@ -7666,10 +7746,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7666
7746
|
<td class="pf-c-table__toggle" role="cell">
|
|
7667
7747
|
<button
|
|
7668
7748
|
class="pf-c-button pf-m-plain"
|
|
7669
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
7670
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
7749
|
+
aria-labelledby="table-tbody-expandable-hoverable-node8 table-tbody-expandable-hoverable-expandable-toggle8"
|
|
7750
|
+
id="table-tbody-expandable-hoverable-expandable-toggle8"
|
|
7671
7751
|
aria-label="Details"
|
|
7672
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
7752
|
+
aria-controls="table-tbody-expandable-hoverable-content8"
|
|
7673
7753
|
>
|
|
7674
7754
|
<div class="pf-c-table__toggle-icon">
|
|
7675
7755
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7678,15 +7758,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7678
7758
|
</td>
|
|
7679
7759
|
|
|
7680
7760
|
<td class="pf-c-table__check" role="cell">
|
|
7681
|
-
<
|
|
7682
|
-
|
|
7683
|
-
|
|
7684
|
-
|
|
7685
|
-
|
|
7761
|
+
<label>
|
|
7762
|
+
<input
|
|
7763
|
+
type="checkbox"
|
|
7764
|
+
name="table-tbody-expandable-hoverable-checkrow8"
|
|
7765
|
+
aria-labelledby="table-tbody-expandable-hoverable-node8"
|
|
7766
|
+
/>
|
|
7767
|
+
</label>
|
|
7686
7768
|
</td>
|
|
7687
7769
|
<th role="columnheader" data-label="Repository name">
|
|
7688
7770
|
<div>
|
|
7689
|
-
<div id="table-tbody-expandable-hoverable-
|
|
7771
|
+
<div id="table-tbody-expandable-hoverable-node8">Hoverable</div>
|
|
7690
7772
|
</div>
|
|
7691
7773
|
</th>
|
|
7692
7774
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -7747,7 +7829,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7747
7829
|
class
|
|
7748
7830
|
role="cell"
|
|
7749
7831
|
colspan="4"
|
|
7750
|
-
id="table-tbody-expandable-hoverable-
|
|
7832
|
+
id="table-tbody-expandable-hoverable-content8"
|
|
7751
7833
|
>
|
|
7752
7834
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7753
7835
|
</td>
|
|
@@ -7759,10 +7841,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7759
7841
|
<td class="pf-c-table__toggle" role="cell">
|
|
7760
7842
|
<button
|
|
7761
7843
|
class="pf-c-button pf-m-plain"
|
|
7762
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
7763
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
7844
|
+
aria-labelledby="table-tbody-expandable-hoverable-node9 table-tbody-expandable-hoverable-expandable-toggle9"
|
|
7845
|
+
id="table-tbody-expandable-hoverable-expandable-toggle9"
|
|
7764
7846
|
aria-label="Details"
|
|
7765
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
7847
|
+
aria-controls="table-tbody-expandable-hoverable-content9"
|
|
7766
7848
|
>
|
|
7767
7849
|
<div class="pf-c-table__toggle-icon">
|
|
7768
7850
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7771,15 +7853,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7771
7853
|
</td>
|
|
7772
7854
|
|
|
7773
7855
|
<td class="pf-c-table__check" role="cell">
|
|
7774
|
-
<
|
|
7775
|
-
|
|
7776
|
-
|
|
7777
|
-
|
|
7778
|
-
|
|
7856
|
+
<label>
|
|
7857
|
+
<input
|
|
7858
|
+
type="checkbox"
|
|
7859
|
+
name="table-tbody-expandable-hoverable-checkrow9"
|
|
7860
|
+
aria-labelledby="table-tbody-expandable-hoverable-node9"
|
|
7861
|
+
/>
|
|
7862
|
+
</label>
|
|
7779
7863
|
</td>
|
|
7780
7864
|
<th role="columnheader" data-label="Repository name">
|
|
7781
7865
|
<div>
|
|
7782
|
-
<div id="table-tbody-expandable-hoverable-
|
|
7866
|
+
<div id="table-tbody-expandable-hoverable-node9">Hoverable</div>
|
|
7783
7867
|
</div>
|
|
7784
7868
|
</th>
|
|
7785
7869
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -7840,7 +7924,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7840
7924
|
class
|
|
7841
7925
|
role="cell"
|
|
7842
7926
|
colspan="4"
|
|
7843
|
-
id="table-tbody-expandable-hoverable-
|
|
7927
|
+
id="table-tbody-expandable-hoverable-content9"
|
|
7844
7928
|
>
|
|
7845
7929
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7846
7930
|
</td>
|
|
@@ -7852,10 +7936,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7852
7936
|
<td class="pf-c-table__toggle" role="cell">
|
|
7853
7937
|
<button
|
|
7854
7938
|
class="pf-c-button pf-m-plain"
|
|
7855
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
7856
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
7939
|
+
aria-labelledby="table-tbody-expandable-hoverable-node10 table-tbody-expandable-hoverable-expandable-toggle10"
|
|
7940
|
+
id="table-tbody-expandable-hoverable-expandable-toggle10"
|
|
7857
7941
|
aria-label="Details"
|
|
7858
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
7942
|
+
aria-controls="table-tbody-expandable-hoverable-content10"
|
|
7859
7943
|
>
|
|
7860
7944
|
<div class="pf-c-table__toggle-icon">
|
|
7861
7945
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7864,15 +7948,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7864
7948
|
</td>
|
|
7865
7949
|
|
|
7866
7950
|
<td class="pf-c-table__check" role="cell">
|
|
7867
|
-
<
|
|
7868
|
-
|
|
7869
|
-
|
|
7870
|
-
|
|
7871
|
-
|
|
7951
|
+
<label>
|
|
7952
|
+
<input
|
|
7953
|
+
type="checkbox"
|
|
7954
|
+
name="table-tbody-expandable-hoverable-checkrow10"
|
|
7955
|
+
aria-labelledby="table-tbody-expandable-hoverable-node10"
|
|
7956
|
+
/>
|
|
7957
|
+
</label>
|
|
7872
7958
|
</td>
|
|
7873
7959
|
<th role="columnheader" data-label="Repository name">
|
|
7874
7960
|
<div>
|
|
7875
|
-
<div id="table-tbody-expandable-hoverable-
|
|
7961
|
+
<div id="table-tbody-expandable-hoverable-node10">Hoverable</div>
|
|
7876
7962
|
</div>
|
|
7877
7963
|
</th>
|
|
7878
7964
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -7933,7 +8019,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7933
8019
|
class
|
|
7934
8020
|
role="cell"
|
|
7935
8021
|
colspan="4"
|
|
7936
|
-
id="table-tbody-expandable-hoverable-
|
|
8022
|
+
id="table-tbody-expandable-hoverable-content10"
|
|
7937
8023
|
>
|
|
7938
8024
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7939
8025
|
</td>
|
|
@@ -7949,10 +8035,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7949
8035
|
<td class="pf-c-table__toggle" role="cell">
|
|
7950
8036
|
<button
|
|
7951
8037
|
class="pf-c-button pf-m-plain pf-m-expanded"
|
|
7952
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
7953
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
8038
|
+
aria-labelledby="table-tbody-expandable-hoverable-node11 table-tbody-expandable-hoverable-expandable-toggle11"
|
|
8039
|
+
id="table-tbody-expandable-hoverable-expandable-toggle11"
|
|
7954
8040
|
aria-label="Details"
|
|
7955
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
8041
|
+
aria-controls="table-tbody-expandable-hoverable-content11"
|
|
7956
8042
|
aria-expanded="true"
|
|
7957
8043
|
>
|
|
7958
8044
|
<div class="pf-c-table__toggle-icon">
|
|
@@ -7962,15 +8048,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7962
8048
|
</td>
|
|
7963
8049
|
|
|
7964
8050
|
<td class="pf-c-table__check" role="cell">
|
|
7965
|
-
<
|
|
7966
|
-
|
|
7967
|
-
|
|
7968
|
-
|
|
7969
|
-
|
|
8051
|
+
<label>
|
|
8052
|
+
<input
|
|
8053
|
+
type="checkbox"
|
|
8054
|
+
name="table-tbody-expandable-hoverable-checkrow11"
|
|
8055
|
+
aria-labelledby="table-tbody-expandable-hoverable-node11"
|
|
8056
|
+
/>
|
|
8057
|
+
</label>
|
|
7970
8058
|
</td>
|
|
7971
8059
|
<th role="columnheader" data-label="Repository name">
|
|
7972
8060
|
<div>
|
|
7973
|
-
<div id="table-tbody-expandable-hoverable-
|
|
8061
|
+
<div id="table-tbody-expandable-hoverable-node11">
|
|
7974
8062
|
<b>Expanded and selected</b>
|
|
7975
8063
|
</div>
|
|
7976
8064
|
</div>
|
|
@@ -8033,7 +8121,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8033
8121
|
class
|
|
8034
8122
|
role="cell"
|
|
8035
8123
|
colspan="4"
|
|
8036
|
-
id="table-tbody-expandable-hoverable-
|
|
8124
|
+
id="table-tbody-expandable-hoverable-content11"
|
|
8037
8125
|
>
|
|
8038
8126
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8039
8127
|
</td>
|
|
@@ -8045,10 +8133,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8045
8133
|
<td class="pf-c-table__toggle" role="cell">
|
|
8046
8134
|
<button
|
|
8047
8135
|
class="pf-c-button pf-m-plain"
|
|
8048
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
8049
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
8136
|
+
aria-labelledby="table-tbody-expandable-hoverable-node12 table-tbody-expandable-hoverable-expandable-toggle12"
|
|
8137
|
+
id="table-tbody-expandable-hoverable-expandable-toggle12"
|
|
8050
8138
|
aria-label="Details"
|
|
8051
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
8139
|
+
aria-controls="table-tbody-expandable-hoverable-content12"
|
|
8052
8140
|
>
|
|
8053
8141
|
<div class="pf-c-table__toggle-icon">
|
|
8054
8142
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -8056,16 +8144,18 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8056
8144
|
</button>
|
|
8057
8145
|
</td>
|
|
8058
8146
|
|
|
8059
|
-
<td class="pf-c-table__check" role="cell">
|
|
8060
|
-
<
|
|
8061
|
-
|
|
8062
|
-
|
|
8063
|
-
|
|
8064
|
-
|
|
8147
|
+
<td class="pf-c-table__check" role="cell">
|
|
8148
|
+
<label>
|
|
8149
|
+
<input
|
|
8150
|
+
type="checkbox"
|
|
8151
|
+
name="table-tbody-expandable-hoverable-checkrow12"
|
|
8152
|
+
aria-labelledby="table-tbody-expandable-hoverable-node12"
|
|
8153
|
+
/>
|
|
8154
|
+
</label>
|
|
8065
8155
|
</td>
|
|
8066
8156
|
<th role="columnheader" data-label="Repository name">
|
|
8067
8157
|
<div>
|
|
8068
|
-
<div id="table-tbody-expandable-hoverable-
|
|
8158
|
+
<div id="table-tbody-expandable-hoverable-node12">Hoverable</div>
|
|
8069
8159
|
</div>
|
|
8070
8160
|
</th>
|
|
8071
8161
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -8126,7 +8216,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8126
8216
|
class
|
|
8127
8217
|
role="cell"
|
|
8128
8218
|
colspan="4"
|
|
8129
|
-
id="table-tbody-expandable-hoverable-
|
|
8219
|
+
id="table-tbody-expandable-hoverable-content12"
|
|
8130
8220
|
>
|
|
8131
8221
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8132
8222
|
</td>
|
|
@@ -8142,10 +8232,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8142
8232
|
<td class="pf-c-table__toggle" role="cell">
|
|
8143
8233
|
<button
|
|
8144
8234
|
class="pf-c-button pf-m-plain pf-m-expanded"
|
|
8145
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
8146
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
8235
|
+
aria-labelledby="table-tbody-expandable-hoverable-node13 table-tbody-expandable-hoverable-expandable-toggle13"
|
|
8236
|
+
id="table-tbody-expandable-hoverable-expandable-toggle13"
|
|
8147
8237
|
aria-label="Details"
|
|
8148
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
8238
|
+
aria-controls="table-tbody-expandable-hoverable-content13"
|
|
8149
8239
|
aria-expanded="true"
|
|
8150
8240
|
>
|
|
8151
8241
|
<div class="pf-c-table__toggle-icon">
|
|
@@ -8155,15 +8245,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8155
8245
|
</td>
|
|
8156
8246
|
|
|
8157
8247
|
<td class="pf-c-table__check" role="cell">
|
|
8158
|
-
<
|
|
8159
|
-
|
|
8160
|
-
|
|
8161
|
-
|
|
8162
|
-
|
|
8248
|
+
<label>
|
|
8249
|
+
<input
|
|
8250
|
+
type="checkbox"
|
|
8251
|
+
name="table-tbody-expandable-hoverable-checkrow13"
|
|
8252
|
+
aria-labelledby="table-tbody-expandable-hoverable-node13"
|
|
8253
|
+
/>
|
|
8254
|
+
</label>
|
|
8163
8255
|
</td>
|
|
8164
8256
|
<th role="columnheader" data-label="Repository name">
|
|
8165
8257
|
<div>
|
|
8166
|
-
<div id="table-tbody-expandable-hoverable-
|
|
8258
|
+
<div id="table-tbody-expandable-hoverable-node13">
|
|
8167
8259
|
<b>Expanded and selected</b>
|
|
8168
8260
|
</div>
|
|
8169
8261
|
</div>
|
|
@@ -8226,7 +8318,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8226
8318
|
class
|
|
8227
8319
|
role="cell"
|
|
8228
8320
|
colspan="4"
|
|
8229
|
-
id="table-tbody-expandable-hoverable-
|
|
8321
|
+
id="table-tbody-expandable-hoverable-content13"
|
|
8230
8322
|
>
|
|
8231
8323
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8232
8324
|
</td>
|
|
@@ -8242,10 +8334,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8242
8334
|
<td class="pf-c-table__toggle" role="cell">
|
|
8243
8335
|
<button
|
|
8244
8336
|
class="pf-c-button pf-m-plain pf-m-expanded"
|
|
8245
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
8246
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
8337
|
+
aria-labelledby="table-tbody-expandable-hoverable-node15 table-tbody-expandable-hoverable-expandable-toggle15"
|
|
8338
|
+
id="table-tbody-expandable-hoverable-expandable-toggle15"
|
|
8247
8339
|
aria-label="Details"
|
|
8248
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
8340
|
+
aria-controls="table-tbody-expandable-hoverable-content15"
|
|
8249
8341
|
aria-expanded="true"
|
|
8250
8342
|
>
|
|
8251
8343
|
<div class="pf-c-table__toggle-icon">
|
|
@@ -8255,15 +8347,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8255
8347
|
</td>
|
|
8256
8348
|
|
|
8257
8349
|
<td class="pf-c-table__check" role="cell">
|
|
8258
|
-
<
|
|
8259
|
-
|
|
8260
|
-
|
|
8261
|
-
|
|
8262
|
-
|
|
8350
|
+
<label>
|
|
8351
|
+
<input
|
|
8352
|
+
type="checkbox"
|
|
8353
|
+
name="table-tbody-expandable-hoverable-checkrow15"
|
|
8354
|
+
aria-labelledby="table-tbody-expandable-hoverable-node15"
|
|
8355
|
+
/>
|
|
8356
|
+
</label>
|
|
8263
8357
|
</td>
|
|
8264
8358
|
<th role="columnheader" data-label="Repository name">
|
|
8265
8359
|
<div>
|
|
8266
|
-
<div id="table-tbody-expandable-hoverable-
|
|
8360
|
+
<div id="table-tbody-expandable-hoverable-node15">
|
|
8267
8361
|
<b>Expanded and selected</b>
|
|
8268
8362
|
</div>
|
|
8269
8363
|
</div>
|
|
@@ -8326,7 +8420,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8326
8420
|
class
|
|
8327
8421
|
role="cell"
|
|
8328
8422
|
colspan="4"
|
|
8329
|
-
id="table-tbody-expandable-hoverable-
|
|
8423
|
+
id="table-tbody-expandable-hoverable-content15"
|
|
8330
8424
|
>
|
|
8331
8425
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8332
8426
|
</td>
|
|
@@ -8338,10 +8432,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8338
8432
|
<td class="pf-c-table__toggle" role="cell">
|
|
8339
8433
|
<button
|
|
8340
8434
|
class="pf-c-button pf-m-plain pf-m-expanded"
|
|
8341
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
8342
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
8435
|
+
aria-labelledby="table-tbody-expandable-hoverable-node14 table-tbody-expandable-hoverable-expandable-toggle14"
|
|
8436
|
+
id="table-tbody-expandable-hoverable-expandable-toggle14"
|
|
8343
8437
|
aria-label="Details"
|
|
8344
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
8438
|
+
aria-controls="table-tbody-expandable-hoverable-content14"
|
|
8345
8439
|
aria-expanded="true"
|
|
8346
8440
|
>
|
|
8347
8441
|
<div class="pf-c-table__toggle-icon">
|
|
@@ -8351,16 +8445,18 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8351
8445
|
</td>
|
|
8352
8446
|
|
|
8353
8447
|
<td class="pf-c-table__check" role="cell">
|
|
8354
|
-
<
|
|
8355
|
-
|
|
8356
|
-
|
|
8357
|
-
|
|
8358
|
-
|
|
8448
|
+
<label>
|
|
8449
|
+
<input
|
|
8450
|
+
type="checkbox"
|
|
8451
|
+
name="table-tbody-expandable-hoverable-checkrow14"
|
|
8452
|
+
aria-labelledby="table-tbody-expandable-hoverable-node14"
|
|
8453
|
+
/>
|
|
8454
|
+
</label>
|
|
8359
8455
|
</td>
|
|
8360
8456
|
<th role="columnheader" data-label="Repository name">
|
|
8361
8457
|
<div>
|
|
8362
8458
|
<div
|
|
8363
|
-
id="table-tbody-expandable-hoverable-
|
|
8459
|
+
id="table-tbody-expandable-hoverable-node14"
|
|
8364
8460
|
>Expanded and not selected</div>
|
|
8365
8461
|
</div>
|
|
8366
8462
|
</th>
|
|
@@ -8422,7 +8518,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8422
8518
|
class
|
|
8423
8519
|
role="cell"
|
|
8424
8520
|
colspan="4"
|
|
8425
|
-
id="table-tbody-expandable-hoverable-
|
|
8521
|
+
id="table-tbody-expandable-hoverable-content14"
|
|
8426
8522
|
>
|
|
8427
8523
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8428
8524
|
</td>
|
|
@@ -8434,10 +8530,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8434
8530
|
<td class="pf-c-table__toggle" role="cell">
|
|
8435
8531
|
<button
|
|
8436
8532
|
class="pf-c-button pf-m-plain"
|
|
8437
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
8438
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
8533
|
+
aria-labelledby="table-tbody-expandable-hoverable-node16 table-tbody-expandable-hoverable-expandable-toggle16"
|
|
8534
|
+
id="table-tbody-expandable-hoverable-expandable-toggle16"
|
|
8439
8535
|
aria-label="Details"
|
|
8440
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
8536
|
+
aria-controls="table-tbody-expandable-hoverable-content16"
|
|
8441
8537
|
>
|
|
8442
8538
|
<div class="pf-c-table__toggle-icon">
|
|
8443
8539
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -8446,15 +8542,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8446
8542
|
</td>
|
|
8447
8543
|
|
|
8448
8544
|
<td class="pf-c-table__check" role="cell">
|
|
8449
|
-
<
|
|
8450
|
-
|
|
8451
|
-
|
|
8452
|
-
|
|
8453
|
-
|
|
8545
|
+
<label>
|
|
8546
|
+
<input
|
|
8547
|
+
type="checkbox"
|
|
8548
|
+
name="table-tbody-expandable-hoverable-checkrow16"
|
|
8549
|
+
aria-labelledby="table-tbody-expandable-hoverable-node16"
|
|
8550
|
+
/>
|
|
8551
|
+
</label>
|
|
8454
8552
|
</td>
|
|
8455
8553
|
<th role="columnheader" data-label="Repository name">
|
|
8456
8554
|
<div>
|
|
8457
|
-
<div id="table-tbody-expandable-hoverable-
|
|
8555
|
+
<div id="table-tbody-expandable-hoverable-node16">Hoverable</div>
|
|
8458
8556
|
</div>
|
|
8459
8557
|
</th>
|
|
8460
8558
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -8515,7 +8613,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8515
8613
|
class
|
|
8516
8614
|
role="cell"
|
|
8517
8615
|
colspan="4"
|
|
8518
|
-
id="table-tbody-expandable-hoverable-
|
|
8616
|
+
id="table-tbody-expandable-hoverable-content16"
|
|
8519
8617
|
>
|
|
8520
8618
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8521
8619
|
</td>
|
|
@@ -8527,10 +8625,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8527
8625
|
<td class="pf-c-table__toggle" role="cell">
|
|
8528
8626
|
<button
|
|
8529
8627
|
class="pf-c-button pf-m-plain pf-m-expanded"
|
|
8530
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
8531
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
8628
|
+
aria-labelledby="table-tbody-expandable-hoverable-node17 table-tbody-expandable-hoverable-expandable-toggle17"
|
|
8629
|
+
id="table-tbody-expandable-hoverable-expandable-toggle17"
|
|
8532
8630
|
aria-label="Details"
|
|
8533
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
8631
|
+
aria-controls="table-tbody-expandable-hoverable-content17"
|
|
8534
8632
|
aria-expanded="true"
|
|
8535
8633
|
>
|
|
8536
8634
|
<div class="pf-c-table__toggle-icon">
|
|
@@ -8540,16 +8638,18 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8540
8638
|
</td>
|
|
8541
8639
|
|
|
8542
8640
|
<td class="pf-c-table__check" role="cell">
|
|
8543
|
-
<
|
|
8544
|
-
|
|
8545
|
-
|
|
8546
|
-
|
|
8547
|
-
|
|
8641
|
+
<label>
|
|
8642
|
+
<input
|
|
8643
|
+
type="checkbox"
|
|
8644
|
+
name="table-tbody-expandable-hoverable-checkrow17"
|
|
8645
|
+
aria-labelledby="table-tbody-expandable-hoverable-node17"
|
|
8646
|
+
/>
|
|
8647
|
+
</label>
|
|
8548
8648
|
</td>
|
|
8549
8649
|
<th role="columnheader" data-label="Repository name">
|
|
8550
8650
|
<div>
|
|
8551
8651
|
<div
|
|
8552
|
-
id="table-tbody-expandable-hoverable-
|
|
8652
|
+
id="table-tbody-expandable-hoverable-node17"
|
|
8553
8653
|
>Expanded and not selected</div>
|
|
8554
8654
|
</div>
|
|
8555
8655
|
</th>
|
|
@@ -8611,7 +8711,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8611
8711
|
class
|
|
8612
8712
|
role="cell"
|
|
8613
8713
|
colspan="4"
|
|
8614
|
-
id="table-tbody-expandable-hoverable-
|
|
8714
|
+
id="table-tbody-expandable-hoverable-content17"
|
|
8615
8715
|
>
|
|
8616
8716
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8617
8717
|
</td>
|
|
@@ -8623,10 +8723,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8623
8723
|
<td class="pf-c-table__toggle" role="cell">
|
|
8624
8724
|
<button
|
|
8625
8725
|
class="pf-c-button pf-m-plain"
|
|
8626
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
8627
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
8726
|
+
aria-labelledby="table-tbody-expandable-hoverable-node18 table-tbody-expandable-hoverable-expandable-toggle18"
|
|
8727
|
+
id="table-tbody-expandable-hoverable-expandable-toggle18"
|
|
8628
8728
|
aria-label="Details"
|
|
8629
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
8729
|
+
aria-controls="table-tbody-expandable-hoverable-content18"
|
|
8630
8730
|
>
|
|
8631
8731
|
<div class="pf-c-table__toggle-icon">
|
|
8632
8732
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -8635,15 +8735,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8635
8735
|
</td>
|
|
8636
8736
|
|
|
8637
8737
|
<td class="pf-c-table__check" role="cell">
|
|
8638
|
-
<
|
|
8639
|
-
|
|
8640
|
-
|
|
8641
|
-
|
|
8642
|
-
|
|
8738
|
+
<label>
|
|
8739
|
+
<input
|
|
8740
|
+
type="checkbox"
|
|
8741
|
+
name="table-tbody-expandable-hoverable-checkrow18"
|
|
8742
|
+
aria-labelledby="table-tbody-expandable-hoverable-node18"
|
|
8743
|
+
/>
|
|
8744
|
+
</label>
|
|
8643
8745
|
</td>
|
|
8644
8746
|
<th role="columnheader" data-label="Repository name">
|
|
8645
8747
|
<div>
|
|
8646
|
-
<div id="table-tbody-expandable-hoverable-
|
|
8748
|
+
<div id="table-tbody-expandable-hoverable-node18">Hoverable</div>
|
|
8647
8749
|
</div>
|
|
8648
8750
|
</th>
|
|
8649
8751
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -8704,7 +8806,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8704
8806
|
class
|
|
8705
8807
|
role="cell"
|
|
8706
8808
|
colspan="4"
|
|
8707
|
-
id="table-tbody-expandable-hoverable-
|
|
8809
|
+
id="table-tbody-expandable-hoverable-content18"
|
|
8708
8810
|
>
|
|
8709
8811
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8710
8812
|
</td>
|
|
@@ -8716,10 +8818,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8716
8818
|
<td class="pf-c-table__toggle" role="cell">
|
|
8717
8819
|
<button
|
|
8718
8820
|
class="pf-c-button pf-m-plain"
|
|
8719
|
-
aria-labelledby="table-tbody-expandable-hoverable-
|
|
8720
|
-
id="table-tbody-expandable-hoverable-expandable-
|
|
8821
|
+
aria-labelledby="table-tbody-expandable-hoverable-node19 table-tbody-expandable-hoverable-expandable-toggle19"
|
|
8822
|
+
id="table-tbody-expandable-hoverable-expandable-toggle19"
|
|
8721
8823
|
aria-label="Details"
|
|
8722
|
-
aria-controls="table-tbody-expandable-hoverable-
|
|
8824
|
+
aria-controls="table-tbody-expandable-hoverable-content19"
|
|
8723
8825
|
>
|
|
8724
8826
|
<div class="pf-c-table__toggle-icon">
|
|
8725
8827
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -8728,15 +8830,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8728
8830
|
</td>
|
|
8729
8831
|
|
|
8730
8832
|
<td class="pf-c-table__check" role="cell">
|
|
8731
|
-
<
|
|
8732
|
-
|
|
8733
|
-
|
|
8734
|
-
|
|
8735
|
-
|
|
8833
|
+
<label>
|
|
8834
|
+
<input
|
|
8835
|
+
type="checkbox"
|
|
8836
|
+
name="table-tbody-expandable-hoverable-checkrow19"
|
|
8837
|
+
aria-labelledby="table-tbody-expandable-hoverable-node19"
|
|
8838
|
+
/>
|
|
8839
|
+
</label>
|
|
8736
8840
|
</td>
|
|
8737
8841
|
<th role="columnheader" data-label="Repository name">
|
|
8738
8842
|
<div>
|
|
8739
|
-
<div id="table-tbody-expandable-hoverable-
|
|
8843
|
+
<div id="table-tbody-expandable-hoverable-node19">Hoverable</div>
|
|
8740
8844
|
</div>
|
|
8741
8845
|
</th>
|
|
8742
8846
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -8797,7 +8901,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8797
8901
|
class
|
|
8798
8902
|
role="cell"
|
|
8799
8903
|
colspan="4"
|
|
8800
|
-
id="table-tbody-expandable-hoverable-
|
|
8904
|
+
id="table-tbody-expandable-hoverable-content19"
|
|
8801
8905
|
>
|
|
8802
8906
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8803
8907
|
</td>
|
|
@@ -8821,9 +8925,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8821
8925
|
| `.pf-m-hoverable` | `.pf-c-table tbody`, `.pf-c-table tr` | Modifies a tbody or tr table element to be hoverable. |
|
|
8822
8926
|
| `.pf-m-selected` | `.pf-c-table tbody`, `.pf-c-table tr` | Modifies a selectable tbody or tr table element to be selected. |
|
|
8823
8927
|
|
|
8824
|
-
|
|
8825
|
-
|
|
8826
|
-
### Tree table example
|
|
8928
|
+
### Tree table
|
|
8827
8929
|
|
|
8828
8930
|
```html
|
|
8829
8931
|
<table
|
|
@@ -10250,7 +10352,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
10250
10352
|
|
|
10251
10353
|
```
|
|
10252
10354
|
|
|
10253
|
-
### Tree table with checkboxes
|
|
10355
|
+
### Tree table with checkboxes
|
|
10254
10356
|
|
|
10255
10357
|
```html
|
|
10256
10358
|
<table
|
|
@@ -11795,7 +11897,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
11795
11897
|
|
|
11796
11898
|
```
|
|
11797
11899
|
|
|
11798
|
-
### Tree table with checkboxes and icons
|
|
11900
|
+
### Tree table with checkboxes and icons
|
|
11799
11901
|
|
|
11800
11902
|
```html
|
|
11801
11903
|
<table
|
|
@@ -13432,11 +13534,13 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
13432
13534
|
<thead>
|
|
13433
13535
|
<tr role="row">
|
|
13434
13536
|
<td class="pf-c-table__check" role="cell">
|
|
13435
|
-
<
|
|
13436
|
-
|
|
13437
|
-
|
|
13438
|
-
|
|
13439
|
-
|
|
13537
|
+
<label>
|
|
13538
|
+
<input
|
|
13539
|
+
type="checkbox"
|
|
13540
|
+
name="borderless-table-checkrowthead"
|
|
13541
|
+
aria-label="Select all rows"
|
|
13542
|
+
/>
|
|
13543
|
+
</label>
|
|
13440
13544
|
</td>
|
|
13441
13545
|
<th role="columnheader" scope="col">Contributor</th>
|
|
13442
13546
|
<th role="columnheader" scope="col">Position</th>
|
|
@@ -13452,14 +13556,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
13452
13556
|
<tbody role="rowgroup">
|
|
13453
13557
|
<tr role="row">
|
|
13454
13558
|
<td class="pf-c-table__check" role="cell">
|
|
13455
|
-
<
|
|
13456
|
-
|
|
13457
|
-
|
|
13458
|
-
|
|
13459
|
-
|
|
13559
|
+
<label>
|
|
13560
|
+
<input
|
|
13561
|
+
type="checkbox"
|
|
13562
|
+
name="borderless-table-checkrow1"
|
|
13563
|
+
aria-labelledby="borderless-table-node1"
|
|
13564
|
+
/>
|
|
13565
|
+
</label>
|
|
13460
13566
|
</td>
|
|
13461
|
-
<th role="columnheader" data-label="
|
|
13462
|
-
<
|
|
13567
|
+
<th role="columnheader" data-label="Data label name">
|
|
13568
|
+
<div id="borderless-table-node1">Sam Jones</div>
|
|
13463
13569
|
</th>
|
|
13464
13570
|
<td role="cell" data-label="Position">CSS guru</td>
|
|
13465
13571
|
<td role="cell" data-label="Location">Not too sure</td>
|
|
@@ -13519,14 +13625,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
13519
13625
|
|
|
13520
13626
|
<tr role="row">
|
|
13521
13627
|
<td class="pf-c-table__check" role="cell">
|
|
13522
|
-
<
|
|
13523
|
-
|
|
13524
|
-
|
|
13525
|
-
|
|
13526
|
-
|
|
13628
|
+
<label>
|
|
13629
|
+
<input
|
|
13630
|
+
type="checkbox"
|
|
13631
|
+
name="borderless-table-checkrow2"
|
|
13632
|
+
aria-labelledby="borderless-table-node2"
|
|
13633
|
+
/>
|
|
13634
|
+
</label>
|
|
13527
13635
|
</td>
|
|
13528
|
-
<th role="columnheader" data-label="
|
|
13529
|
-
<
|
|
13636
|
+
<th role="columnheader" data-label="Data label name">
|
|
13637
|
+
<div id="borderless-table-node2">Amy Wilson</div>
|
|
13530
13638
|
</th>
|
|
13531
13639
|
<td role="cell" data-label="Position">Visual design</td>
|
|
13532
13640
|
<td role="cell" data-label="Location">Raleigh</td>
|
|
@@ -13586,14 +13694,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
13586
13694
|
|
|
13587
13695
|
<tr role="row">
|
|
13588
13696
|
<td class="pf-c-table__check" role="cell">
|
|
13589
|
-
<
|
|
13590
|
-
|
|
13591
|
-
|
|
13592
|
-
|
|
13593
|
-
|
|
13697
|
+
<label>
|
|
13698
|
+
<input
|
|
13699
|
+
type="checkbox"
|
|
13700
|
+
name="borderless-table-checkrow3"
|
|
13701
|
+
aria-labelledby="borderless-table-node3"
|
|
13702
|
+
/>
|
|
13703
|
+
</label>
|
|
13594
13704
|
</td>
|
|
13595
|
-
<th role="columnheader" data-label="
|
|
13596
|
-
<
|
|
13705
|
+
<th role="columnheader" data-label="Data label name">
|
|
13706
|
+
<div id="borderless-table-node3">Steve Wilson</div>
|
|
13597
13707
|
</th>
|
|
13598
13708
|
<td role="cell" data-label="Position">Visual design lead</td>
|
|
13599
13709
|
<td role="cell" data-label="Location">Westford</td>
|
|
@@ -13653,14 +13763,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
13653
13763
|
|
|
13654
13764
|
<tr role="row">
|
|
13655
13765
|
<td class="pf-c-table__check" role="cell">
|
|
13656
|
-
<
|
|
13657
|
-
|
|
13658
|
-
|
|
13659
|
-
|
|
13660
|
-
|
|
13766
|
+
<label>
|
|
13767
|
+
<input
|
|
13768
|
+
type="checkbox"
|
|
13769
|
+
name="borderless-table-checkrow4"
|
|
13770
|
+
aria-labelledby="borderless-table-node4"
|
|
13771
|
+
/>
|
|
13772
|
+
</label>
|
|
13661
13773
|
</td>
|
|
13662
|
-
<th role="columnheader" data-label="
|
|
13663
|
-
<
|
|
13774
|
+
<th role="columnheader" data-label="Data label name">
|
|
13775
|
+
<div id="borderless-table-node4">Emma Jackson</div>
|
|
13664
13776
|
</th>
|
|
13665
13777
|
<td role="cell" data-label="Position">Interaction design</td>
|
|
13666
13778
|
<td role="cell" data-label="Location">Westford</td>
|
|
@@ -13734,11 +13846,13 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
13734
13846
|
<thead>
|
|
13735
13847
|
<tr role="row">
|
|
13736
13848
|
<td class="pf-c-table__check" role="cell">
|
|
13737
|
-
<
|
|
13738
|
-
|
|
13739
|
-
|
|
13740
|
-
|
|
13741
|
-
|
|
13849
|
+
<label>
|
|
13850
|
+
<input
|
|
13851
|
+
type="checkbox"
|
|
13852
|
+
name="borderless-compact-table-checkrowthead"
|
|
13853
|
+
aria-label="Select all rows"
|
|
13854
|
+
/>
|
|
13855
|
+
</label>
|
|
13742
13856
|
</td>
|
|
13743
13857
|
<th role="columnheader" scope="col">Contributor</th>
|
|
13744
13858
|
<th role="columnheader" scope="col">Position</th>
|
|
@@ -13754,14 +13868,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
13754
13868
|
<tbody role="rowgroup">
|
|
13755
13869
|
<tr role="row">
|
|
13756
13870
|
<td class="pf-c-table__check" role="cell">
|
|
13757
|
-
<
|
|
13758
|
-
|
|
13759
|
-
|
|
13760
|
-
|
|
13761
|
-
|
|
13871
|
+
<label>
|
|
13872
|
+
<input
|
|
13873
|
+
type="checkbox"
|
|
13874
|
+
name="borderless-compact-table-checkrow1"
|
|
13875
|
+
aria-labelledby="borderless-compact-table-node1"
|
|
13876
|
+
/>
|
|
13877
|
+
</label>
|
|
13762
13878
|
</td>
|
|
13763
|
-
<th role="columnheader" data-label="
|
|
13764
|
-
<
|
|
13879
|
+
<th role="columnheader" data-label="Data label name">
|
|
13880
|
+
<div id="borderless-compact-table-node1">Sam Jones</div>
|
|
13765
13881
|
</th>
|
|
13766
13882
|
<td role="cell" data-label="Position">CSS guru</td>
|
|
13767
13883
|
<td role="cell" data-label="Location">Not too sure</td>
|
|
@@ -13821,14 +13937,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
13821
13937
|
|
|
13822
13938
|
<tr role="row">
|
|
13823
13939
|
<td class="pf-c-table__check" role="cell">
|
|
13824
|
-
<
|
|
13825
|
-
|
|
13826
|
-
|
|
13827
|
-
|
|
13828
|
-
|
|
13940
|
+
<label>
|
|
13941
|
+
<input
|
|
13942
|
+
type="checkbox"
|
|
13943
|
+
name="borderless-compact-table-checkrow2"
|
|
13944
|
+
aria-labelledby="borderless-compact-table-node2"
|
|
13945
|
+
/>
|
|
13946
|
+
</label>
|
|
13829
13947
|
</td>
|
|
13830
|
-
<th role="columnheader" data-label="
|
|
13831
|
-
<
|
|
13948
|
+
<th role="columnheader" data-label="Data label name">
|
|
13949
|
+
<div id="borderless-compact-table-node2">Amy Wilson</div>
|
|
13832
13950
|
</th>
|
|
13833
13951
|
<td role="cell" data-label="Position">Visual design</td>
|
|
13834
13952
|
<td role="cell" data-label="Location">Raleigh</td>
|
|
@@ -13888,14 +14006,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
13888
14006
|
|
|
13889
14007
|
<tr role="row">
|
|
13890
14008
|
<td class="pf-c-table__check" role="cell">
|
|
13891
|
-
<
|
|
13892
|
-
|
|
13893
|
-
|
|
13894
|
-
|
|
13895
|
-
|
|
14009
|
+
<label>
|
|
14010
|
+
<input
|
|
14011
|
+
type="checkbox"
|
|
14012
|
+
name="borderless-compact-table-checkrow3"
|
|
14013
|
+
aria-labelledby="borderless-compact-table-node3"
|
|
14014
|
+
/>
|
|
14015
|
+
</label>
|
|
13896
14016
|
</td>
|
|
13897
|
-
<th role="columnheader" data-label="
|
|
13898
|
-
<
|
|
14017
|
+
<th role="columnheader" data-label="Data label name">
|
|
14018
|
+
<div id="borderless-compact-table-node3">Steve Wilson</div>
|
|
13899
14019
|
</th>
|
|
13900
14020
|
<td role="cell" data-label="Position">Visual design lead</td>
|
|
13901
14021
|
<td role="cell" data-label="Location">Westford</td>
|
|
@@ -13955,14 +14075,16 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
13955
14075
|
|
|
13956
14076
|
<tr role="row">
|
|
13957
14077
|
<td class="pf-c-table__check" role="cell">
|
|
13958
|
-
<
|
|
13959
|
-
|
|
13960
|
-
|
|
13961
|
-
|
|
13962
|
-
|
|
14078
|
+
<label>
|
|
14079
|
+
<input
|
|
14080
|
+
type="checkbox"
|
|
14081
|
+
name="borderless-compact-table-checkrow4"
|
|
14082
|
+
aria-labelledby="borderless-compact-table-node4"
|
|
14083
|
+
/>
|
|
14084
|
+
</label>
|
|
13963
14085
|
</td>
|
|
13964
|
-
<th role="columnheader" data-label="
|
|
13965
|
-
<
|
|
14086
|
+
<th role="columnheader" data-label="Data label name">
|
|
14087
|
+
<div id="borderless-compact-table-node4">Emma Jackson</div>
|
|
13966
14088
|
</th>
|
|
13967
14089
|
<td role="cell" data-label="Position">Interaction design</td>
|
|
13968
14090
|
<td role="cell" data-label="Location">Westford</td>
|
|
@@ -14037,11 +14159,13 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
14037
14159
|
<tr role="row">
|
|
14038
14160
|
<td></td>
|
|
14039
14161
|
<td class="pf-c-table__check" role="cell">
|
|
14040
|
-
<
|
|
14041
|
-
|
|
14042
|
-
|
|
14043
|
-
|
|
14044
|
-
|
|
14162
|
+
<label>
|
|
14163
|
+
<input
|
|
14164
|
+
type="checkbox"
|
|
14165
|
+
name="borderless-table-expandable-checkrowthead"
|
|
14166
|
+
aria-label="Select all rows"
|
|
14167
|
+
/>
|
|
14168
|
+
</label>
|
|
14045
14169
|
</td>
|
|
14046
14170
|
<th
|
|
14047
14171
|
class="pf-m-width-30 pf-c-table__sort pf-m-selected"
|
|
@@ -14111,17 +14235,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
14111
14235
|
</td>
|
|
14112
14236
|
|
|
14113
14237
|
<td class="pf-c-table__check" role="cell">
|
|
14114
|
-
<
|
|
14115
|
-
|
|
14116
|
-
|
|
14117
|
-
|
|
14118
|
-
|
|
14238
|
+
<label>
|
|
14239
|
+
<input
|
|
14240
|
+
type="checkbox"
|
|
14241
|
+
name="borderless-table-expandable-checkrow1"
|
|
14242
|
+
aria-labelledby="borderless-table-expandable-node1"
|
|
14243
|
+
/>
|
|
14244
|
+
</label>
|
|
14119
14245
|
</td>
|
|
14120
|
-
<th role="columnheader" data-label="
|
|
14121
|
-
<div>
|
|
14122
|
-
|
|
14123
|
-
<a href="#">siemur/test-space</a>
|
|
14124
|
-
</div>
|
|
14246
|
+
<th role="columnheader" data-label="Data label name">
|
|
14247
|
+
<div id="borderless-table-expandable-node1">Node 1</div>
|
|
14248
|
+
<a href="#">siemur/test-space</a>
|
|
14125
14249
|
</th>
|
|
14126
14250
|
<td role="cell" data-label="Branches">10</td>
|
|
14127
14251
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -14208,17 +14332,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
14208
14332
|
</td>
|
|
14209
14333
|
|
|
14210
14334
|
<td class="pf-c-table__check" role="cell">
|
|
14211
|
-
<
|
|
14212
|
-
|
|
14213
|
-
|
|
14214
|
-
|
|
14215
|
-
|
|
14335
|
+
<label>
|
|
14336
|
+
<input
|
|
14337
|
+
type="checkbox"
|
|
14338
|
+
name="borderless-table-expandable-checkrow2"
|
|
14339
|
+
aria-labelledby="borderless-table-expandable-node2"
|
|
14340
|
+
/>
|
|
14341
|
+
</label>
|
|
14216
14342
|
</td>
|
|
14217
|
-
<th role="columnheader" data-label="
|
|
14218
|
-
<div>
|
|
14219
|
-
|
|
14220
|
-
<a href="#">siemur/test-space</a>
|
|
14221
|
-
</div>
|
|
14343
|
+
<th role="columnheader" data-label="Data label name">
|
|
14344
|
+
<div id="borderless-table-expandable-node2">Node 2</div>
|
|
14345
|
+
<a href="#">siemur/test-space</a>
|
|
14222
14346
|
</th>
|
|
14223
14347
|
<td role="cell" data-label="Branches">10</td>
|
|
14224
14348
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -14303,17 +14427,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
14303
14427
|
</td>
|
|
14304
14428
|
|
|
14305
14429
|
<td class="pf-c-table__check" role="cell">
|
|
14306
|
-
<
|
|
14307
|
-
|
|
14308
|
-
|
|
14309
|
-
|
|
14310
|
-
|
|
14430
|
+
<label>
|
|
14431
|
+
<input
|
|
14432
|
+
type="checkbox"
|
|
14433
|
+
name="borderless-table-expandable-checkrow3"
|
|
14434
|
+
aria-labelledby="borderless-table-expandable-node3"
|
|
14435
|
+
/>
|
|
14436
|
+
</label>
|
|
14311
14437
|
</td>
|
|
14312
|
-
<th role="columnheader" data-label="
|
|
14313
|
-
<div>
|
|
14314
|
-
|
|
14315
|
-
<a href="#">siemur/test-space</a>
|
|
14316
|
-
</div>
|
|
14438
|
+
<th role="columnheader" data-label="Data label name">
|
|
14439
|
+
<div id="borderless-table-expandable-node3">Node 3</div>
|
|
14440
|
+
<a href="#">siemur/test-space</a>
|
|
14317
14441
|
</th>
|
|
14318
14442
|
<td role="cell" data-label="Branches">10</td>
|
|
14319
14443
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -14398,17 +14522,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
14398
14522
|
</td>
|
|
14399
14523
|
|
|
14400
14524
|
<td class="pf-c-table__check" role="cell">
|
|
14401
|
-
<
|
|
14402
|
-
|
|
14403
|
-
|
|
14404
|
-
|
|
14405
|
-
|
|
14525
|
+
<label>
|
|
14526
|
+
<input
|
|
14527
|
+
type="checkbox"
|
|
14528
|
+
name="borderless-table-expandable-checkrow4"
|
|
14529
|
+
aria-labelledby="borderless-table-expandable-node4"
|
|
14530
|
+
/>
|
|
14531
|
+
</label>
|
|
14406
14532
|
</td>
|
|
14407
|
-
<th role="columnheader" data-label="
|
|
14408
|
-
<div>
|
|
14409
|
-
|
|
14410
|
-
<a href="#">siemur/test-space</a>
|
|
14411
|
-
</div>
|
|
14533
|
+
<th role="columnheader" data-label="Data label name">
|
|
14534
|
+
<div id="borderless-table-expandable-node4">Node 4</div>
|
|
14535
|
+
<a href="#">siemur/test-space</a>
|
|
14412
14536
|
</th>
|
|
14413
14537
|
<td role="cell" data-label="Branches">10</td>
|
|
14414
14538
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -14638,7 +14762,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
14638
14762
|
<table
|
|
14639
14763
|
class="pf-c-table pf-m-compact pf-m-no-border-rows"
|
|
14640
14764
|
role="grid"
|
|
14641
|
-
id="borderless-compound-expansion-table-nested-table-1"
|
|
14765
|
+
id="borderless-compound-expansion-table-nested-table-1-"
|
|
14642
14766
|
aria-label="Nested table"
|
|
14643
14767
|
>
|
|
14644
14768
|
<thead>
|
|
@@ -14678,7 +14802,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
14678
14802
|
<div class="pf-c-dropdown">
|
|
14679
14803
|
<button
|
|
14680
14804
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
14681
|
-
id="borderless-compound-expansion-table-nested-table-1
|
|
14805
|
+
id="borderless-compound-expansion-table-nested-table-1--dropdown-kebab-nested-tr1-button"
|
|
14682
14806
|
aria-expanded="false"
|
|
14683
14807
|
type="button"
|
|
14684
14808
|
aria-label="Actions"
|
|
@@ -14687,7 +14811,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
14687
14811
|
</button>
|
|
14688
14812
|
<ul
|
|
14689
14813
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
14690
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-1
|
|
14814
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-1--dropdown-kebab-nested-tr1-button"
|
|
14691
14815
|
hidden
|
|
14692
14816
|
>
|
|
14693
14817
|
<li>
|
|
@@ -14736,7 +14860,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
14736
14860
|
<div class="pf-c-dropdown">
|
|
14737
14861
|
<button
|
|
14738
14862
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
14739
|
-
id="borderless-compound-expansion-table-nested-table-1
|
|
14863
|
+
id="borderless-compound-expansion-table-nested-table-1--dropdown-kebab-nested-tr2-button"
|
|
14740
14864
|
aria-expanded="false"
|
|
14741
14865
|
type="button"
|
|
14742
14866
|
aria-label="Actions"
|
|
@@ -14745,7 +14869,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
14745
14869
|
</button>
|
|
14746
14870
|
<ul
|
|
14747
14871
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
14748
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-1
|
|
14872
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-1--dropdown-kebab-nested-tr2-button"
|
|
14749
14873
|
hidden
|
|
14750
14874
|
>
|
|
14751
14875
|
<li>
|
|
@@ -14794,7 +14918,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
14794
14918
|
<div class="pf-c-dropdown">
|
|
14795
14919
|
<button
|
|
14796
14920
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
14797
|
-
id="borderless-compound-expansion-table-nested-table-1
|
|
14921
|
+
id="borderless-compound-expansion-table-nested-table-1--dropdown-kebab-nested-tr3-button"
|
|
14798
14922
|
aria-expanded="false"
|
|
14799
14923
|
type="button"
|
|
14800
14924
|
aria-label="Actions"
|
|
@@ -14803,7 +14927,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
14803
14927
|
</button>
|
|
14804
14928
|
<ul
|
|
14805
14929
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
14806
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-1
|
|
14930
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-1--dropdown-kebab-nested-tr3-button"
|
|
14807
14931
|
hidden
|
|
14808
14932
|
>
|
|
14809
14933
|
<li>
|
|
@@ -14852,7 +14976,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
14852
14976
|
<div class="pf-c-dropdown">
|
|
14853
14977
|
<button
|
|
14854
14978
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
14855
|
-
id="borderless-compound-expansion-table-nested-table-1
|
|
14979
|
+
id="borderless-compound-expansion-table-nested-table-1--dropdown-kebab-nested-tr4-button"
|
|
14856
14980
|
aria-expanded="false"
|
|
14857
14981
|
type="button"
|
|
14858
14982
|
aria-label="Actions"
|
|
@@ -14861,7 +14985,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
14861
14985
|
</button>
|
|
14862
14986
|
<ul
|
|
14863
14987
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
14864
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-1
|
|
14988
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-1--dropdown-kebab-nested-tr4-button"
|
|
14865
14989
|
hidden
|
|
14866
14990
|
>
|
|
14867
14991
|
<li>
|
|
@@ -14910,7 +15034,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
14910
15034
|
<div class="pf-c-dropdown">
|
|
14911
15035
|
<button
|
|
14912
15036
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
14913
|
-
id="borderless-compound-expansion-table-nested-table-1
|
|
15037
|
+
id="borderless-compound-expansion-table-nested-table-1--dropdown-kebab-nested-tr5-button"
|
|
14914
15038
|
aria-expanded="false"
|
|
14915
15039
|
type="button"
|
|
14916
15040
|
aria-label="Actions"
|
|
@@ -14919,7 +15043,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
14919
15043
|
</button>
|
|
14920
15044
|
<ul
|
|
14921
15045
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
14922
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-1
|
|
15046
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-1--dropdown-kebab-nested-tr5-button"
|
|
14923
15047
|
hidden
|
|
14924
15048
|
>
|
|
14925
15049
|
<li>
|
|
@@ -14967,7 +15091,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
14967
15091
|
<table
|
|
14968
15092
|
class="pf-c-table pf-m-compact pf-m-no-border-rows"
|
|
14969
15093
|
role="grid"
|
|
14970
|
-
id="borderless-compound-expansion-table-nested-table-2"
|
|
15094
|
+
id="borderless-compound-expansion-table-nested-table-2-"
|
|
14971
15095
|
aria-label="Nested table"
|
|
14972
15096
|
>
|
|
14973
15097
|
<thead>
|
|
@@ -15007,7 +15131,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15007
15131
|
<div class="pf-c-dropdown">
|
|
15008
15132
|
<button
|
|
15009
15133
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
15010
|
-
id="borderless-compound-expansion-table-nested-table-2
|
|
15134
|
+
id="borderless-compound-expansion-table-nested-table-2--dropdown-kebab-nested-tr1-button"
|
|
15011
15135
|
aria-expanded="false"
|
|
15012
15136
|
type="button"
|
|
15013
15137
|
aria-label="Actions"
|
|
@@ -15016,7 +15140,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15016
15140
|
</button>
|
|
15017
15141
|
<ul
|
|
15018
15142
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
15019
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-2
|
|
15143
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-2--dropdown-kebab-nested-tr1-button"
|
|
15020
15144
|
hidden
|
|
15021
15145
|
>
|
|
15022
15146
|
<li>
|
|
@@ -15065,7 +15189,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15065
15189
|
<div class="pf-c-dropdown">
|
|
15066
15190
|
<button
|
|
15067
15191
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
15068
|
-
id="borderless-compound-expansion-table-nested-table-2
|
|
15192
|
+
id="borderless-compound-expansion-table-nested-table-2--dropdown-kebab-nested-tr2-button"
|
|
15069
15193
|
aria-expanded="false"
|
|
15070
15194
|
type="button"
|
|
15071
15195
|
aria-label="Actions"
|
|
@@ -15074,7 +15198,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15074
15198
|
</button>
|
|
15075
15199
|
<ul
|
|
15076
15200
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
15077
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-2
|
|
15201
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-2--dropdown-kebab-nested-tr2-button"
|
|
15078
15202
|
hidden
|
|
15079
15203
|
>
|
|
15080
15204
|
<li>
|
|
@@ -15123,7 +15247,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15123
15247
|
<div class="pf-c-dropdown">
|
|
15124
15248
|
<button
|
|
15125
15249
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
15126
|
-
id="borderless-compound-expansion-table-nested-table-2
|
|
15250
|
+
id="borderless-compound-expansion-table-nested-table-2--dropdown-kebab-nested-tr3-button"
|
|
15127
15251
|
aria-expanded="false"
|
|
15128
15252
|
type="button"
|
|
15129
15253
|
aria-label="Actions"
|
|
@@ -15132,7 +15256,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15132
15256
|
</button>
|
|
15133
15257
|
<ul
|
|
15134
15258
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
15135
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-2
|
|
15259
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-2--dropdown-kebab-nested-tr3-button"
|
|
15136
15260
|
hidden
|
|
15137
15261
|
>
|
|
15138
15262
|
<li>
|
|
@@ -15181,7 +15305,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15181
15305
|
<div class="pf-c-dropdown">
|
|
15182
15306
|
<button
|
|
15183
15307
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
15184
|
-
id="borderless-compound-expansion-table-nested-table-2
|
|
15308
|
+
id="borderless-compound-expansion-table-nested-table-2--dropdown-kebab-nested-tr4-button"
|
|
15185
15309
|
aria-expanded="false"
|
|
15186
15310
|
type="button"
|
|
15187
15311
|
aria-label="Actions"
|
|
@@ -15190,7 +15314,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15190
15314
|
</button>
|
|
15191
15315
|
<ul
|
|
15192
15316
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
15193
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-2
|
|
15317
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-2--dropdown-kebab-nested-tr4-button"
|
|
15194
15318
|
hidden
|
|
15195
15319
|
>
|
|
15196
15320
|
<li>
|
|
@@ -15239,7 +15363,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15239
15363
|
<div class="pf-c-dropdown">
|
|
15240
15364
|
<button
|
|
15241
15365
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
15242
|
-
id="borderless-compound-expansion-table-nested-table-2
|
|
15366
|
+
id="borderless-compound-expansion-table-nested-table-2--dropdown-kebab-nested-tr5-button"
|
|
15243
15367
|
aria-expanded="false"
|
|
15244
15368
|
type="button"
|
|
15245
15369
|
aria-label="Actions"
|
|
@@ -15248,7 +15372,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15248
15372
|
</button>
|
|
15249
15373
|
<ul
|
|
15250
15374
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
15251
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-2
|
|
15375
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-2--dropdown-kebab-nested-tr5-button"
|
|
15252
15376
|
hidden
|
|
15253
15377
|
>
|
|
15254
15378
|
<li>
|
|
@@ -15296,7 +15420,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15296
15420
|
<table
|
|
15297
15421
|
class="pf-c-table pf-m-compact pf-m-no-border-rows"
|
|
15298
15422
|
role="grid"
|
|
15299
|
-
id="borderless-compound-expansion-table-nested-table-3"
|
|
15423
|
+
id="borderless-compound-expansion-table-nested-table-3-"
|
|
15300
15424
|
aria-label="Nested table"
|
|
15301
15425
|
>
|
|
15302
15426
|
<thead>
|
|
@@ -15336,7 +15460,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15336
15460
|
<div class="pf-c-dropdown">
|
|
15337
15461
|
<button
|
|
15338
15462
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
15339
|
-
id="borderless-compound-expansion-table-nested-table-3
|
|
15463
|
+
id="borderless-compound-expansion-table-nested-table-3--dropdown-kebab-nested-tr1-button"
|
|
15340
15464
|
aria-expanded="false"
|
|
15341
15465
|
type="button"
|
|
15342
15466
|
aria-label="Actions"
|
|
@@ -15345,7 +15469,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15345
15469
|
</button>
|
|
15346
15470
|
<ul
|
|
15347
15471
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
15348
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-3
|
|
15472
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-3--dropdown-kebab-nested-tr1-button"
|
|
15349
15473
|
hidden
|
|
15350
15474
|
>
|
|
15351
15475
|
<li>
|
|
@@ -15394,7 +15518,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15394
15518
|
<div class="pf-c-dropdown">
|
|
15395
15519
|
<button
|
|
15396
15520
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
15397
|
-
id="borderless-compound-expansion-table-nested-table-3
|
|
15521
|
+
id="borderless-compound-expansion-table-nested-table-3--dropdown-kebab-nested-tr2-button"
|
|
15398
15522
|
aria-expanded="false"
|
|
15399
15523
|
type="button"
|
|
15400
15524
|
aria-label="Actions"
|
|
@@ -15403,7 +15527,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15403
15527
|
</button>
|
|
15404
15528
|
<ul
|
|
15405
15529
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
15406
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-3
|
|
15530
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-3--dropdown-kebab-nested-tr2-button"
|
|
15407
15531
|
hidden
|
|
15408
15532
|
>
|
|
15409
15533
|
<li>
|
|
@@ -15452,7 +15576,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15452
15576
|
<div class="pf-c-dropdown">
|
|
15453
15577
|
<button
|
|
15454
15578
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
15455
|
-
id="borderless-compound-expansion-table-nested-table-3
|
|
15579
|
+
id="borderless-compound-expansion-table-nested-table-3--dropdown-kebab-nested-tr3-button"
|
|
15456
15580
|
aria-expanded="false"
|
|
15457
15581
|
type="button"
|
|
15458
15582
|
aria-label="Actions"
|
|
@@ -15461,7 +15585,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15461
15585
|
</button>
|
|
15462
15586
|
<ul
|
|
15463
15587
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
15464
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-3
|
|
15588
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-3--dropdown-kebab-nested-tr3-button"
|
|
15465
15589
|
hidden
|
|
15466
15590
|
>
|
|
15467
15591
|
<li>
|
|
@@ -15510,7 +15634,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15510
15634
|
<div class="pf-c-dropdown">
|
|
15511
15635
|
<button
|
|
15512
15636
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
15513
|
-
id="borderless-compound-expansion-table-nested-table-3
|
|
15637
|
+
id="borderless-compound-expansion-table-nested-table-3--dropdown-kebab-nested-tr4-button"
|
|
15514
15638
|
aria-expanded="false"
|
|
15515
15639
|
type="button"
|
|
15516
15640
|
aria-label="Actions"
|
|
@@ -15519,7 +15643,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15519
15643
|
</button>
|
|
15520
15644
|
<ul
|
|
15521
15645
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
15522
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-3
|
|
15646
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-3--dropdown-kebab-nested-tr4-button"
|
|
15523
15647
|
hidden
|
|
15524
15648
|
>
|
|
15525
15649
|
<li>
|
|
@@ -15568,7 +15692,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15568
15692
|
<div class="pf-c-dropdown">
|
|
15569
15693
|
<button
|
|
15570
15694
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
15571
|
-
id="borderless-compound-expansion-table-nested-table-3
|
|
15695
|
+
id="borderless-compound-expansion-table-nested-table-3--dropdown-kebab-nested-tr5-button"
|
|
15572
15696
|
aria-expanded="false"
|
|
15573
15697
|
type="button"
|
|
15574
15698
|
aria-label="Actions"
|
|
@@ -15577,7 +15701,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15577
15701
|
</button>
|
|
15578
15702
|
<ul
|
|
15579
15703
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
15580
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-3
|
|
15704
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-3--dropdown-kebab-nested-tr5-button"
|
|
15581
15705
|
hidden
|
|
15582
15706
|
>
|
|
15583
15707
|
<li>
|
|
@@ -15716,7 +15840,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15716
15840
|
<table
|
|
15717
15841
|
class="pf-c-table pf-m-compact pf-m-no-border-rows"
|
|
15718
15842
|
role="grid"
|
|
15719
|
-
id="borderless-compound-expansion-table-nested-table-4"
|
|
15843
|
+
id="borderless-compound-expansion-table-nested-table-4-"
|
|
15720
15844
|
aria-label="Nested table"
|
|
15721
15845
|
>
|
|
15722
15846
|
<thead>
|
|
@@ -15756,7 +15880,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15756
15880
|
<div class="pf-c-dropdown">
|
|
15757
15881
|
<button
|
|
15758
15882
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
15759
|
-
id="borderless-compound-expansion-table-nested-table-4
|
|
15883
|
+
id="borderless-compound-expansion-table-nested-table-4--dropdown-kebab-nested-tr1-button"
|
|
15760
15884
|
aria-expanded="false"
|
|
15761
15885
|
type="button"
|
|
15762
15886
|
aria-label="Actions"
|
|
@@ -15765,7 +15889,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15765
15889
|
</button>
|
|
15766
15890
|
<ul
|
|
15767
15891
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
15768
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-4
|
|
15892
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-4--dropdown-kebab-nested-tr1-button"
|
|
15769
15893
|
hidden
|
|
15770
15894
|
>
|
|
15771
15895
|
<li>
|
|
@@ -15814,7 +15938,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15814
15938
|
<div class="pf-c-dropdown">
|
|
15815
15939
|
<button
|
|
15816
15940
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
15817
|
-
id="borderless-compound-expansion-table-nested-table-4
|
|
15941
|
+
id="borderless-compound-expansion-table-nested-table-4--dropdown-kebab-nested-tr2-button"
|
|
15818
15942
|
aria-expanded="false"
|
|
15819
15943
|
type="button"
|
|
15820
15944
|
aria-label="Actions"
|
|
@@ -15823,7 +15947,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15823
15947
|
</button>
|
|
15824
15948
|
<ul
|
|
15825
15949
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
15826
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-4
|
|
15950
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-4--dropdown-kebab-nested-tr2-button"
|
|
15827
15951
|
hidden
|
|
15828
15952
|
>
|
|
15829
15953
|
<li>
|
|
@@ -15872,7 +15996,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15872
15996
|
<div class="pf-c-dropdown">
|
|
15873
15997
|
<button
|
|
15874
15998
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
15875
|
-
id="borderless-compound-expansion-table-nested-table-4
|
|
15999
|
+
id="borderless-compound-expansion-table-nested-table-4--dropdown-kebab-nested-tr3-button"
|
|
15876
16000
|
aria-expanded="false"
|
|
15877
16001
|
type="button"
|
|
15878
16002
|
aria-label="Actions"
|
|
@@ -15881,7 +16005,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15881
16005
|
</button>
|
|
15882
16006
|
<ul
|
|
15883
16007
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
15884
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-4
|
|
16008
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-4--dropdown-kebab-nested-tr3-button"
|
|
15885
16009
|
hidden
|
|
15886
16010
|
>
|
|
15887
16011
|
<li>
|
|
@@ -15930,7 +16054,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15930
16054
|
<div class="pf-c-dropdown">
|
|
15931
16055
|
<button
|
|
15932
16056
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
15933
|
-
id="borderless-compound-expansion-table-nested-table-4
|
|
16057
|
+
id="borderless-compound-expansion-table-nested-table-4--dropdown-kebab-nested-tr4-button"
|
|
15934
16058
|
aria-expanded="false"
|
|
15935
16059
|
type="button"
|
|
15936
16060
|
aria-label="Actions"
|
|
@@ -15939,7 +16063,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15939
16063
|
</button>
|
|
15940
16064
|
<ul
|
|
15941
16065
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
15942
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-4
|
|
16066
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-4--dropdown-kebab-nested-tr4-button"
|
|
15943
16067
|
hidden
|
|
15944
16068
|
>
|
|
15945
16069
|
<li>
|
|
@@ -15988,7 +16112,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15988
16112
|
<div class="pf-c-dropdown">
|
|
15989
16113
|
<button
|
|
15990
16114
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
15991
|
-
id="borderless-compound-expansion-table-nested-table-4
|
|
16115
|
+
id="borderless-compound-expansion-table-nested-table-4--dropdown-kebab-nested-tr5-button"
|
|
15992
16116
|
aria-expanded="false"
|
|
15993
16117
|
type="button"
|
|
15994
16118
|
aria-label="Actions"
|
|
@@ -15997,7 +16121,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
15997
16121
|
</button>
|
|
15998
16122
|
<ul
|
|
15999
16123
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
16000
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-4
|
|
16124
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-4--dropdown-kebab-nested-tr5-button"
|
|
16001
16125
|
hidden
|
|
16002
16126
|
>
|
|
16003
16127
|
<li>
|
|
@@ -16045,7 +16169,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16045
16169
|
<table
|
|
16046
16170
|
class="pf-c-table pf-m-compact pf-m-no-border-rows"
|
|
16047
16171
|
role="grid"
|
|
16048
|
-
id="borderless-compound-expansion-table-nested-table-5"
|
|
16172
|
+
id="borderless-compound-expansion-table-nested-table-5-"
|
|
16049
16173
|
aria-label="Nested table"
|
|
16050
16174
|
>
|
|
16051
16175
|
<thead>
|
|
@@ -16085,7 +16209,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16085
16209
|
<div class="pf-c-dropdown">
|
|
16086
16210
|
<button
|
|
16087
16211
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
16088
|
-
id="borderless-compound-expansion-table-nested-table-5
|
|
16212
|
+
id="borderless-compound-expansion-table-nested-table-5--dropdown-kebab-nested-tr1-button"
|
|
16089
16213
|
aria-expanded="false"
|
|
16090
16214
|
type="button"
|
|
16091
16215
|
aria-label="Actions"
|
|
@@ -16094,7 +16218,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16094
16218
|
</button>
|
|
16095
16219
|
<ul
|
|
16096
16220
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
16097
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-5
|
|
16221
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-5--dropdown-kebab-nested-tr1-button"
|
|
16098
16222
|
hidden
|
|
16099
16223
|
>
|
|
16100
16224
|
<li>
|
|
@@ -16143,7 +16267,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16143
16267
|
<div class="pf-c-dropdown">
|
|
16144
16268
|
<button
|
|
16145
16269
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
16146
|
-
id="borderless-compound-expansion-table-nested-table-5
|
|
16270
|
+
id="borderless-compound-expansion-table-nested-table-5--dropdown-kebab-nested-tr2-button"
|
|
16147
16271
|
aria-expanded="false"
|
|
16148
16272
|
type="button"
|
|
16149
16273
|
aria-label="Actions"
|
|
@@ -16152,7 +16276,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16152
16276
|
</button>
|
|
16153
16277
|
<ul
|
|
16154
16278
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
16155
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-5
|
|
16279
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-5--dropdown-kebab-nested-tr2-button"
|
|
16156
16280
|
hidden
|
|
16157
16281
|
>
|
|
16158
16282
|
<li>
|
|
@@ -16201,7 +16325,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16201
16325
|
<div class="pf-c-dropdown">
|
|
16202
16326
|
<button
|
|
16203
16327
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
16204
|
-
id="borderless-compound-expansion-table-nested-table-5
|
|
16328
|
+
id="borderless-compound-expansion-table-nested-table-5--dropdown-kebab-nested-tr3-button"
|
|
16205
16329
|
aria-expanded="false"
|
|
16206
16330
|
type="button"
|
|
16207
16331
|
aria-label="Actions"
|
|
@@ -16210,7 +16334,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16210
16334
|
</button>
|
|
16211
16335
|
<ul
|
|
16212
16336
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
16213
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-5
|
|
16337
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-5--dropdown-kebab-nested-tr3-button"
|
|
16214
16338
|
hidden
|
|
16215
16339
|
>
|
|
16216
16340
|
<li>
|
|
@@ -16259,7 +16383,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16259
16383
|
<div class="pf-c-dropdown">
|
|
16260
16384
|
<button
|
|
16261
16385
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
16262
|
-
id="borderless-compound-expansion-table-nested-table-5
|
|
16386
|
+
id="borderless-compound-expansion-table-nested-table-5--dropdown-kebab-nested-tr4-button"
|
|
16263
16387
|
aria-expanded="false"
|
|
16264
16388
|
type="button"
|
|
16265
16389
|
aria-label="Actions"
|
|
@@ -16268,7 +16392,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16268
16392
|
</button>
|
|
16269
16393
|
<ul
|
|
16270
16394
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
16271
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-5
|
|
16395
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-5--dropdown-kebab-nested-tr4-button"
|
|
16272
16396
|
hidden
|
|
16273
16397
|
>
|
|
16274
16398
|
<li>
|
|
@@ -16317,7 +16441,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16317
16441
|
<div class="pf-c-dropdown">
|
|
16318
16442
|
<button
|
|
16319
16443
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
16320
|
-
id="borderless-compound-expansion-table-nested-table-5
|
|
16444
|
+
id="borderless-compound-expansion-table-nested-table-5--dropdown-kebab-nested-tr5-button"
|
|
16321
16445
|
aria-expanded="false"
|
|
16322
16446
|
type="button"
|
|
16323
16447
|
aria-label="Actions"
|
|
@@ -16326,7 +16450,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16326
16450
|
</button>
|
|
16327
16451
|
<ul
|
|
16328
16452
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
16329
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-5
|
|
16453
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-5--dropdown-kebab-nested-tr5-button"
|
|
16330
16454
|
hidden
|
|
16331
16455
|
>
|
|
16332
16456
|
<li>
|
|
@@ -16374,7 +16498,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16374
16498
|
<table
|
|
16375
16499
|
class="pf-c-table pf-m-compact pf-m-no-border-rows"
|
|
16376
16500
|
role="grid"
|
|
16377
|
-
id="borderless-compound-expansion-table-nested-table-6"
|
|
16501
|
+
id="borderless-compound-expansion-table-nested-table-6-"
|
|
16378
16502
|
aria-label="Nested table"
|
|
16379
16503
|
>
|
|
16380
16504
|
<thead>
|
|
@@ -16414,7 +16538,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16414
16538
|
<div class="pf-c-dropdown">
|
|
16415
16539
|
<button
|
|
16416
16540
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
16417
|
-
id="borderless-compound-expansion-table-nested-table-6
|
|
16541
|
+
id="borderless-compound-expansion-table-nested-table-6--dropdown-kebab-nested-tr1-button"
|
|
16418
16542
|
aria-expanded="false"
|
|
16419
16543
|
type="button"
|
|
16420
16544
|
aria-label="Actions"
|
|
@@ -16423,7 +16547,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16423
16547
|
</button>
|
|
16424
16548
|
<ul
|
|
16425
16549
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
16426
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-6
|
|
16550
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-6--dropdown-kebab-nested-tr1-button"
|
|
16427
16551
|
hidden
|
|
16428
16552
|
>
|
|
16429
16553
|
<li>
|
|
@@ -16472,7 +16596,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16472
16596
|
<div class="pf-c-dropdown">
|
|
16473
16597
|
<button
|
|
16474
16598
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
16475
|
-
id="borderless-compound-expansion-table-nested-table-6
|
|
16599
|
+
id="borderless-compound-expansion-table-nested-table-6--dropdown-kebab-nested-tr2-button"
|
|
16476
16600
|
aria-expanded="false"
|
|
16477
16601
|
type="button"
|
|
16478
16602
|
aria-label="Actions"
|
|
@@ -16481,7 +16605,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16481
16605
|
</button>
|
|
16482
16606
|
<ul
|
|
16483
16607
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
16484
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-6
|
|
16608
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-6--dropdown-kebab-nested-tr2-button"
|
|
16485
16609
|
hidden
|
|
16486
16610
|
>
|
|
16487
16611
|
<li>
|
|
@@ -16530,7 +16654,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16530
16654
|
<div class="pf-c-dropdown">
|
|
16531
16655
|
<button
|
|
16532
16656
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
16533
|
-
id="borderless-compound-expansion-table-nested-table-6
|
|
16657
|
+
id="borderless-compound-expansion-table-nested-table-6--dropdown-kebab-nested-tr3-button"
|
|
16534
16658
|
aria-expanded="false"
|
|
16535
16659
|
type="button"
|
|
16536
16660
|
aria-label="Actions"
|
|
@@ -16539,7 +16663,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16539
16663
|
</button>
|
|
16540
16664
|
<ul
|
|
16541
16665
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
16542
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-6
|
|
16666
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-6--dropdown-kebab-nested-tr3-button"
|
|
16543
16667
|
hidden
|
|
16544
16668
|
>
|
|
16545
16669
|
<li>
|
|
@@ -16588,7 +16712,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16588
16712
|
<div class="pf-c-dropdown">
|
|
16589
16713
|
<button
|
|
16590
16714
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
16591
|
-
id="borderless-compound-expansion-table-nested-table-6
|
|
16715
|
+
id="borderless-compound-expansion-table-nested-table-6--dropdown-kebab-nested-tr4-button"
|
|
16592
16716
|
aria-expanded="false"
|
|
16593
16717
|
type="button"
|
|
16594
16718
|
aria-label="Actions"
|
|
@@ -16597,7 +16721,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16597
16721
|
</button>
|
|
16598
16722
|
<ul
|
|
16599
16723
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
16600
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-6
|
|
16724
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-6--dropdown-kebab-nested-tr4-button"
|
|
16601
16725
|
hidden
|
|
16602
16726
|
>
|
|
16603
16727
|
<li>
|
|
@@ -16646,7 +16770,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16646
16770
|
<div class="pf-c-dropdown">
|
|
16647
16771
|
<button
|
|
16648
16772
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
16649
|
-
id="borderless-compound-expansion-table-nested-table-6
|
|
16773
|
+
id="borderless-compound-expansion-table-nested-table-6--dropdown-kebab-nested-tr5-button"
|
|
16650
16774
|
aria-expanded="false"
|
|
16651
16775
|
type="button"
|
|
16652
16776
|
aria-label="Actions"
|
|
@@ -16655,7 +16779,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16655
16779
|
</button>
|
|
16656
16780
|
<ul
|
|
16657
16781
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
16658
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-6
|
|
16782
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-6--dropdown-kebab-nested-tr5-button"
|
|
16659
16783
|
hidden
|
|
16660
16784
|
>
|
|
16661
16785
|
<li>
|
|
@@ -16714,7 +16838,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16714
16838
|
</button>
|
|
16715
16839
|
</td>
|
|
16716
16840
|
<td
|
|
16717
|
-
class="pf-c-table__compound-expansion-
|
|
16841
|
+
class="pf-c-table__compound-expansion-toggle pf-m-expanded"
|
|
16718
16842
|
role="cell"
|
|
16719
16843
|
data-label="Branches"
|
|
16720
16844
|
>
|
|
@@ -16797,7 +16921,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16797
16921
|
<table
|
|
16798
16922
|
class="pf-c-table pf-m-compact pf-m-no-border-rows"
|
|
16799
16923
|
role="grid"
|
|
16800
|
-
id="borderless-compound-expansion-table-nested-table-7"
|
|
16924
|
+
id="borderless-compound-expansion-table-nested-table-7-"
|
|
16801
16925
|
aria-label="Nested table"
|
|
16802
16926
|
>
|
|
16803
16927
|
<thead>
|
|
@@ -16837,7 +16961,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16837
16961
|
<div class="pf-c-dropdown">
|
|
16838
16962
|
<button
|
|
16839
16963
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
16840
|
-
id="borderless-compound-expansion-table-nested-table-7
|
|
16964
|
+
id="borderless-compound-expansion-table-nested-table-7--dropdown-kebab-nested-tr1-button"
|
|
16841
16965
|
aria-expanded="false"
|
|
16842
16966
|
type="button"
|
|
16843
16967
|
aria-label="Actions"
|
|
@@ -16846,7 +16970,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16846
16970
|
</button>
|
|
16847
16971
|
<ul
|
|
16848
16972
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
16849
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-7
|
|
16973
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-7--dropdown-kebab-nested-tr1-button"
|
|
16850
16974
|
hidden
|
|
16851
16975
|
>
|
|
16852
16976
|
<li>
|
|
@@ -16895,7 +17019,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16895
17019
|
<div class="pf-c-dropdown">
|
|
16896
17020
|
<button
|
|
16897
17021
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
16898
|
-
id="borderless-compound-expansion-table-nested-table-7
|
|
17022
|
+
id="borderless-compound-expansion-table-nested-table-7--dropdown-kebab-nested-tr2-button"
|
|
16899
17023
|
aria-expanded="false"
|
|
16900
17024
|
type="button"
|
|
16901
17025
|
aria-label="Actions"
|
|
@@ -16904,7 +17028,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16904
17028
|
</button>
|
|
16905
17029
|
<ul
|
|
16906
17030
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
16907
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-7
|
|
17031
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-7--dropdown-kebab-nested-tr2-button"
|
|
16908
17032
|
hidden
|
|
16909
17033
|
>
|
|
16910
17034
|
<li>
|
|
@@ -16953,7 +17077,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16953
17077
|
<div class="pf-c-dropdown">
|
|
16954
17078
|
<button
|
|
16955
17079
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
16956
|
-
id="borderless-compound-expansion-table-nested-table-7
|
|
17080
|
+
id="borderless-compound-expansion-table-nested-table-7--dropdown-kebab-nested-tr3-button"
|
|
16957
17081
|
aria-expanded="false"
|
|
16958
17082
|
type="button"
|
|
16959
17083
|
aria-label="Actions"
|
|
@@ -16962,7 +17086,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
16962
17086
|
</button>
|
|
16963
17087
|
<ul
|
|
16964
17088
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
16965
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-7
|
|
17089
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-7--dropdown-kebab-nested-tr3-button"
|
|
16966
17090
|
hidden
|
|
16967
17091
|
>
|
|
16968
17092
|
<li>
|
|
@@ -17011,7 +17135,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17011
17135
|
<div class="pf-c-dropdown">
|
|
17012
17136
|
<button
|
|
17013
17137
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
17014
|
-
id="borderless-compound-expansion-table-nested-table-7
|
|
17138
|
+
id="borderless-compound-expansion-table-nested-table-7--dropdown-kebab-nested-tr4-button"
|
|
17015
17139
|
aria-expanded="false"
|
|
17016
17140
|
type="button"
|
|
17017
17141
|
aria-label="Actions"
|
|
@@ -17020,7 +17144,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17020
17144
|
</button>
|
|
17021
17145
|
<ul
|
|
17022
17146
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
17023
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-7
|
|
17147
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-7--dropdown-kebab-nested-tr4-button"
|
|
17024
17148
|
hidden
|
|
17025
17149
|
>
|
|
17026
17150
|
<li>
|
|
@@ -17069,7 +17193,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17069
17193
|
<div class="pf-c-dropdown">
|
|
17070
17194
|
<button
|
|
17071
17195
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
17072
|
-
id="borderless-compound-expansion-table-nested-table-7
|
|
17196
|
+
id="borderless-compound-expansion-table-nested-table-7--dropdown-kebab-nested-tr5-button"
|
|
17073
17197
|
aria-expanded="false"
|
|
17074
17198
|
type="button"
|
|
17075
17199
|
aria-label="Actions"
|
|
@@ -17078,7 +17202,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17078
17202
|
</button>
|
|
17079
17203
|
<ul
|
|
17080
17204
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
17081
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-7
|
|
17205
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-7--dropdown-kebab-nested-tr5-button"
|
|
17082
17206
|
hidden
|
|
17083
17207
|
>
|
|
17084
17208
|
<li>
|
|
@@ -17126,7 +17250,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17126
17250
|
<table
|
|
17127
17251
|
class="pf-c-table pf-m-compact pf-m-no-border-rows"
|
|
17128
17252
|
role="grid"
|
|
17129
|
-
id="borderless-compound-expansion-table-nested-table-8"
|
|
17253
|
+
id="borderless-compound-expansion-table-nested-table-8-"
|
|
17130
17254
|
aria-label="Nested table"
|
|
17131
17255
|
>
|
|
17132
17256
|
<thead>
|
|
@@ -17166,7 +17290,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17166
17290
|
<div class="pf-c-dropdown">
|
|
17167
17291
|
<button
|
|
17168
17292
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
17169
|
-
id="borderless-compound-expansion-table-nested-table-8
|
|
17293
|
+
id="borderless-compound-expansion-table-nested-table-8--dropdown-kebab-nested-tr1-button"
|
|
17170
17294
|
aria-expanded="false"
|
|
17171
17295
|
type="button"
|
|
17172
17296
|
aria-label="Actions"
|
|
@@ -17175,7 +17299,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17175
17299
|
</button>
|
|
17176
17300
|
<ul
|
|
17177
17301
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
17178
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-8
|
|
17302
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-8--dropdown-kebab-nested-tr1-button"
|
|
17179
17303
|
hidden
|
|
17180
17304
|
>
|
|
17181
17305
|
<li>
|
|
@@ -17224,7 +17348,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17224
17348
|
<div class="pf-c-dropdown">
|
|
17225
17349
|
<button
|
|
17226
17350
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
17227
|
-
id="borderless-compound-expansion-table-nested-table-8
|
|
17351
|
+
id="borderless-compound-expansion-table-nested-table-8--dropdown-kebab-nested-tr2-button"
|
|
17228
17352
|
aria-expanded="false"
|
|
17229
17353
|
type="button"
|
|
17230
17354
|
aria-label="Actions"
|
|
@@ -17233,7 +17357,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17233
17357
|
</button>
|
|
17234
17358
|
<ul
|
|
17235
17359
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
17236
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-8
|
|
17360
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-8--dropdown-kebab-nested-tr2-button"
|
|
17237
17361
|
hidden
|
|
17238
17362
|
>
|
|
17239
17363
|
<li>
|
|
@@ -17282,7 +17406,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17282
17406
|
<div class="pf-c-dropdown">
|
|
17283
17407
|
<button
|
|
17284
17408
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
17285
|
-
id="borderless-compound-expansion-table-nested-table-8
|
|
17409
|
+
id="borderless-compound-expansion-table-nested-table-8--dropdown-kebab-nested-tr3-button"
|
|
17286
17410
|
aria-expanded="false"
|
|
17287
17411
|
type="button"
|
|
17288
17412
|
aria-label="Actions"
|
|
@@ -17291,7 +17415,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17291
17415
|
</button>
|
|
17292
17416
|
<ul
|
|
17293
17417
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
17294
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-8
|
|
17418
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-8--dropdown-kebab-nested-tr3-button"
|
|
17295
17419
|
hidden
|
|
17296
17420
|
>
|
|
17297
17421
|
<li>
|
|
@@ -17340,7 +17464,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17340
17464
|
<div class="pf-c-dropdown">
|
|
17341
17465
|
<button
|
|
17342
17466
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
17343
|
-
id="borderless-compound-expansion-table-nested-table-8
|
|
17467
|
+
id="borderless-compound-expansion-table-nested-table-8--dropdown-kebab-nested-tr4-button"
|
|
17344
17468
|
aria-expanded="false"
|
|
17345
17469
|
type="button"
|
|
17346
17470
|
aria-label="Actions"
|
|
@@ -17349,7 +17473,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17349
17473
|
</button>
|
|
17350
17474
|
<ul
|
|
17351
17475
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
17352
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-8
|
|
17476
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-8--dropdown-kebab-nested-tr4-button"
|
|
17353
17477
|
hidden
|
|
17354
17478
|
>
|
|
17355
17479
|
<li>
|
|
@@ -17398,7 +17522,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17398
17522
|
<div class="pf-c-dropdown">
|
|
17399
17523
|
<button
|
|
17400
17524
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
17401
|
-
id="borderless-compound-expansion-table-nested-table-8
|
|
17525
|
+
id="borderless-compound-expansion-table-nested-table-8--dropdown-kebab-nested-tr5-button"
|
|
17402
17526
|
aria-expanded="false"
|
|
17403
17527
|
type="button"
|
|
17404
17528
|
aria-label="Actions"
|
|
@@ -17407,7 +17531,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17407
17531
|
</button>
|
|
17408
17532
|
<ul
|
|
17409
17533
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
17410
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-8
|
|
17534
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-8--dropdown-kebab-nested-tr5-button"
|
|
17411
17535
|
hidden
|
|
17412
17536
|
>
|
|
17413
17537
|
<li>
|
|
@@ -17455,7 +17579,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17455
17579
|
<table
|
|
17456
17580
|
class="pf-c-table pf-m-compact pf-m-no-border-rows"
|
|
17457
17581
|
role="grid"
|
|
17458
|
-
id="borderless-compound-expansion-table-nested-table-9"
|
|
17582
|
+
id="borderless-compound-expansion-table-nested-table-9-"
|
|
17459
17583
|
aria-label="Nested table"
|
|
17460
17584
|
>
|
|
17461
17585
|
<thead>
|
|
@@ -17495,7 +17619,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17495
17619
|
<div class="pf-c-dropdown">
|
|
17496
17620
|
<button
|
|
17497
17621
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
17498
|
-
id="borderless-compound-expansion-table-nested-table-9
|
|
17622
|
+
id="borderless-compound-expansion-table-nested-table-9--dropdown-kebab-nested-tr1-button"
|
|
17499
17623
|
aria-expanded="false"
|
|
17500
17624
|
type="button"
|
|
17501
17625
|
aria-label="Actions"
|
|
@@ -17504,7 +17628,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17504
17628
|
</button>
|
|
17505
17629
|
<ul
|
|
17506
17630
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
17507
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-9
|
|
17631
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-9--dropdown-kebab-nested-tr1-button"
|
|
17508
17632
|
hidden
|
|
17509
17633
|
>
|
|
17510
17634
|
<li>
|
|
@@ -17553,7 +17677,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17553
17677
|
<div class="pf-c-dropdown">
|
|
17554
17678
|
<button
|
|
17555
17679
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
17556
|
-
id="borderless-compound-expansion-table-nested-table-9
|
|
17680
|
+
id="borderless-compound-expansion-table-nested-table-9--dropdown-kebab-nested-tr2-button"
|
|
17557
17681
|
aria-expanded="false"
|
|
17558
17682
|
type="button"
|
|
17559
17683
|
aria-label="Actions"
|
|
@@ -17562,7 +17686,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17562
17686
|
</button>
|
|
17563
17687
|
<ul
|
|
17564
17688
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
17565
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-9
|
|
17689
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-9--dropdown-kebab-nested-tr2-button"
|
|
17566
17690
|
hidden
|
|
17567
17691
|
>
|
|
17568
17692
|
<li>
|
|
@@ -17611,7 +17735,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17611
17735
|
<div class="pf-c-dropdown">
|
|
17612
17736
|
<button
|
|
17613
17737
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
17614
|
-
id="borderless-compound-expansion-table-nested-table-9
|
|
17738
|
+
id="borderless-compound-expansion-table-nested-table-9--dropdown-kebab-nested-tr3-button"
|
|
17615
17739
|
aria-expanded="false"
|
|
17616
17740
|
type="button"
|
|
17617
17741
|
aria-label="Actions"
|
|
@@ -17620,7 +17744,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17620
17744
|
</button>
|
|
17621
17745
|
<ul
|
|
17622
17746
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
17623
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-9
|
|
17747
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-9--dropdown-kebab-nested-tr3-button"
|
|
17624
17748
|
hidden
|
|
17625
17749
|
>
|
|
17626
17750
|
<li>
|
|
@@ -17669,7 +17793,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17669
17793
|
<div class="pf-c-dropdown">
|
|
17670
17794
|
<button
|
|
17671
17795
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
17672
|
-
id="borderless-compound-expansion-table-nested-table-9
|
|
17796
|
+
id="borderless-compound-expansion-table-nested-table-9--dropdown-kebab-nested-tr4-button"
|
|
17673
17797
|
aria-expanded="false"
|
|
17674
17798
|
type="button"
|
|
17675
17799
|
aria-label="Actions"
|
|
@@ -17678,7 +17802,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17678
17802
|
</button>
|
|
17679
17803
|
<ul
|
|
17680
17804
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
17681
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-9
|
|
17805
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-9--dropdown-kebab-nested-tr4-button"
|
|
17682
17806
|
hidden
|
|
17683
17807
|
>
|
|
17684
17808
|
<li>
|
|
@@ -17727,7 +17851,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17727
17851
|
<div class="pf-c-dropdown">
|
|
17728
17852
|
<button
|
|
17729
17853
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
17730
|
-
id="borderless-compound-expansion-table-nested-table-9
|
|
17854
|
+
id="borderless-compound-expansion-table-nested-table-9--dropdown-kebab-nested-tr5-button"
|
|
17731
17855
|
aria-expanded="false"
|
|
17732
17856
|
type="button"
|
|
17733
17857
|
aria-label="Actions"
|
|
@@ -17736,7 +17860,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17736
17860
|
</button>
|
|
17737
17861
|
<ul
|
|
17738
17862
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
17739
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-9
|
|
17863
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-9--dropdown-kebab-nested-tr5-button"
|
|
17740
17864
|
hidden
|
|
17741
17865
|
>
|
|
17742
17866
|
<li>
|
|
@@ -17878,7 +18002,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17878
18002
|
<table
|
|
17879
18003
|
class="pf-c-table pf-m-compact pf-m-no-border-rows"
|
|
17880
18004
|
role="grid"
|
|
17881
|
-
id="borderless-compound-expansion-table-nested-table-10"
|
|
18005
|
+
id="borderless-compound-expansion-table-nested-table-10-"
|
|
17882
18006
|
aria-label="Nested table"
|
|
17883
18007
|
>
|
|
17884
18008
|
<thead>
|
|
@@ -17918,7 +18042,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17918
18042
|
<div class="pf-c-dropdown">
|
|
17919
18043
|
<button
|
|
17920
18044
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
17921
|
-
id="borderless-compound-expansion-table-nested-table-10
|
|
18045
|
+
id="borderless-compound-expansion-table-nested-table-10--dropdown-kebab-nested-tr1-button"
|
|
17922
18046
|
aria-expanded="false"
|
|
17923
18047
|
type="button"
|
|
17924
18048
|
aria-label="Actions"
|
|
@@ -17927,7 +18051,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17927
18051
|
</button>
|
|
17928
18052
|
<ul
|
|
17929
18053
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
17930
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-10
|
|
18054
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-10--dropdown-kebab-nested-tr1-button"
|
|
17931
18055
|
hidden
|
|
17932
18056
|
>
|
|
17933
18057
|
<li>
|
|
@@ -17976,7 +18100,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17976
18100
|
<div class="pf-c-dropdown">
|
|
17977
18101
|
<button
|
|
17978
18102
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
17979
|
-
id="borderless-compound-expansion-table-nested-table-10
|
|
18103
|
+
id="borderless-compound-expansion-table-nested-table-10--dropdown-kebab-nested-tr2-button"
|
|
17980
18104
|
aria-expanded="false"
|
|
17981
18105
|
type="button"
|
|
17982
18106
|
aria-label="Actions"
|
|
@@ -17985,7 +18109,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
17985
18109
|
</button>
|
|
17986
18110
|
<ul
|
|
17987
18111
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
17988
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-10
|
|
18112
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-10--dropdown-kebab-nested-tr2-button"
|
|
17989
18113
|
hidden
|
|
17990
18114
|
>
|
|
17991
18115
|
<li>
|
|
@@ -18034,7 +18158,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18034
18158
|
<div class="pf-c-dropdown">
|
|
18035
18159
|
<button
|
|
18036
18160
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
18037
|
-
id="borderless-compound-expansion-table-nested-table-10
|
|
18161
|
+
id="borderless-compound-expansion-table-nested-table-10--dropdown-kebab-nested-tr3-button"
|
|
18038
18162
|
aria-expanded="false"
|
|
18039
18163
|
type="button"
|
|
18040
18164
|
aria-label="Actions"
|
|
@@ -18043,7 +18167,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18043
18167
|
</button>
|
|
18044
18168
|
<ul
|
|
18045
18169
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
18046
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-10
|
|
18170
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-10--dropdown-kebab-nested-tr3-button"
|
|
18047
18171
|
hidden
|
|
18048
18172
|
>
|
|
18049
18173
|
<li>
|
|
@@ -18092,7 +18216,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18092
18216
|
<div class="pf-c-dropdown">
|
|
18093
18217
|
<button
|
|
18094
18218
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
18095
|
-
id="borderless-compound-expansion-table-nested-table-10
|
|
18219
|
+
id="borderless-compound-expansion-table-nested-table-10--dropdown-kebab-nested-tr4-button"
|
|
18096
18220
|
aria-expanded="false"
|
|
18097
18221
|
type="button"
|
|
18098
18222
|
aria-label="Actions"
|
|
@@ -18101,7 +18225,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18101
18225
|
</button>
|
|
18102
18226
|
<ul
|
|
18103
18227
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
18104
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-10
|
|
18228
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-10--dropdown-kebab-nested-tr4-button"
|
|
18105
18229
|
hidden
|
|
18106
18230
|
>
|
|
18107
18231
|
<li>
|
|
@@ -18150,7 +18274,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18150
18274
|
<div class="pf-c-dropdown">
|
|
18151
18275
|
<button
|
|
18152
18276
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
18153
|
-
id="borderless-compound-expansion-table-nested-table-10
|
|
18277
|
+
id="borderless-compound-expansion-table-nested-table-10--dropdown-kebab-nested-tr5-button"
|
|
18154
18278
|
aria-expanded="false"
|
|
18155
18279
|
type="button"
|
|
18156
18280
|
aria-label="Actions"
|
|
@@ -18159,7 +18283,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18159
18283
|
</button>
|
|
18160
18284
|
<ul
|
|
18161
18285
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
18162
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-10
|
|
18286
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-10--dropdown-kebab-nested-tr5-button"
|
|
18163
18287
|
hidden
|
|
18164
18288
|
>
|
|
18165
18289
|
<li>
|
|
@@ -18207,7 +18331,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18207
18331
|
<table
|
|
18208
18332
|
class="pf-c-table pf-m-compact pf-m-no-border-rows"
|
|
18209
18333
|
role="grid"
|
|
18210
|
-
id="borderless-compound-expansion-table-nested-table-11"
|
|
18334
|
+
id="borderless-compound-expansion-table-nested-table-11-"
|
|
18211
18335
|
aria-label="Nested table"
|
|
18212
18336
|
>
|
|
18213
18337
|
<thead>
|
|
@@ -18247,7 +18371,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18247
18371
|
<div class="pf-c-dropdown">
|
|
18248
18372
|
<button
|
|
18249
18373
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
18250
|
-
id="borderless-compound-expansion-table-nested-table-11
|
|
18374
|
+
id="borderless-compound-expansion-table-nested-table-11--dropdown-kebab-nested-tr1-button"
|
|
18251
18375
|
aria-expanded="false"
|
|
18252
18376
|
type="button"
|
|
18253
18377
|
aria-label="Actions"
|
|
@@ -18256,7 +18380,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18256
18380
|
</button>
|
|
18257
18381
|
<ul
|
|
18258
18382
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
18259
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-11
|
|
18383
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-11--dropdown-kebab-nested-tr1-button"
|
|
18260
18384
|
hidden
|
|
18261
18385
|
>
|
|
18262
18386
|
<li>
|
|
@@ -18305,7 +18429,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18305
18429
|
<div class="pf-c-dropdown">
|
|
18306
18430
|
<button
|
|
18307
18431
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
18308
|
-
id="borderless-compound-expansion-table-nested-table-11
|
|
18432
|
+
id="borderless-compound-expansion-table-nested-table-11--dropdown-kebab-nested-tr2-button"
|
|
18309
18433
|
aria-expanded="false"
|
|
18310
18434
|
type="button"
|
|
18311
18435
|
aria-label="Actions"
|
|
@@ -18314,7 +18438,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18314
18438
|
</button>
|
|
18315
18439
|
<ul
|
|
18316
18440
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
18317
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-11
|
|
18441
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-11--dropdown-kebab-nested-tr2-button"
|
|
18318
18442
|
hidden
|
|
18319
18443
|
>
|
|
18320
18444
|
<li>
|
|
@@ -18363,7 +18487,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18363
18487
|
<div class="pf-c-dropdown">
|
|
18364
18488
|
<button
|
|
18365
18489
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
18366
|
-
id="borderless-compound-expansion-table-nested-table-11
|
|
18490
|
+
id="borderless-compound-expansion-table-nested-table-11--dropdown-kebab-nested-tr3-button"
|
|
18367
18491
|
aria-expanded="false"
|
|
18368
18492
|
type="button"
|
|
18369
18493
|
aria-label="Actions"
|
|
@@ -18372,7 +18496,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18372
18496
|
</button>
|
|
18373
18497
|
<ul
|
|
18374
18498
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
18375
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-11
|
|
18499
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-11--dropdown-kebab-nested-tr3-button"
|
|
18376
18500
|
hidden
|
|
18377
18501
|
>
|
|
18378
18502
|
<li>
|
|
@@ -18421,7 +18545,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18421
18545
|
<div class="pf-c-dropdown">
|
|
18422
18546
|
<button
|
|
18423
18547
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
18424
|
-
id="borderless-compound-expansion-table-nested-table-11
|
|
18548
|
+
id="borderless-compound-expansion-table-nested-table-11--dropdown-kebab-nested-tr4-button"
|
|
18425
18549
|
aria-expanded="false"
|
|
18426
18550
|
type="button"
|
|
18427
18551
|
aria-label="Actions"
|
|
@@ -18430,7 +18554,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18430
18554
|
</button>
|
|
18431
18555
|
<ul
|
|
18432
18556
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
18433
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-11
|
|
18557
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-11--dropdown-kebab-nested-tr4-button"
|
|
18434
18558
|
hidden
|
|
18435
18559
|
>
|
|
18436
18560
|
<li>
|
|
@@ -18479,7 +18603,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18479
18603
|
<div class="pf-c-dropdown">
|
|
18480
18604
|
<button
|
|
18481
18605
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
18482
|
-
id="borderless-compound-expansion-table-nested-table-11
|
|
18606
|
+
id="borderless-compound-expansion-table-nested-table-11--dropdown-kebab-nested-tr5-button"
|
|
18483
18607
|
aria-expanded="false"
|
|
18484
18608
|
type="button"
|
|
18485
18609
|
aria-label="Actions"
|
|
@@ -18488,7 +18612,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18488
18612
|
</button>
|
|
18489
18613
|
<ul
|
|
18490
18614
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
18491
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-11
|
|
18615
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-11--dropdown-kebab-nested-tr5-button"
|
|
18492
18616
|
hidden
|
|
18493
18617
|
>
|
|
18494
18618
|
<li>
|
|
@@ -18536,7 +18660,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18536
18660
|
<table
|
|
18537
18661
|
class="pf-c-table pf-m-compact pf-m-no-border-rows"
|
|
18538
18662
|
role="grid"
|
|
18539
|
-
id="borderless-compound-expansion-table-nested-table-12"
|
|
18663
|
+
id="borderless-compound-expansion-table-nested-table-12-"
|
|
18540
18664
|
aria-label="Nested table"
|
|
18541
18665
|
>
|
|
18542
18666
|
<thead>
|
|
@@ -18576,7 +18700,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18576
18700
|
<div class="pf-c-dropdown">
|
|
18577
18701
|
<button
|
|
18578
18702
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
18579
|
-
id="borderless-compound-expansion-table-nested-table-12
|
|
18703
|
+
id="borderless-compound-expansion-table-nested-table-12--dropdown-kebab-nested-tr1-button"
|
|
18580
18704
|
aria-expanded="false"
|
|
18581
18705
|
type="button"
|
|
18582
18706
|
aria-label="Actions"
|
|
@@ -18585,7 +18709,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18585
18709
|
</button>
|
|
18586
18710
|
<ul
|
|
18587
18711
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
18588
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-12
|
|
18712
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-12--dropdown-kebab-nested-tr1-button"
|
|
18589
18713
|
hidden
|
|
18590
18714
|
>
|
|
18591
18715
|
<li>
|
|
@@ -18634,7 +18758,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18634
18758
|
<div class="pf-c-dropdown">
|
|
18635
18759
|
<button
|
|
18636
18760
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
18637
|
-
id="borderless-compound-expansion-table-nested-table-12
|
|
18761
|
+
id="borderless-compound-expansion-table-nested-table-12--dropdown-kebab-nested-tr2-button"
|
|
18638
18762
|
aria-expanded="false"
|
|
18639
18763
|
type="button"
|
|
18640
18764
|
aria-label="Actions"
|
|
@@ -18643,7 +18767,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18643
18767
|
</button>
|
|
18644
18768
|
<ul
|
|
18645
18769
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
18646
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-12
|
|
18770
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-12--dropdown-kebab-nested-tr2-button"
|
|
18647
18771
|
hidden
|
|
18648
18772
|
>
|
|
18649
18773
|
<li>
|
|
@@ -18692,7 +18816,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18692
18816
|
<div class="pf-c-dropdown">
|
|
18693
18817
|
<button
|
|
18694
18818
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
18695
|
-
id="borderless-compound-expansion-table-nested-table-12
|
|
18819
|
+
id="borderless-compound-expansion-table-nested-table-12--dropdown-kebab-nested-tr3-button"
|
|
18696
18820
|
aria-expanded="false"
|
|
18697
18821
|
type="button"
|
|
18698
18822
|
aria-label="Actions"
|
|
@@ -18701,7 +18825,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18701
18825
|
</button>
|
|
18702
18826
|
<ul
|
|
18703
18827
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
18704
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-12
|
|
18828
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-12--dropdown-kebab-nested-tr3-button"
|
|
18705
18829
|
hidden
|
|
18706
18830
|
>
|
|
18707
18831
|
<li>
|
|
@@ -18750,7 +18874,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18750
18874
|
<div class="pf-c-dropdown">
|
|
18751
18875
|
<button
|
|
18752
18876
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
18753
|
-
id="borderless-compound-expansion-table-nested-table-12
|
|
18877
|
+
id="borderless-compound-expansion-table-nested-table-12--dropdown-kebab-nested-tr4-button"
|
|
18754
18878
|
aria-expanded="false"
|
|
18755
18879
|
type="button"
|
|
18756
18880
|
aria-label="Actions"
|
|
@@ -18759,7 +18883,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18759
18883
|
</button>
|
|
18760
18884
|
<ul
|
|
18761
18885
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
18762
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-12
|
|
18886
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-12--dropdown-kebab-nested-tr4-button"
|
|
18763
18887
|
hidden
|
|
18764
18888
|
>
|
|
18765
18889
|
<li>
|
|
@@ -18808,7 +18932,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18808
18932
|
<div class="pf-c-dropdown">
|
|
18809
18933
|
<button
|
|
18810
18934
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
18811
|
-
id="borderless-compound-expansion-table-nested-table-12
|
|
18935
|
+
id="borderless-compound-expansion-table-nested-table-12--dropdown-kebab-nested-tr5-button"
|
|
18812
18936
|
aria-expanded="false"
|
|
18813
18937
|
type="button"
|
|
18814
18938
|
aria-label="Actions"
|
|
@@ -18817,7 +18941,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18817
18941
|
</button>
|
|
18818
18942
|
<ul
|
|
18819
18943
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
18820
|
-
aria-labelledby="borderless-compound-expansion-table-nested-table-12
|
|
18944
|
+
aria-labelledby="borderless-compound-expansion-table-nested-table-12--dropdown-kebab-nested-tr5-button"
|
|
18821
18945
|
hidden
|
|
18822
18946
|
>
|
|
18823
18947
|
<li>
|
|
@@ -18885,11 +19009,13 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18885
19009
|
<thead>
|
|
18886
19010
|
<tr role="row">
|
|
18887
19011
|
<td class="pf-c-table__check" role="cell">
|
|
18888
|
-
<
|
|
18889
|
-
|
|
18890
|
-
|
|
18891
|
-
|
|
18892
|
-
|
|
19012
|
+
<label>
|
|
19013
|
+
<input
|
|
19014
|
+
type="checkbox"
|
|
19015
|
+
name="table-width-modifiers-checkrowthead"
|
|
19016
|
+
aria-label="Select all rows"
|
|
19017
|
+
/>
|
|
19018
|
+
</label>
|
|
18893
19019
|
</td>
|
|
18894
19020
|
<th
|
|
18895
19021
|
class="pf-m-width-30 pf-c-table__sort pf-m-selected"
|
|
@@ -18944,13 +19070,15 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18944
19070
|
<tbody role="rowgroup">
|
|
18945
19071
|
<tr role="row">
|
|
18946
19072
|
<td class="pf-c-table__check" role="cell">
|
|
18947
|
-
<
|
|
18948
|
-
|
|
18949
|
-
|
|
18950
|
-
|
|
18951
|
-
|
|
19073
|
+
<label>
|
|
19074
|
+
<input
|
|
19075
|
+
type="checkbox"
|
|
19076
|
+
name="table-width-modifiers-checkrow1"
|
|
19077
|
+
aria-labelledby="table-width-modifiers-node1"
|
|
19078
|
+
/>
|
|
19079
|
+
</label>
|
|
18952
19080
|
</td>
|
|
18953
|
-
<th role="columnheader" data-label="
|
|
19081
|
+
<th role="columnheader" data-label="Data label name">
|
|
18954
19082
|
<div id="table-width-modifiers-node1">Node 1</div>
|
|
18955
19083
|
</th>
|
|
18956
19084
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -18961,17 +19089,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18961
19089
|
|
|
18962
19090
|
<tr role="row">
|
|
18963
19091
|
<td class="pf-c-table__check" role="cell">
|
|
18964
|
-
<
|
|
18965
|
-
|
|
18966
|
-
|
|
18967
|
-
|
|
18968
|
-
|
|
19092
|
+
<label>
|
|
19093
|
+
<input
|
|
19094
|
+
type="checkbox"
|
|
19095
|
+
name="table-width-modifiers-checkrow2"
|
|
19096
|
+
aria-labelledby="table-width-modifiers-node2"
|
|
19097
|
+
/>
|
|
19098
|
+
</label>
|
|
18969
19099
|
</td>
|
|
18970
|
-
<th role="columnheader" data-label="
|
|
18971
|
-
<div>
|
|
18972
|
-
|
|
18973
|
-
<a href="#">siemur/test-space</a>
|
|
18974
|
-
</div>
|
|
19100
|
+
<th role="columnheader" data-label="Data label name">
|
|
19101
|
+
<div id="table-width-modifiers-node2">Node 2</div>
|
|
19102
|
+
<a href="#">siemur/test-space</a>
|
|
18975
19103
|
</th>
|
|
18976
19104
|
<td role="cell" data-label="Branches">10</td>
|
|
18977
19105
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -18981,17 +19109,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
18981
19109
|
|
|
18982
19110
|
<tr role="row">
|
|
18983
19111
|
<td class="pf-c-table__check" role="cell">
|
|
18984
|
-
<
|
|
18985
|
-
|
|
18986
|
-
|
|
18987
|
-
|
|
18988
|
-
|
|
19112
|
+
<label>
|
|
19113
|
+
<input
|
|
19114
|
+
type="checkbox"
|
|
19115
|
+
name="table-width-modifiers-checkrow3"
|
|
19116
|
+
aria-labelledby="table-width-modifiers-node3"
|
|
19117
|
+
/>
|
|
19118
|
+
</label>
|
|
18989
19119
|
</td>
|
|
18990
|
-
<th role="columnheader" data-label="
|
|
18991
|
-
<div>
|
|
18992
|
-
|
|
18993
|
-
<a href="#">siemur/test-space</a>
|
|
18994
|
-
</div>
|
|
19120
|
+
<th role="columnheader" data-label="Data label name">
|
|
19121
|
+
<div id="table-width-modifiers-node3">Node 3</div>
|
|
19122
|
+
<a href="#">siemur/test-space</a>
|
|
18995
19123
|
</th>
|
|
18996
19124
|
<td role="cell" data-label="Branches">10</td>
|
|
18997
19125
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -19001,17 +19129,17 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
19001
19129
|
|
|
19002
19130
|
<tr role="row">
|
|
19003
19131
|
<td class="pf-c-table__check" role="cell">
|
|
19004
|
-
<
|
|
19005
|
-
|
|
19006
|
-
|
|
19007
|
-
|
|
19008
|
-
|
|
19132
|
+
<label>
|
|
19133
|
+
<input
|
|
19134
|
+
type="checkbox"
|
|
19135
|
+
name="table-width-modifiers-checkrow4"
|
|
19136
|
+
aria-labelledby="table-width-modifiers-node4"
|
|
19137
|
+
/>
|
|
19138
|
+
</label>
|
|
19009
19139
|
</td>
|
|
19010
|
-
<th role="columnheader" data-label="
|
|
19011
|
-
<div>
|
|
19012
|
-
|
|
19013
|
-
<a href="#">siemur/test-space</a>
|
|
19014
|
-
</div>
|
|
19140
|
+
<th role="columnheader" data-label="Data label name">
|
|
19141
|
+
<div id="table-width-modifiers-node4">Node 4</div>
|
|
19142
|
+
<a href="#">siemur/test-space</a>
|
|
19015
19143
|
</th>
|
|
19016
19144
|
<td role="cell" data-label="Branches">10</td>
|
|
19017
19145
|
<td role="cell" data-label="Pull requests">25</td>
|
|
@@ -19629,7 +19757,7 @@ Add a [width modifier](#width-modifiers) to `thead th` to limit string length or
|
|
|
19629
19757
|
class="pf-c-table"
|
|
19630
19758
|
role="grid"
|
|
19631
19759
|
aria-label="This is a scrollable table"
|
|
19632
|
-
id="-
|
|
19760
|
+
id="sticky-column-example"
|
|
19633
19761
|
>
|
|
19634
19762
|
<thead>
|
|
19635
19763
|
<tr role="row">
|
|
@@ -20131,7 +20259,7 @@ Add a [width modifier](#width-modifiers) to `thead th` to limit string length or
|
|
|
20131
20259
|
class="pf-c-table"
|
|
20132
20260
|
role="grid"
|
|
20133
20261
|
aria-label="This is a scrollable table"
|
|
20134
|
-
id="-
|
|
20262
|
+
id="sticky-multi-column-example"
|
|
20135
20263
|
>
|
|
20136
20264
|
<thead>
|
|
20137
20265
|
<tr role="row">
|
|
@@ -20689,7 +20817,7 @@ Add a [width modifier](#width-modifiers) to `thead th` to limit string length or
|
|
|
20689
20817
|
class="pf-c-table pf-m-sticky-header"
|
|
20690
20818
|
role="grid"
|
|
20691
20819
|
aria-label="This is a scrollable table"
|
|
20692
|
-
id="-
|
|
20820
|
+
id="sticky-header-columns-example"
|
|
20693
20821
|
>
|
|
20694
20822
|
<thead>
|
|
20695
20823
|
<tr role="row">
|
|
@@ -21272,11 +21400,13 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
21272
21400
|
<tr role="row">
|
|
21273
21401
|
<td rowspan="2"></td>
|
|
21274
21402
|
<td class="pf-c-table__check" role="cell" rowspan="2">
|
|
21275
|
-
<
|
|
21276
|
-
|
|
21277
|
-
|
|
21278
|
-
|
|
21279
|
-
|
|
21403
|
+
<label>
|
|
21404
|
+
<input
|
|
21405
|
+
type="checkbox"
|
|
21406
|
+
name="nested-columns-expandable-example-checkrow"
|
|
21407
|
+
aria-label="Select all rows"
|
|
21408
|
+
/>
|
|
21409
|
+
</label>
|
|
21280
21410
|
</td>
|
|
21281
21411
|
<th
|
|
21282
21412
|
class="pf-m-border-right pf-c-table__sort"
|
|
@@ -21341,11 +21471,13 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
21341
21471
|
</td>
|
|
21342
21472
|
|
|
21343
21473
|
<td class="pf-c-table__check" role="cell">
|
|
21344
|
-
<
|
|
21345
|
-
|
|
21346
|
-
|
|
21347
|
-
|
|
21348
|
-
|
|
21474
|
+
<label>
|
|
21475
|
+
<input
|
|
21476
|
+
type="checkbox"
|
|
21477
|
+
name="nested-columns-expandable-example-checkrow1"
|
|
21478
|
+
aria-labelledby="nested-columns-expandable-example-node1"
|
|
21479
|
+
/>
|
|
21480
|
+
</label>
|
|
21349
21481
|
</td>
|
|
21350
21482
|
<th
|
|
21351
21483
|
class
|
|
@@ -21441,11 +21573,13 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
21441
21573
|
</td>
|
|
21442
21574
|
|
|
21443
21575
|
<td class="pf-c-table__check" role="cell">
|
|
21444
|
-
<
|
|
21445
|
-
|
|
21446
|
-
|
|
21447
|
-
|
|
21448
|
-
|
|
21576
|
+
<label>
|
|
21577
|
+
<input
|
|
21578
|
+
type="checkbox"
|
|
21579
|
+
name="nested-columns-expandable-example-checkrow2"
|
|
21580
|
+
aria-labelledby="nested-columns-expandable-example-node2"
|
|
21581
|
+
/>
|
|
21582
|
+
</label>
|
|
21449
21583
|
</td>
|
|
21450
21584
|
<th
|
|
21451
21585
|
class
|
|
@@ -21541,11 +21675,13 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
21541
21675
|
</td>
|
|
21542
21676
|
|
|
21543
21677
|
<td class="pf-c-table__check" role="cell">
|
|
21544
|
-
<
|
|
21545
|
-
|
|
21546
|
-
|
|
21547
|
-
|
|
21548
|
-
|
|
21678
|
+
<label>
|
|
21679
|
+
<input
|
|
21680
|
+
type="checkbox"
|
|
21681
|
+
name="nested-columns-expandable-example-checkrow3"
|
|
21682
|
+
aria-labelledby="nested-columns-expandable-example-node3"
|
|
21683
|
+
/>
|
|
21684
|
+
</label>
|
|
21549
21685
|
</td>
|
|
21550
21686
|
<th
|
|
21551
21687
|
class
|
|
@@ -21884,11 +22020,13 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
21884
22020
|
<thead>
|
|
21885
22021
|
<tr role="row">
|
|
21886
22022
|
<td class="pf-c-table__check" role="cell">
|
|
21887
|
-
<
|
|
21888
|
-
|
|
21889
|
-
|
|
21890
|
-
|
|
21891
|
-
|
|
22023
|
+
<label>
|
|
22024
|
+
<input
|
|
22025
|
+
type="checkbox"
|
|
22026
|
+
name="table-favorites-checkrowthead"
|
|
22027
|
+
aria-label="Select all rows"
|
|
22028
|
+
/>
|
|
22029
|
+
</label>
|
|
21892
22030
|
</td>
|
|
21893
22031
|
<td></td>
|
|
21894
22032
|
<th role="columnheader" scope="col">Repositories</th>
|
|
@@ -21903,11 +22041,13 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
21903
22041
|
<tbody role="rowgroup">
|
|
21904
22042
|
<tr role="row">
|
|
21905
22043
|
<td class="pf-c-table__check" role="cell">
|
|
21906
|
-
<
|
|
21907
|
-
|
|
21908
|
-
|
|
21909
|
-
|
|
21910
|
-
|
|
22044
|
+
<label>
|
|
22045
|
+
<input
|
|
22046
|
+
type="checkbox"
|
|
22047
|
+
name="table-favorites-checkrow1"
|
|
22048
|
+
aria-labelledby="table-favorites-node1"
|
|
22049
|
+
/>
|
|
22050
|
+
</label>
|
|
21911
22051
|
</td>
|
|
21912
22052
|
<td class="pf-c-table__favorite pf-m-favorited" role="cell">
|
|
21913
22053
|
<button
|
|
@@ -21933,7 +22073,7 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
21933
22073
|
<div class="pf-c-dropdown">
|
|
21934
22074
|
<button
|
|
21935
22075
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
21936
|
-
id="table-favorites-dropdown-kebab-
|
|
22076
|
+
id="table-favorites-dropdown-kebab-1-button"
|
|
21937
22077
|
aria-expanded="false"
|
|
21938
22078
|
type="button"
|
|
21939
22079
|
aria-label="Actions"
|
|
@@ -21942,7 +22082,7 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
21942
22082
|
</button>
|
|
21943
22083
|
<ul
|
|
21944
22084
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
21945
|
-
aria-labelledby="table-favorites-dropdown-kebab-
|
|
22085
|
+
aria-labelledby="table-favorites-dropdown-kebab-1-button"
|
|
21946
22086
|
hidden
|
|
21947
22087
|
>
|
|
21948
22088
|
<li>
|
|
@@ -21977,11 +22117,13 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
21977
22117
|
|
|
21978
22118
|
<tr role="row">
|
|
21979
22119
|
<td class="pf-c-table__check" role="cell">
|
|
21980
|
-
<
|
|
21981
|
-
|
|
21982
|
-
|
|
21983
|
-
|
|
21984
|
-
|
|
22120
|
+
<label>
|
|
22121
|
+
<input
|
|
22122
|
+
type="checkbox"
|
|
22123
|
+
name="table-favorites-checkrow2"
|
|
22124
|
+
aria-labelledby="table-favorites-node2"
|
|
22125
|
+
/>
|
|
22126
|
+
</label>
|
|
21985
22127
|
</td>
|
|
21986
22128
|
<td class="pf-c-table__favorite" role="cell">
|
|
21987
22129
|
<button
|
|
@@ -22005,7 +22147,7 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
22005
22147
|
<div class="pf-c-dropdown">
|
|
22006
22148
|
<button
|
|
22007
22149
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
22008
|
-
id="table-favorites-dropdown-kebab-
|
|
22150
|
+
id="table-favorites-dropdown-kebab-2-button"
|
|
22009
22151
|
aria-expanded="false"
|
|
22010
22152
|
type="button"
|
|
22011
22153
|
aria-label="Actions"
|
|
@@ -22014,7 +22156,7 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
22014
22156
|
</button>
|
|
22015
22157
|
<ul
|
|
22016
22158
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
22017
|
-
aria-labelledby="table-favorites-dropdown-kebab-
|
|
22159
|
+
aria-labelledby="table-favorites-dropdown-kebab-2-button"
|
|
22018
22160
|
hidden
|
|
22019
22161
|
>
|
|
22020
22162
|
<li>
|
|
@@ -22049,11 +22191,13 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
22049
22191
|
|
|
22050
22192
|
<tr role="row">
|
|
22051
22193
|
<td class="pf-c-table__check" role="cell">
|
|
22052
|
-
<
|
|
22053
|
-
|
|
22054
|
-
|
|
22055
|
-
|
|
22056
|
-
|
|
22194
|
+
<label>
|
|
22195
|
+
<input
|
|
22196
|
+
type="checkbox"
|
|
22197
|
+
name="table-favorites-checkrow3"
|
|
22198
|
+
aria-labelledby="table-favorites-node3"
|
|
22199
|
+
/>
|
|
22200
|
+
</label>
|
|
22057
22201
|
</td>
|
|
22058
22202
|
<td class="pf-c-table__favorite pf-m-favorited" role="cell">
|
|
22059
22203
|
<button
|
|
@@ -22077,7 +22221,7 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
22077
22221
|
<div class="pf-c-dropdown">
|
|
22078
22222
|
<button
|
|
22079
22223
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
22080
|
-
id="table-favorites-dropdown-kebab-
|
|
22224
|
+
id="table-favorites-dropdown-kebab-3-button"
|
|
22081
22225
|
aria-expanded="false"
|
|
22082
22226
|
type="button"
|
|
22083
22227
|
aria-label="Actions"
|
|
@@ -22086,7 +22230,7 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
22086
22230
|
</button>
|
|
22087
22231
|
<ul
|
|
22088
22232
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
22089
|
-
aria-labelledby="table-favorites-dropdown-kebab-
|
|
22233
|
+
aria-labelledby="table-favorites-dropdown-kebab-3-button"
|
|
22090
22234
|
hidden
|
|
22091
22235
|
>
|
|
22092
22236
|
<li>
|
|
@@ -22121,11 +22265,13 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
22121
22265
|
|
|
22122
22266
|
<tr role="row">
|
|
22123
22267
|
<td class="pf-c-table__check" role="cell">
|
|
22124
|
-
<
|
|
22125
|
-
|
|
22126
|
-
|
|
22127
|
-
|
|
22128
|
-
|
|
22268
|
+
<label>
|
|
22269
|
+
<input
|
|
22270
|
+
type="checkbox"
|
|
22271
|
+
name="table-favorites-checkrow4"
|
|
22272
|
+
aria-labelledby="table-favorites-node4"
|
|
22273
|
+
/>
|
|
22274
|
+
</label>
|
|
22129
22275
|
</td>
|
|
22130
22276
|
<td class="pf-c-table__favorite" role="cell">
|
|
22131
22277
|
<button
|
|
@@ -22149,7 +22295,7 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
22149
22295
|
<div class="pf-c-dropdown">
|
|
22150
22296
|
<button
|
|
22151
22297
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
22152
|
-
id="table-favorites-dropdown-kebab-
|
|
22298
|
+
id="table-favorites-dropdown-kebab-4-button"
|
|
22153
22299
|
aria-expanded="false"
|
|
22154
22300
|
type="button"
|
|
22155
22301
|
aria-label="Actions"
|
|
@@ -22158,7 +22304,7 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
22158
22304
|
</button>
|
|
22159
22305
|
<ul
|
|
22160
22306
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
22161
|
-
aria-labelledby="table-favorites-dropdown-kebab-
|
|
22307
|
+
aria-labelledby="table-favorites-dropdown-kebab-4-button"
|
|
22162
22308
|
hidden
|
|
22163
22309
|
>
|
|
22164
22310
|
<li>
|