@patternfly/patternfly 4.167.0 → 4.171.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/Dropdown/dropdown.css +5 -0
- package/components/Dropdown/dropdown.scss +5 -0
- package/components/Masthead/masthead.css +12 -6
- package/components/Masthead/masthead.scss +16 -5
- package/components/Table/table.css +8 -0
- package/components/Table/table.scss +16 -0
- package/components/Toolbar/toolbar.css +6 -0
- package/components/Toolbar/toolbar.scss +9 -0
- package/docs/components/BackToTop/examples/BackToTop.md +0 -1
- package/docs/components/JumpLinks/examples/JumpLinks.md +0 -1
- package/docs/components/Table/examples/Table.md +899 -241
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +26 -1
- package/docs/components/Toolbar/examples/Toolbar.md +1 -0
- package/docs/demos/BackToTop/examples/BackToTop.md +0 -1
- package/docs/demos/JumpLinks/examples/JumpLinks.md +0 -1
- package/docs/demos/Masthead/examples/Masthead.md +865 -1
- package/package.json +1 -1
- package/patternfly-no-reset.css +31 -6
- package/patternfly.css +31 -6
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/docs/pages/modifiers.md +0 -86
|
@@ -6335,10 +6335,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6335
6335
|
|
|
6336
6336
|
```html
|
|
6337
6337
|
<table
|
|
6338
|
-
class="pf-c-table pf-m-
|
|
6338
|
+
class="pf-c-table pf-m-grid-lg"
|
|
6339
6339
|
role="grid"
|
|
6340
|
-
aria-label="
|
|
6341
|
-
id="table-
|
|
6340
|
+
aria-label="Hoverable and selectable table example"
|
|
6341
|
+
id="table-hoverable"
|
|
6342
6342
|
>
|
|
6343
6343
|
<thead>
|
|
6344
6344
|
<tr role="row">
|
|
@@ -6346,7 +6346,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6346
6346
|
<label>
|
|
6347
6347
|
<input
|
|
6348
6348
|
type="checkbox"
|
|
6349
|
-
name="table-
|
|
6349
|
+
name="table-hoverable-checkrowthead"
|
|
6350
6350
|
aria-label="Select all rows"
|
|
6351
6351
|
/>
|
|
6352
6352
|
</label>
|
|
@@ -6374,19 +6374,19 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6374
6374
|
<label>
|
|
6375
6375
|
<input
|
|
6376
6376
|
type="checkbox"
|
|
6377
|
-
name="table-
|
|
6378
|
-
aria-labelledby="table-
|
|
6377
|
+
name="table-hoverable-checkrow1"
|
|
6378
|
+
aria-labelledby="table-hoverable-node1"
|
|
6379
6379
|
/>
|
|
6380
6380
|
</label>
|
|
6381
6381
|
</td>
|
|
6382
6382
|
<th role="columnheader" data-label="Repository name">
|
|
6383
|
-
<div id="table-
|
|
6383
|
+
<div id="table-hoverable-node1">Hoverable</div>
|
|
6384
6384
|
</th>
|
|
6385
6385
|
<td class="pf-c-table__action" role="cell">
|
|
6386
6386
|
<div class="pf-c-dropdown">
|
|
6387
6387
|
<button
|
|
6388
6388
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
6389
|
-
id="table-
|
|
6389
|
+
id="table-hoverable-dropdown-kebab-selectable-1-button"
|
|
6390
6390
|
aria-expanded="false"
|
|
6391
6391
|
type="button"
|
|
6392
6392
|
aria-label="Actions"
|
|
@@ -6395,7 +6395,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6395
6395
|
</button>
|
|
6396
6396
|
<ul
|
|
6397
6397
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
6398
|
-
aria-labelledby="table-
|
|
6398
|
+
aria-labelledby="table-hoverable-dropdown-kebab-selectable-1-button"
|
|
6399
6399
|
hidden
|
|
6400
6400
|
>
|
|
6401
6401
|
<li>
|
|
@@ -6432,13 +6432,13 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6432
6432
|
<label>
|
|
6433
6433
|
<input
|
|
6434
6434
|
type="checkbox"
|
|
6435
|
-
name="table-
|
|
6436
|
-
aria-labelledby="table-
|
|
6435
|
+
name="table-hoverable-checkrow2"
|
|
6436
|
+
aria-labelledby="table-hoverable-node2"
|
|
6437
6437
|
/>
|
|
6438
6438
|
</label>
|
|
6439
6439
|
</td>
|
|
6440
6440
|
<th role="columnheader" data-label="Repository name">
|
|
6441
|
-
<div id="table-
|
|
6441
|
+
<div id="table-hoverable-node2">
|
|
6442
6442
|
<b>Selected</b>
|
|
6443
6443
|
</div>
|
|
6444
6444
|
</th>
|
|
@@ -6446,7 +6446,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6446
6446
|
<div class="pf-c-dropdown">
|
|
6447
6447
|
<button
|
|
6448
6448
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
6449
|
-
id="table-
|
|
6449
|
+
id="table-hoverable-dropdown-kebab-selectable-2-button"
|
|
6450
6450
|
aria-expanded="false"
|
|
6451
6451
|
type="button"
|
|
6452
6452
|
aria-label="Actions"
|
|
@@ -6455,7 +6455,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6455
6455
|
</button>
|
|
6456
6456
|
<ul
|
|
6457
6457
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
6458
|
-
aria-labelledby="table-
|
|
6458
|
+
aria-labelledby="table-hoverable-dropdown-kebab-selectable-2-button"
|
|
6459
6459
|
hidden
|
|
6460
6460
|
>
|
|
6461
6461
|
<li>
|
|
@@ -6492,19 +6492,19 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6492
6492
|
<label>
|
|
6493
6493
|
<input
|
|
6494
6494
|
type="checkbox"
|
|
6495
|
-
name="table-
|
|
6496
|
-
aria-labelledby="table-
|
|
6495
|
+
name="table-hoverable-checkrow3"
|
|
6496
|
+
aria-labelledby="table-hoverable-node3"
|
|
6497
6497
|
/>
|
|
6498
6498
|
</label>
|
|
6499
6499
|
</td>
|
|
6500
6500
|
<th role="columnheader" data-label="Repository name">
|
|
6501
|
-
<div id="table-
|
|
6501
|
+
<div id="table-hoverable-node3">Hoverable</div>
|
|
6502
6502
|
</th>
|
|
6503
6503
|
<td class="pf-c-table__action" role="cell">
|
|
6504
6504
|
<div class="pf-c-dropdown">
|
|
6505
6505
|
<button
|
|
6506
6506
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
6507
|
-
id="table-
|
|
6507
|
+
id="table-hoverable-dropdown-kebab-selectable-3-button"
|
|
6508
6508
|
aria-expanded="false"
|
|
6509
6509
|
type="button"
|
|
6510
6510
|
aria-label="Actions"
|
|
@@ -6513,7 +6513,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6513
6513
|
</button>
|
|
6514
6514
|
<ul
|
|
6515
6515
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
6516
|
-
aria-labelledby="table-
|
|
6516
|
+
aria-labelledby="table-hoverable-dropdown-kebab-selectable-3-button"
|
|
6517
6517
|
hidden
|
|
6518
6518
|
>
|
|
6519
6519
|
<li>
|
|
@@ -6550,19 +6550,19 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6550
6550
|
<label>
|
|
6551
6551
|
<input
|
|
6552
6552
|
type="checkbox"
|
|
6553
|
-
name="table-
|
|
6554
|
-
aria-labelledby="table-
|
|
6553
|
+
name="table-hoverable-checkrow4"
|
|
6554
|
+
aria-labelledby="table-hoverable-node4"
|
|
6555
6555
|
/>
|
|
6556
6556
|
</label>
|
|
6557
6557
|
</td>
|
|
6558
6558
|
<th role="columnheader" data-label="Repository name">
|
|
6559
|
-
<div id="table-
|
|
6559
|
+
<div id="table-hoverable-node4">Hoverable</div>
|
|
6560
6560
|
</th>
|
|
6561
6561
|
<td class="pf-c-table__action" role="cell">
|
|
6562
6562
|
<div class="pf-c-dropdown">
|
|
6563
6563
|
<button
|
|
6564
6564
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
6565
|
-
id="table-
|
|
6565
|
+
id="table-hoverable-dropdown-kebab-selectable-4-button"
|
|
6566
6566
|
aria-expanded="false"
|
|
6567
6567
|
type="button"
|
|
6568
6568
|
aria-label="Actions"
|
|
@@ -6571,7 +6571,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6571
6571
|
</button>
|
|
6572
6572
|
<ul
|
|
6573
6573
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
6574
|
-
aria-labelledby="table-
|
|
6574
|
+
aria-labelledby="table-hoverable-dropdown-kebab-selectable-4-button"
|
|
6575
6575
|
hidden
|
|
6576
6576
|
>
|
|
6577
6577
|
<li>
|
|
@@ -6608,13 +6608,13 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6608
6608
|
<label>
|
|
6609
6609
|
<input
|
|
6610
6610
|
type="checkbox"
|
|
6611
|
-
name="table-
|
|
6612
|
-
aria-labelledby="table-
|
|
6611
|
+
name="table-hoverable-checkrow5"
|
|
6612
|
+
aria-labelledby="table-hoverable-node5"
|
|
6613
6613
|
/>
|
|
6614
6614
|
</label>
|
|
6615
6615
|
</td>
|
|
6616
6616
|
<th role="columnheader" data-label="Repository name">
|
|
6617
|
-
<div id="table-
|
|
6617
|
+
<div id="table-hoverable-node5">
|
|
6618
6618
|
<b>Selected</b>
|
|
6619
6619
|
</div>
|
|
6620
6620
|
</th>
|
|
@@ -6622,7 +6622,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6622
6622
|
<div class="pf-c-dropdown">
|
|
6623
6623
|
<button
|
|
6624
6624
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
6625
|
-
id="table-
|
|
6625
|
+
id="table-hoverable-dropdown-kebab-selectable-5-button"
|
|
6626
6626
|
aria-expanded="false"
|
|
6627
6627
|
type="button"
|
|
6628
6628
|
aria-label="Actions"
|
|
@@ -6631,7 +6631,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6631
6631
|
</button>
|
|
6632
6632
|
<ul
|
|
6633
6633
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
6634
|
-
aria-labelledby="table-
|
|
6634
|
+
aria-labelledby="table-hoverable-dropdown-kebab-selectable-5-button"
|
|
6635
6635
|
hidden
|
|
6636
6636
|
>
|
|
6637
6637
|
<li>
|
|
@@ -6668,13 +6668,13 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6668
6668
|
<label>
|
|
6669
6669
|
<input
|
|
6670
6670
|
type="checkbox"
|
|
6671
|
-
name="table-
|
|
6672
|
-
aria-labelledby="table-
|
|
6671
|
+
name="table-hoverable-checkrow6"
|
|
6672
|
+
aria-labelledby="table-hoverable-node6"
|
|
6673
6673
|
/>
|
|
6674
6674
|
</label>
|
|
6675
6675
|
</td>
|
|
6676
6676
|
<th role="columnheader" data-label="Repository name">
|
|
6677
|
-
<div id="table-
|
|
6677
|
+
<div id="table-hoverable-node6">
|
|
6678
6678
|
<b>Selected</b>
|
|
6679
6679
|
</div>
|
|
6680
6680
|
</th>
|
|
@@ -6682,7 +6682,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6682
6682
|
<div class="pf-c-dropdown">
|
|
6683
6683
|
<button
|
|
6684
6684
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
6685
|
-
id="table-
|
|
6685
|
+
id="table-hoverable-dropdown-kebab-selectable-6-button"
|
|
6686
6686
|
aria-expanded="false"
|
|
6687
6687
|
type="button"
|
|
6688
6688
|
aria-label="Actions"
|
|
@@ -6691,7 +6691,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6691
6691
|
</button>
|
|
6692
6692
|
<ul
|
|
6693
6693
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
6694
|
-
aria-labelledby="table-
|
|
6694
|
+
aria-labelledby="table-hoverable-dropdown-kebab-selectable-6-button"
|
|
6695
6695
|
hidden
|
|
6696
6696
|
>
|
|
6697
6697
|
<li>
|
|
@@ -6728,13 +6728,13 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6728
6728
|
<label>
|
|
6729
6729
|
<input
|
|
6730
6730
|
type="checkbox"
|
|
6731
|
-
name="table-
|
|
6732
|
-
aria-labelledby="table-
|
|
6731
|
+
name="table-hoverable-checkrow7"
|
|
6732
|
+
aria-labelledby="table-hoverable-node7"
|
|
6733
6733
|
/>
|
|
6734
6734
|
</label>
|
|
6735
6735
|
</td>
|
|
6736
6736
|
<th role="columnheader" data-label="Repository name">
|
|
6737
|
-
<div id="table-
|
|
6737
|
+
<div id="table-hoverable-node7">
|
|
6738
6738
|
<b>Selected</b>
|
|
6739
6739
|
</div>
|
|
6740
6740
|
</th>
|
|
@@ -6742,7 +6742,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6742
6742
|
<div class="pf-c-dropdown">
|
|
6743
6743
|
<button
|
|
6744
6744
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
6745
|
-
id="table-
|
|
6745
|
+
id="table-hoverable-dropdown-kebab-selectable-7-button"
|
|
6746
6746
|
aria-expanded="false"
|
|
6747
6747
|
type="button"
|
|
6748
6748
|
aria-label="Actions"
|
|
@@ -6751,7 +6751,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6751
6751
|
</button>
|
|
6752
6752
|
<ul
|
|
6753
6753
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
6754
|
-
aria-labelledby="table-
|
|
6754
|
+
aria-labelledby="table-hoverable-dropdown-kebab-selectable-7-button"
|
|
6755
6755
|
hidden
|
|
6756
6756
|
>
|
|
6757
6757
|
<li>
|
|
@@ -6788,19 +6788,19 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6788
6788
|
<label>
|
|
6789
6789
|
<input
|
|
6790
6790
|
type="checkbox"
|
|
6791
|
-
name="table-
|
|
6792
|
-
aria-labelledby="table-
|
|
6791
|
+
name="table-hoverable-checkrow8"
|
|
6792
|
+
aria-labelledby="table-hoverable-node8"
|
|
6793
6793
|
/>
|
|
6794
6794
|
</label>
|
|
6795
6795
|
</td>
|
|
6796
6796
|
<th role="columnheader" data-label="Repository name">
|
|
6797
|
-
<div id="table-
|
|
6797
|
+
<div id="table-hoverable-node8">Hoverable</div>
|
|
6798
6798
|
</th>
|
|
6799
6799
|
<td class="pf-c-table__action" role="cell">
|
|
6800
6800
|
<div class="pf-c-dropdown">
|
|
6801
6801
|
<button
|
|
6802
6802
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
6803
|
-
id="table-
|
|
6803
|
+
id="table-hoverable-dropdown-kebab-selectable-8-button"
|
|
6804
6804
|
aria-expanded="false"
|
|
6805
6805
|
type="button"
|
|
6806
6806
|
aria-label="Actions"
|
|
@@ -6809,7 +6809,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6809
6809
|
</button>
|
|
6810
6810
|
<ul
|
|
6811
6811
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
6812
|
-
aria-labelledby="table-
|
|
6812
|
+
aria-labelledby="table-hoverable-dropdown-kebab-selectable-8-button"
|
|
6813
6813
|
hidden
|
|
6814
6814
|
>
|
|
6815
6815
|
<li>
|
|
@@ -6846,19 +6846,19 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6846
6846
|
<label>
|
|
6847
6847
|
<input
|
|
6848
6848
|
type="checkbox"
|
|
6849
|
-
name="table-
|
|
6850
|
-
aria-labelledby="table-
|
|
6849
|
+
name="table-hoverable-checkrow9"
|
|
6850
|
+
aria-labelledby="table-hoverable-node9"
|
|
6851
6851
|
/>
|
|
6852
6852
|
</label>
|
|
6853
6853
|
</td>
|
|
6854
6854
|
<th role="columnheader" data-label="Repository name">
|
|
6855
|
-
<div id="table-
|
|
6855
|
+
<div id="table-hoverable-node9">Hoverable</div>
|
|
6856
6856
|
</th>
|
|
6857
6857
|
<td class="pf-c-table__action" role="cell">
|
|
6858
6858
|
<div class="pf-c-dropdown">
|
|
6859
6859
|
<button
|
|
6860
6860
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
6861
|
-
id="table-
|
|
6861
|
+
id="table-hoverable-dropdown-kebab-selectable-9-button"
|
|
6862
6862
|
aria-expanded="false"
|
|
6863
6863
|
type="button"
|
|
6864
6864
|
aria-label="Actions"
|
|
@@ -6867,7 +6867,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6867
6867
|
</button>
|
|
6868
6868
|
<ul
|
|
6869
6869
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
6870
|
-
aria-labelledby="table-
|
|
6870
|
+
aria-labelledby="table-hoverable-dropdown-kebab-selectable-9-button"
|
|
6871
6871
|
hidden
|
|
6872
6872
|
>
|
|
6873
6873
|
<li>
|
|
@@ -6904,13 +6904,13 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6904
6904
|
<label>
|
|
6905
6905
|
<input
|
|
6906
6906
|
type="checkbox"
|
|
6907
|
-
name="table-
|
|
6908
|
-
aria-labelledby="table-
|
|
6907
|
+
name="table-hoverable-checkrow10"
|
|
6908
|
+
aria-labelledby="table-hoverable-node10"
|
|
6909
6909
|
/>
|
|
6910
6910
|
</label>
|
|
6911
6911
|
</td>
|
|
6912
6912
|
<th role="columnheader" data-label="Repository name">
|
|
6913
|
-
<div id="table-
|
|
6913
|
+
<div id="table-hoverable-node10">
|
|
6914
6914
|
<b>Selected</b>
|
|
6915
6915
|
</div>
|
|
6916
6916
|
</th>
|
|
@@ -6918,7 +6918,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6918
6918
|
<div class="pf-c-dropdown">
|
|
6919
6919
|
<button
|
|
6920
6920
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
6921
|
-
id="table-
|
|
6921
|
+
id="table-hoverable-dropdown-kebab-selectable-10-button"
|
|
6922
6922
|
aria-expanded="false"
|
|
6923
6923
|
type="button"
|
|
6924
6924
|
aria-label="Actions"
|
|
@@ -6927,7 +6927,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6927
6927
|
</button>
|
|
6928
6928
|
<ul
|
|
6929
6929
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
6930
|
-
aria-labelledby="table-
|
|
6930
|
+
aria-labelledby="table-hoverable-dropdown-kebab-selectable-10-button"
|
|
6931
6931
|
hidden
|
|
6932
6932
|
>
|
|
6933
6933
|
<li>
|
|
@@ -6964,19 +6964,19 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6964
6964
|
<label>
|
|
6965
6965
|
<input
|
|
6966
6966
|
type="checkbox"
|
|
6967
|
-
name="table-
|
|
6968
|
-
aria-labelledby="table-
|
|
6967
|
+
name="table-hoverable-checkrow11"
|
|
6968
|
+
aria-labelledby="table-hoverable-node11"
|
|
6969
6969
|
/>
|
|
6970
6970
|
</label>
|
|
6971
6971
|
</td>
|
|
6972
6972
|
<th role="columnheader" data-label="Repository name">
|
|
6973
|
-
<div id="table-
|
|
6973
|
+
<div id="table-hoverable-node11">Hoverable</div>
|
|
6974
6974
|
</th>
|
|
6975
6975
|
<td class="pf-c-table__action" role="cell">
|
|
6976
6976
|
<div class="pf-c-dropdown">
|
|
6977
6977
|
<button
|
|
6978
6978
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
6979
|
-
id="table-
|
|
6979
|
+
id="table-hoverable-dropdown-kebab-selectable-11-button"
|
|
6980
6980
|
aria-expanded="false"
|
|
6981
6981
|
type="button"
|
|
6982
6982
|
aria-label="Actions"
|
|
@@ -6985,7 +6985,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
6985
6985
|
</button>
|
|
6986
6986
|
<ul
|
|
6987
6987
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
6988
|
-
aria-labelledby="table-
|
|
6988
|
+
aria-labelledby="table-hoverable-dropdown-kebab-selectable-11-button"
|
|
6989
6989
|
hidden
|
|
6990
6990
|
>
|
|
6991
6991
|
<li>
|
|
@@ -7027,8 +7027,8 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7027
7027
|
<table
|
|
7028
7028
|
class="pf-c-table pf-m-expandable pf-m-grid-lg"
|
|
7029
7029
|
role="grid"
|
|
7030
|
-
aria-label="Expandable table example"
|
|
7031
|
-
id="table-
|
|
7030
|
+
aria-label="Expandable and hoverable table example"
|
|
7031
|
+
id="table-expandable-hoverable"
|
|
7032
7032
|
>
|
|
7033
7033
|
<thead>
|
|
7034
7034
|
<tr role="row">
|
|
@@ -7037,7 +7037,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7037
7037
|
<label>
|
|
7038
7038
|
<input
|
|
7039
7039
|
type="checkbox"
|
|
7040
|
-
name="table-
|
|
7040
|
+
name="table-expandable-hoverable-checkrowthead"
|
|
7041
7041
|
aria-label="Select all rows"
|
|
7042
7042
|
/>
|
|
7043
7043
|
</label>
|
|
@@ -7096,10 +7096,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7096
7096
|
<td class="pf-c-table__toggle" role="cell">
|
|
7097
7097
|
<button
|
|
7098
7098
|
class="pf-c-button pf-m-plain"
|
|
7099
|
-
aria-labelledby="table-
|
|
7100
|
-
id="table-
|
|
7099
|
+
aria-labelledby="table-expandable-hoverable-node1 table-expandable-hoverable-expandable-toggle1"
|
|
7100
|
+
id="table-expandable-hoverable-expandable-toggle1"
|
|
7101
7101
|
aria-label="Details"
|
|
7102
|
-
aria-controls="table-
|
|
7102
|
+
aria-controls="table-expandable-hoverable-content1"
|
|
7103
7103
|
>
|
|
7104
7104
|
<div class="pf-c-table__toggle-icon">
|
|
7105
7105
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7111,14 +7111,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7111
7111
|
<label>
|
|
7112
7112
|
<input
|
|
7113
7113
|
type="checkbox"
|
|
7114
|
-
name="table-
|
|
7115
|
-
aria-labelledby="table-
|
|
7114
|
+
name="table-expandable-hoverable-checkrow1"
|
|
7115
|
+
aria-labelledby="table-expandable-hoverable-node1"
|
|
7116
7116
|
/>
|
|
7117
7117
|
</label>
|
|
7118
7118
|
</td>
|
|
7119
7119
|
<th role="columnheader" data-label="Repository name">
|
|
7120
7120
|
<div>
|
|
7121
|
-
<div id="table-
|
|
7121
|
+
<div id="table-expandable-hoverable-node1">Hoverable</div>
|
|
7122
7122
|
</div>
|
|
7123
7123
|
</th>
|
|
7124
7124
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -7130,7 +7130,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7130
7130
|
<div class="pf-c-dropdown">
|
|
7131
7131
|
<button
|
|
7132
7132
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
7133
|
-
id="table-
|
|
7133
|
+
id="table-expandable-hoverable-dropdown-kebab-1-button"
|
|
7134
7134
|
aria-expanded="false"
|
|
7135
7135
|
type="button"
|
|
7136
7136
|
aria-label="Actions"
|
|
@@ -7139,7 +7139,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7139
7139
|
</button>
|
|
7140
7140
|
<ul
|
|
7141
7141
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
7142
|
-
aria-labelledby="table-
|
|
7142
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-1-button"
|
|
7143
7143
|
hidden
|
|
7144
7144
|
>
|
|
7145
7145
|
<li>
|
|
@@ -7179,7 +7179,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7179
7179
|
class
|
|
7180
7180
|
role="cell"
|
|
7181
7181
|
colspan="4"
|
|
7182
|
-
id="table-
|
|
7182
|
+
id="table-expandable-hoverable-content1"
|
|
7183
7183
|
>
|
|
7184
7184
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7185
7185
|
</td>
|
|
@@ -7191,10 +7191,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7191
7191
|
<td class="pf-c-table__toggle" role="cell">
|
|
7192
7192
|
<button
|
|
7193
7193
|
class="pf-c-button pf-m-plain"
|
|
7194
|
-
aria-labelledby="table-
|
|
7195
|
-
id="table-
|
|
7194
|
+
aria-labelledby="table-expandable-hoverable-node2 table-expandable-hoverable-expandable-toggle2"
|
|
7195
|
+
id="table-expandable-hoverable-expandable-toggle2"
|
|
7196
7196
|
aria-label="Details"
|
|
7197
|
-
aria-controls="table-
|
|
7197
|
+
aria-controls="table-expandable-hoverable-content2"
|
|
7198
7198
|
>
|
|
7199
7199
|
<div class="pf-c-table__toggle-icon">
|
|
7200
7200
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7206,14 +7206,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7206
7206
|
<label>
|
|
7207
7207
|
<input
|
|
7208
7208
|
type="checkbox"
|
|
7209
|
-
name="table-
|
|
7210
|
-
aria-labelledby="table-
|
|
7209
|
+
name="table-expandable-hoverable-checkrow2"
|
|
7210
|
+
aria-labelledby="table-expandable-hoverable-node2"
|
|
7211
7211
|
/>
|
|
7212
7212
|
</label>
|
|
7213
7213
|
</td>
|
|
7214
7214
|
<th role="columnheader" data-label="Repository name">
|
|
7215
7215
|
<div>
|
|
7216
|
-
<div id="table-
|
|
7216
|
+
<div id="table-expandable-hoverable-node2">
|
|
7217
7217
|
<i>Selected and not expanded</i>
|
|
7218
7218
|
</div>
|
|
7219
7219
|
</div>
|
|
@@ -7227,7 +7227,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7227
7227
|
<div class="pf-c-dropdown">
|
|
7228
7228
|
<button
|
|
7229
7229
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
7230
|
-
id="table-
|
|
7230
|
+
id="table-expandable-hoverable-dropdown-kebab-2-button"
|
|
7231
7231
|
aria-expanded="false"
|
|
7232
7232
|
type="button"
|
|
7233
7233
|
aria-label="Actions"
|
|
@@ -7236,7 +7236,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7236
7236
|
</button>
|
|
7237
7237
|
<ul
|
|
7238
7238
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
7239
|
-
aria-labelledby="table-
|
|
7239
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-2-button"
|
|
7240
7240
|
hidden
|
|
7241
7241
|
>
|
|
7242
7242
|
<li>
|
|
@@ -7276,7 +7276,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7276
7276
|
class
|
|
7277
7277
|
role="cell"
|
|
7278
7278
|
colspan="4"
|
|
7279
|
-
id="table-
|
|
7279
|
+
id="table-expandable-hoverable-content2"
|
|
7280
7280
|
>
|
|
7281
7281
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7282
7282
|
</td>
|
|
@@ -7288,10 +7288,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7288
7288
|
<td class="pf-c-table__toggle" role="cell">
|
|
7289
7289
|
<button
|
|
7290
7290
|
class="pf-c-button pf-m-plain"
|
|
7291
|
-
aria-labelledby="table-
|
|
7292
|
-
id="table-
|
|
7291
|
+
aria-labelledby="table-expandable-hoverable-node3 table-expandable-hoverable-expandable-toggle3"
|
|
7292
|
+
id="table-expandable-hoverable-expandable-toggle3"
|
|
7293
7293
|
aria-label="Details"
|
|
7294
|
-
aria-controls="table-
|
|
7294
|
+
aria-controls="table-expandable-hoverable-content3"
|
|
7295
7295
|
>
|
|
7296
7296
|
<div class="pf-c-table__toggle-icon">
|
|
7297
7297
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7303,14 +7303,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7303
7303
|
<label>
|
|
7304
7304
|
<input
|
|
7305
7305
|
type="checkbox"
|
|
7306
|
-
name="table-
|
|
7307
|
-
aria-labelledby="table-
|
|
7306
|
+
name="table-expandable-hoverable-checkrow3"
|
|
7307
|
+
aria-labelledby="table-expandable-hoverable-node3"
|
|
7308
7308
|
/>
|
|
7309
7309
|
</label>
|
|
7310
7310
|
</td>
|
|
7311
7311
|
<th role="columnheader" data-label="Repository name">
|
|
7312
7312
|
<div>
|
|
7313
|
-
<div id="table-
|
|
7313
|
+
<div id="table-expandable-hoverable-node3">Hoverable</div>
|
|
7314
7314
|
</div>
|
|
7315
7315
|
</th>
|
|
7316
7316
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -7322,7 +7322,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7322
7322
|
<div class="pf-c-dropdown">
|
|
7323
7323
|
<button
|
|
7324
7324
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
7325
|
-
id="table-
|
|
7325
|
+
id="table-expandable-hoverable-dropdown-kebab-3-button"
|
|
7326
7326
|
aria-expanded="false"
|
|
7327
7327
|
type="button"
|
|
7328
7328
|
aria-label="Actions"
|
|
@@ -7331,7 +7331,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7331
7331
|
</button>
|
|
7332
7332
|
<ul
|
|
7333
7333
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
7334
|
-
aria-labelledby="table-
|
|
7334
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-3-button"
|
|
7335
7335
|
hidden
|
|
7336
7336
|
>
|
|
7337
7337
|
<li>
|
|
@@ -7371,7 +7371,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7371
7371
|
class
|
|
7372
7372
|
role="cell"
|
|
7373
7373
|
colspan="4"
|
|
7374
|
-
id="table-
|
|
7374
|
+
id="table-expandable-hoverable-content3"
|
|
7375
7375
|
>
|
|
7376
7376
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7377
7377
|
</td>
|
|
@@ -7383,10 +7383,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7383
7383
|
<td class="pf-c-table__toggle" role="cell">
|
|
7384
7384
|
<button
|
|
7385
7385
|
class="pf-c-button pf-m-plain"
|
|
7386
|
-
aria-labelledby="table-
|
|
7387
|
-
id="table-
|
|
7386
|
+
aria-labelledby="table-expandable-hoverable-node4 table-expandable-hoverable-expandable-toggle4"
|
|
7387
|
+
id="table-expandable-hoverable-expandable-toggle4"
|
|
7388
7388
|
aria-label="Details"
|
|
7389
|
-
aria-controls="table-
|
|
7389
|
+
aria-controls="table-expandable-hoverable-content4"
|
|
7390
7390
|
>
|
|
7391
7391
|
<div class="pf-c-table__toggle-icon">
|
|
7392
7392
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7398,14 +7398,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7398
7398
|
<label>
|
|
7399
7399
|
<input
|
|
7400
7400
|
type="checkbox"
|
|
7401
|
-
name="table-
|
|
7402
|
-
aria-labelledby="table-
|
|
7401
|
+
name="table-expandable-hoverable-checkrow4"
|
|
7402
|
+
aria-labelledby="table-expandable-hoverable-node4"
|
|
7403
7403
|
/>
|
|
7404
7404
|
</label>
|
|
7405
7405
|
</td>
|
|
7406
7406
|
<th role="columnheader" data-label="Repository name">
|
|
7407
7407
|
<div>
|
|
7408
|
-
<div id="table-
|
|
7408
|
+
<div id="table-expandable-hoverable-node4">Hoverable</div>
|
|
7409
7409
|
</div>
|
|
7410
7410
|
</th>
|
|
7411
7411
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -7417,7 +7417,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7417
7417
|
<div class="pf-c-dropdown">
|
|
7418
7418
|
<button
|
|
7419
7419
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
7420
|
-
id="table-
|
|
7420
|
+
id="table-expandable-hoverable-dropdown-kebab-4-button"
|
|
7421
7421
|
aria-expanded="false"
|
|
7422
7422
|
type="button"
|
|
7423
7423
|
aria-label="Actions"
|
|
@@ -7426,7 +7426,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7426
7426
|
</button>
|
|
7427
7427
|
<ul
|
|
7428
7428
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
7429
|
-
aria-labelledby="table-
|
|
7429
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-4-button"
|
|
7430
7430
|
hidden
|
|
7431
7431
|
>
|
|
7432
7432
|
<li>
|
|
@@ -7466,7 +7466,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7466
7466
|
class
|
|
7467
7467
|
role="cell"
|
|
7468
7468
|
colspan="4"
|
|
7469
|
-
id="table-
|
|
7469
|
+
id="table-expandable-hoverable-content4"
|
|
7470
7470
|
>
|
|
7471
7471
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7472
7472
|
</td>
|
|
@@ -7478,10 +7478,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7478
7478
|
<td class="pf-c-table__toggle" role="cell">
|
|
7479
7479
|
<button
|
|
7480
7480
|
class="pf-c-button pf-m-plain"
|
|
7481
|
-
aria-labelledby="table-
|
|
7482
|
-
id="table-
|
|
7481
|
+
aria-labelledby="table-expandable-hoverable-node5 table-expandable-hoverable-expandable-toggle5"
|
|
7482
|
+
id="table-expandable-hoverable-expandable-toggle5"
|
|
7483
7483
|
aria-label="Details"
|
|
7484
|
-
aria-controls="table-
|
|
7484
|
+
aria-controls="table-expandable-hoverable-content5"
|
|
7485
7485
|
>
|
|
7486
7486
|
<div class="pf-c-table__toggle-icon">
|
|
7487
7487
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7493,14 +7493,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7493
7493
|
<label>
|
|
7494
7494
|
<input
|
|
7495
7495
|
type="checkbox"
|
|
7496
|
-
name="table-
|
|
7497
|
-
aria-labelledby="table-
|
|
7496
|
+
name="table-expandable-hoverable-checkrow5"
|
|
7497
|
+
aria-labelledby="table-expandable-hoverable-node5"
|
|
7498
7498
|
/>
|
|
7499
7499
|
</label>
|
|
7500
7500
|
</td>
|
|
7501
7501
|
<th role="columnheader" data-label="Repository name">
|
|
7502
7502
|
<div>
|
|
7503
|
-
<div id="table-
|
|
7503
|
+
<div id="table-expandable-hoverable-node5">
|
|
7504
7504
|
<i>Selected and not expanded</i>
|
|
7505
7505
|
</div>
|
|
7506
7506
|
</div>
|
|
@@ -7514,7 +7514,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7514
7514
|
<div class="pf-c-dropdown">
|
|
7515
7515
|
<button
|
|
7516
7516
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
7517
|
-
id="table-
|
|
7517
|
+
id="table-expandable-hoverable-dropdown-kebab-5-button"
|
|
7518
7518
|
aria-expanded="false"
|
|
7519
7519
|
type="button"
|
|
7520
7520
|
aria-label="Actions"
|
|
@@ -7523,7 +7523,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7523
7523
|
</button>
|
|
7524
7524
|
<ul
|
|
7525
7525
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
7526
|
-
aria-labelledby="table-
|
|
7526
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-5-button"
|
|
7527
7527
|
hidden
|
|
7528
7528
|
>
|
|
7529
7529
|
<li>
|
|
@@ -7563,7 +7563,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7563
7563
|
class
|
|
7564
7564
|
role="cell"
|
|
7565
7565
|
colspan="4"
|
|
7566
|
-
id="table-
|
|
7566
|
+
id="table-expandable-hoverable-content5"
|
|
7567
7567
|
>
|
|
7568
7568
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7569
7569
|
</td>
|
|
@@ -7575,10 +7575,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7575
7575
|
<td class="pf-c-table__toggle" role="cell">
|
|
7576
7576
|
<button
|
|
7577
7577
|
class="pf-c-button pf-m-plain"
|
|
7578
|
-
aria-labelledby="table-
|
|
7579
|
-
id="table-
|
|
7578
|
+
aria-labelledby="table-expandable-hoverable-node6 table-expandable-hoverable-expandable-toggle6"
|
|
7579
|
+
id="table-expandable-hoverable-expandable-toggle6"
|
|
7580
7580
|
aria-label="Details"
|
|
7581
|
-
aria-controls="table-
|
|
7581
|
+
aria-controls="table-expandable-hoverable-content6"
|
|
7582
7582
|
>
|
|
7583
7583
|
<div class="pf-c-table__toggle-icon">
|
|
7584
7584
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7590,14 +7590,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7590
7590
|
<label>
|
|
7591
7591
|
<input
|
|
7592
7592
|
type="checkbox"
|
|
7593
|
-
name="table-
|
|
7594
|
-
aria-labelledby="table-
|
|
7593
|
+
name="table-expandable-hoverable-checkrow6"
|
|
7594
|
+
aria-labelledby="table-expandable-hoverable-node6"
|
|
7595
7595
|
/>
|
|
7596
7596
|
</label>
|
|
7597
7597
|
</td>
|
|
7598
7598
|
<th role="columnheader" data-label="Repository name">
|
|
7599
7599
|
<div>
|
|
7600
|
-
<div id="table-
|
|
7600
|
+
<div id="table-expandable-hoverable-node6">
|
|
7601
7601
|
<i>Selected and not expanded</i>
|
|
7602
7602
|
</div>
|
|
7603
7603
|
</div>
|
|
@@ -7611,7 +7611,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7611
7611
|
<div class="pf-c-dropdown">
|
|
7612
7612
|
<button
|
|
7613
7613
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
7614
|
-
id="table-
|
|
7614
|
+
id="table-expandable-hoverable-dropdown-kebab-6-button"
|
|
7615
7615
|
aria-expanded="false"
|
|
7616
7616
|
type="button"
|
|
7617
7617
|
aria-label="Actions"
|
|
@@ -7620,7 +7620,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7620
7620
|
</button>
|
|
7621
7621
|
<ul
|
|
7622
7622
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
7623
|
-
aria-labelledby="table-
|
|
7623
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-6-button"
|
|
7624
7624
|
hidden
|
|
7625
7625
|
>
|
|
7626
7626
|
<li>
|
|
@@ -7660,7 +7660,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7660
7660
|
class
|
|
7661
7661
|
role="cell"
|
|
7662
7662
|
colspan="4"
|
|
7663
|
-
id="table-
|
|
7663
|
+
id="table-expandable-hoverable-content6"
|
|
7664
7664
|
>
|
|
7665
7665
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7666
7666
|
</td>
|
|
@@ -7672,10 +7672,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7672
7672
|
<td class="pf-c-table__toggle" role="cell">
|
|
7673
7673
|
<button
|
|
7674
7674
|
class="pf-c-button pf-m-plain"
|
|
7675
|
-
aria-labelledby="table-
|
|
7676
|
-
id="table-
|
|
7675
|
+
aria-labelledby="table-expandable-hoverable-node7 table-expandable-hoverable-expandable-toggle7"
|
|
7676
|
+
id="table-expandable-hoverable-expandable-toggle7"
|
|
7677
7677
|
aria-label="Details"
|
|
7678
|
-
aria-controls="table-
|
|
7678
|
+
aria-controls="table-expandable-hoverable-content7"
|
|
7679
7679
|
>
|
|
7680
7680
|
<div class="pf-c-table__toggle-icon">
|
|
7681
7681
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7687,14 +7687,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7687
7687
|
<label>
|
|
7688
7688
|
<input
|
|
7689
7689
|
type="checkbox"
|
|
7690
|
-
name="table-
|
|
7691
|
-
aria-labelledby="table-
|
|
7690
|
+
name="table-expandable-hoverable-checkrow7"
|
|
7691
|
+
aria-labelledby="table-expandable-hoverable-node7"
|
|
7692
7692
|
/>
|
|
7693
7693
|
</label>
|
|
7694
7694
|
</td>
|
|
7695
7695
|
<th role="columnheader" data-label="Repository name">
|
|
7696
7696
|
<div>
|
|
7697
|
-
<div id="table-
|
|
7697
|
+
<div id="table-expandable-hoverable-node7">
|
|
7698
7698
|
<i>Selected and not expanded</i>
|
|
7699
7699
|
</div>
|
|
7700
7700
|
</div>
|
|
@@ -7708,7 +7708,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7708
7708
|
<div class="pf-c-dropdown">
|
|
7709
7709
|
<button
|
|
7710
7710
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
7711
|
-
id="table-
|
|
7711
|
+
id="table-expandable-hoverable-dropdown-kebab-7-button"
|
|
7712
7712
|
aria-expanded="false"
|
|
7713
7713
|
type="button"
|
|
7714
7714
|
aria-label="Actions"
|
|
@@ -7717,7 +7717,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7717
7717
|
</button>
|
|
7718
7718
|
<ul
|
|
7719
7719
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
7720
|
-
aria-labelledby="table-
|
|
7720
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-7-button"
|
|
7721
7721
|
hidden
|
|
7722
7722
|
>
|
|
7723
7723
|
<li>
|
|
@@ -7757,7 +7757,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7757
7757
|
class
|
|
7758
7758
|
role="cell"
|
|
7759
7759
|
colspan="4"
|
|
7760
|
-
id="table-
|
|
7760
|
+
id="table-expandable-hoverable-content7"
|
|
7761
7761
|
>
|
|
7762
7762
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7763
7763
|
</td>
|
|
@@ -7769,10 +7769,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7769
7769
|
<td class="pf-c-table__toggle" role="cell">
|
|
7770
7770
|
<button
|
|
7771
7771
|
class="pf-c-button pf-m-plain"
|
|
7772
|
-
aria-labelledby="table-
|
|
7773
|
-
id="table-
|
|
7772
|
+
aria-labelledby="table-expandable-hoverable-node8 table-expandable-hoverable-expandable-toggle8"
|
|
7773
|
+
id="table-expandable-hoverable-expandable-toggle8"
|
|
7774
7774
|
aria-label="Details"
|
|
7775
|
-
aria-controls="table-
|
|
7775
|
+
aria-controls="table-expandable-hoverable-content8"
|
|
7776
7776
|
>
|
|
7777
7777
|
<div class="pf-c-table__toggle-icon">
|
|
7778
7778
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7784,14 +7784,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7784
7784
|
<label>
|
|
7785
7785
|
<input
|
|
7786
7786
|
type="checkbox"
|
|
7787
|
-
name="table-
|
|
7788
|
-
aria-labelledby="table-
|
|
7787
|
+
name="table-expandable-hoverable-checkrow8"
|
|
7788
|
+
aria-labelledby="table-expandable-hoverable-node8"
|
|
7789
7789
|
/>
|
|
7790
7790
|
</label>
|
|
7791
7791
|
</td>
|
|
7792
7792
|
<th role="columnheader" data-label="Repository name">
|
|
7793
7793
|
<div>
|
|
7794
|
-
<div id="table-
|
|
7794
|
+
<div id="table-expandable-hoverable-node8">Hoverable</div>
|
|
7795
7795
|
</div>
|
|
7796
7796
|
</th>
|
|
7797
7797
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -7803,7 +7803,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7803
7803
|
<div class="pf-c-dropdown">
|
|
7804
7804
|
<button
|
|
7805
7805
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
7806
|
-
id="table-
|
|
7806
|
+
id="table-expandable-hoverable-dropdown-kebab-8-button"
|
|
7807
7807
|
aria-expanded="false"
|
|
7808
7808
|
type="button"
|
|
7809
7809
|
aria-label="Actions"
|
|
@@ -7812,7 +7812,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7812
7812
|
</button>
|
|
7813
7813
|
<ul
|
|
7814
7814
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
7815
|
-
aria-labelledby="table-
|
|
7815
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-8-button"
|
|
7816
7816
|
hidden
|
|
7817
7817
|
>
|
|
7818
7818
|
<li>
|
|
@@ -7852,7 +7852,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7852
7852
|
class
|
|
7853
7853
|
role="cell"
|
|
7854
7854
|
colspan="4"
|
|
7855
|
-
id="table-
|
|
7855
|
+
id="table-expandable-hoverable-content8"
|
|
7856
7856
|
>
|
|
7857
7857
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7858
7858
|
</td>
|
|
@@ -7864,10 +7864,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7864
7864
|
<td class="pf-c-table__toggle" role="cell">
|
|
7865
7865
|
<button
|
|
7866
7866
|
class="pf-c-button pf-m-plain"
|
|
7867
|
-
aria-labelledby="table-
|
|
7868
|
-
id="table-
|
|
7867
|
+
aria-labelledby="table-expandable-hoverable-node9 table-expandable-hoverable-expandable-toggle9"
|
|
7868
|
+
id="table-expandable-hoverable-expandable-toggle9"
|
|
7869
7869
|
aria-label="Details"
|
|
7870
|
-
aria-controls="table-
|
|
7870
|
+
aria-controls="table-expandable-hoverable-content9"
|
|
7871
7871
|
>
|
|
7872
7872
|
<div class="pf-c-table__toggle-icon">
|
|
7873
7873
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7879,14 +7879,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7879
7879
|
<label>
|
|
7880
7880
|
<input
|
|
7881
7881
|
type="checkbox"
|
|
7882
|
-
name="table-
|
|
7883
|
-
aria-labelledby="table-
|
|
7882
|
+
name="table-expandable-hoverable-checkrow9"
|
|
7883
|
+
aria-labelledby="table-expandable-hoverable-node9"
|
|
7884
7884
|
/>
|
|
7885
7885
|
</label>
|
|
7886
7886
|
</td>
|
|
7887
7887
|
<th role="columnheader" data-label="Repository name">
|
|
7888
7888
|
<div>
|
|
7889
|
-
<div id="table-
|
|
7889
|
+
<div id="table-expandable-hoverable-node9">Hoverable</div>
|
|
7890
7890
|
</div>
|
|
7891
7891
|
</th>
|
|
7892
7892
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -7898,7 +7898,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7898
7898
|
<div class="pf-c-dropdown">
|
|
7899
7899
|
<button
|
|
7900
7900
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
7901
|
-
id="table-
|
|
7901
|
+
id="table-expandable-hoverable-dropdown-kebab-9-button"
|
|
7902
7902
|
aria-expanded="false"
|
|
7903
7903
|
type="button"
|
|
7904
7904
|
aria-label="Actions"
|
|
@@ -7907,7 +7907,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7907
7907
|
</button>
|
|
7908
7908
|
<ul
|
|
7909
7909
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
7910
|
-
aria-labelledby="table-
|
|
7910
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-9-button"
|
|
7911
7911
|
hidden
|
|
7912
7912
|
>
|
|
7913
7913
|
<li>
|
|
@@ -7947,7 +7947,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7947
7947
|
class
|
|
7948
7948
|
role="cell"
|
|
7949
7949
|
colspan="4"
|
|
7950
|
-
id="table-
|
|
7950
|
+
id="table-expandable-hoverable-content9"
|
|
7951
7951
|
>
|
|
7952
7952
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
7953
7953
|
</td>
|
|
@@ -7959,10 +7959,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7959
7959
|
<td class="pf-c-table__toggle" role="cell">
|
|
7960
7960
|
<button
|
|
7961
7961
|
class="pf-c-button pf-m-plain"
|
|
7962
|
-
aria-labelledby="table-
|
|
7963
|
-
id="table-
|
|
7962
|
+
aria-labelledby="table-expandable-hoverable-node10 table-expandable-hoverable-expandable-toggle10"
|
|
7963
|
+
id="table-expandable-hoverable-expandable-toggle10"
|
|
7964
7964
|
aria-label="Details"
|
|
7965
|
-
aria-controls="table-
|
|
7965
|
+
aria-controls="table-expandable-hoverable-content10"
|
|
7966
7966
|
>
|
|
7967
7967
|
<div class="pf-c-table__toggle-icon">
|
|
7968
7968
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -7974,14 +7974,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7974
7974
|
<label>
|
|
7975
7975
|
<input
|
|
7976
7976
|
type="checkbox"
|
|
7977
|
-
name="table-
|
|
7978
|
-
aria-labelledby="table-
|
|
7977
|
+
name="table-expandable-hoverable-checkrow10"
|
|
7978
|
+
aria-labelledby="table-expandable-hoverable-node10"
|
|
7979
7979
|
/>
|
|
7980
7980
|
</label>
|
|
7981
7981
|
</td>
|
|
7982
7982
|
<th role="columnheader" data-label="Repository name">
|
|
7983
7983
|
<div>
|
|
7984
|
-
<div id="table-
|
|
7984
|
+
<div id="table-expandable-hoverable-node10">Hoverable</div>
|
|
7985
7985
|
</div>
|
|
7986
7986
|
</th>
|
|
7987
7987
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -7993,7 +7993,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
7993
7993
|
<div class="pf-c-dropdown">
|
|
7994
7994
|
<button
|
|
7995
7995
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
7996
|
-
id="table-
|
|
7996
|
+
id="table-expandable-hoverable-dropdown-kebab-10-button"
|
|
7997
7997
|
aria-expanded="false"
|
|
7998
7998
|
type="button"
|
|
7999
7999
|
aria-label="Actions"
|
|
@@ -8002,7 +8002,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8002
8002
|
</button>
|
|
8003
8003
|
<ul
|
|
8004
8004
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
8005
|
-
aria-labelledby="table-
|
|
8005
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-10-button"
|
|
8006
8006
|
hidden
|
|
8007
8007
|
>
|
|
8008
8008
|
<li>
|
|
@@ -8042,7 +8042,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8042
8042
|
class
|
|
8043
8043
|
role="cell"
|
|
8044
8044
|
colspan="4"
|
|
8045
|
-
id="table-
|
|
8045
|
+
id="table-expandable-hoverable-content10"
|
|
8046
8046
|
>
|
|
8047
8047
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8048
8048
|
</td>
|
|
@@ -8058,10 +8058,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8058
8058
|
<td class="pf-c-table__toggle" role="cell">
|
|
8059
8059
|
<button
|
|
8060
8060
|
class="pf-c-button pf-m-plain pf-m-expanded"
|
|
8061
|
-
aria-labelledby="table-
|
|
8062
|
-
id="table-
|
|
8061
|
+
aria-labelledby="table-expandable-hoverable-node11 table-expandable-hoverable-expandable-toggle11"
|
|
8062
|
+
id="table-expandable-hoverable-expandable-toggle11"
|
|
8063
8063
|
aria-label="Details"
|
|
8064
|
-
aria-controls="table-
|
|
8064
|
+
aria-controls="table-expandable-hoverable-content11"
|
|
8065
8065
|
aria-expanded="true"
|
|
8066
8066
|
>
|
|
8067
8067
|
<div class="pf-c-table__toggle-icon">
|
|
@@ -8074,14 +8074,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8074
8074
|
<label>
|
|
8075
8075
|
<input
|
|
8076
8076
|
type="checkbox"
|
|
8077
|
-
name="table-
|
|
8078
|
-
aria-labelledby="table-
|
|
8077
|
+
name="table-expandable-hoverable-checkrow11"
|
|
8078
|
+
aria-labelledby="table-expandable-hoverable-node11"
|
|
8079
8079
|
/>
|
|
8080
8080
|
</label>
|
|
8081
8081
|
</td>
|
|
8082
8082
|
<th role="columnheader" data-label="Repository name">
|
|
8083
8083
|
<div>
|
|
8084
|
-
<div id="table-
|
|
8084
|
+
<div id="table-expandable-hoverable-node11">
|
|
8085
8085
|
<b>Expanded and selected</b>
|
|
8086
8086
|
</div>
|
|
8087
8087
|
</div>
|
|
@@ -8095,7 +8095,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8095
8095
|
<div class="pf-c-dropdown">
|
|
8096
8096
|
<button
|
|
8097
8097
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
8098
|
-
id="table-
|
|
8098
|
+
id="table-expandable-hoverable-dropdown-kebab-11-button"
|
|
8099
8099
|
aria-expanded="false"
|
|
8100
8100
|
type="button"
|
|
8101
8101
|
aria-label="Actions"
|
|
@@ -8104,7 +8104,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8104
8104
|
</button>
|
|
8105
8105
|
<ul
|
|
8106
8106
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
8107
|
-
aria-labelledby="table-
|
|
8107
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-11-button"
|
|
8108
8108
|
hidden
|
|
8109
8109
|
>
|
|
8110
8110
|
<li>
|
|
@@ -8144,7 +8144,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8144
8144
|
class
|
|
8145
8145
|
role="cell"
|
|
8146
8146
|
colspan="4"
|
|
8147
|
-
id="table-
|
|
8147
|
+
id="table-expandable-hoverable-content11"
|
|
8148
8148
|
>
|
|
8149
8149
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8150
8150
|
</td>
|
|
@@ -8156,10 +8156,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8156
8156
|
<td class="pf-c-table__toggle" role="cell">
|
|
8157
8157
|
<button
|
|
8158
8158
|
class="pf-c-button pf-m-plain"
|
|
8159
|
-
aria-labelledby="table-
|
|
8160
|
-
id="table-
|
|
8159
|
+
aria-labelledby="table-expandable-hoverable-node12 table-expandable-hoverable-expandable-toggle12"
|
|
8160
|
+
id="table-expandable-hoverable-expandable-toggle12"
|
|
8161
8161
|
aria-label="Details"
|
|
8162
|
-
aria-controls="table-
|
|
8162
|
+
aria-controls="table-expandable-hoverable-content12"
|
|
8163
8163
|
>
|
|
8164
8164
|
<div class="pf-c-table__toggle-icon">
|
|
8165
8165
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -8171,14 +8171,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8171
8171
|
<label>
|
|
8172
8172
|
<input
|
|
8173
8173
|
type="checkbox"
|
|
8174
|
-
name="table-
|
|
8175
|
-
aria-labelledby="table-
|
|
8174
|
+
name="table-expandable-hoverable-checkrow12"
|
|
8175
|
+
aria-labelledby="table-expandable-hoverable-node12"
|
|
8176
8176
|
/>
|
|
8177
8177
|
</label>
|
|
8178
8178
|
</td>
|
|
8179
8179
|
<th role="columnheader" data-label="Repository name">
|
|
8180
8180
|
<div>
|
|
8181
|
-
<div id="table-
|
|
8181
|
+
<div id="table-expandable-hoverable-node12">Hoverable</div>
|
|
8182
8182
|
</div>
|
|
8183
8183
|
</th>
|
|
8184
8184
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -8190,7 +8190,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8190
8190
|
<div class="pf-c-dropdown">
|
|
8191
8191
|
<button
|
|
8192
8192
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
8193
|
-
id="table-
|
|
8193
|
+
id="table-expandable-hoverable-dropdown-kebab-12-button"
|
|
8194
8194
|
aria-expanded="false"
|
|
8195
8195
|
type="button"
|
|
8196
8196
|
aria-label="Actions"
|
|
@@ -8199,7 +8199,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8199
8199
|
</button>
|
|
8200
8200
|
<ul
|
|
8201
8201
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
8202
|
-
aria-labelledby="table-
|
|
8202
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-12-button"
|
|
8203
8203
|
hidden
|
|
8204
8204
|
>
|
|
8205
8205
|
<li>
|
|
@@ -8239,7 +8239,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8239
8239
|
class
|
|
8240
8240
|
role="cell"
|
|
8241
8241
|
colspan="4"
|
|
8242
|
-
id="table-
|
|
8242
|
+
id="table-expandable-hoverable-content12"
|
|
8243
8243
|
>
|
|
8244
8244
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8245
8245
|
</td>
|
|
@@ -8255,10 +8255,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8255
8255
|
<td class="pf-c-table__toggle" role="cell">
|
|
8256
8256
|
<button
|
|
8257
8257
|
class="pf-c-button pf-m-plain pf-m-expanded"
|
|
8258
|
-
aria-labelledby="table-
|
|
8259
|
-
id="table-
|
|
8258
|
+
aria-labelledby="table-expandable-hoverable-node13 table-expandable-hoverable-expandable-toggle13"
|
|
8259
|
+
id="table-expandable-hoverable-expandable-toggle13"
|
|
8260
8260
|
aria-label="Details"
|
|
8261
|
-
aria-controls="table-
|
|
8261
|
+
aria-controls="table-expandable-hoverable-content13"
|
|
8262
8262
|
aria-expanded="true"
|
|
8263
8263
|
>
|
|
8264
8264
|
<div class="pf-c-table__toggle-icon">
|
|
@@ -8271,14 +8271,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8271
8271
|
<label>
|
|
8272
8272
|
<input
|
|
8273
8273
|
type="checkbox"
|
|
8274
|
-
name="table-
|
|
8275
|
-
aria-labelledby="table-
|
|
8274
|
+
name="table-expandable-hoverable-checkrow13"
|
|
8275
|
+
aria-labelledby="table-expandable-hoverable-node13"
|
|
8276
8276
|
/>
|
|
8277
8277
|
</label>
|
|
8278
8278
|
</td>
|
|
8279
8279
|
<th role="columnheader" data-label="Repository name">
|
|
8280
8280
|
<div>
|
|
8281
|
-
<div id="table-
|
|
8281
|
+
<div id="table-expandable-hoverable-node13">
|
|
8282
8282
|
<b>Expanded and selected</b>
|
|
8283
8283
|
</div>
|
|
8284
8284
|
</div>
|
|
@@ -8292,7 +8292,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8292
8292
|
<div class="pf-c-dropdown">
|
|
8293
8293
|
<button
|
|
8294
8294
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
8295
|
-
id="table-
|
|
8295
|
+
id="table-expandable-hoverable-dropdown-kebab-13-button"
|
|
8296
8296
|
aria-expanded="false"
|
|
8297
8297
|
type="button"
|
|
8298
8298
|
aria-label="Actions"
|
|
@@ -8301,7 +8301,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8301
8301
|
</button>
|
|
8302
8302
|
<ul
|
|
8303
8303
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
8304
|
-
aria-labelledby="table-
|
|
8304
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-13-button"
|
|
8305
8305
|
hidden
|
|
8306
8306
|
>
|
|
8307
8307
|
<li>
|
|
@@ -8341,7 +8341,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8341
8341
|
class
|
|
8342
8342
|
role="cell"
|
|
8343
8343
|
colspan="4"
|
|
8344
|
-
id="table-
|
|
8344
|
+
id="table-expandable-hoverable-content13"
|
|
8345
8345
|
>
|
|
8346
8346
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8347
8347
|
</td>
|
|
@@ -8357,10 +8357,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8357
8357
|
<td class="pf-c-table__toggle" role="cell">
|
|
8358
8358
|
<button
|
|
8359
8359
|
class="pf-c-button pf-m-plain pf-m-expanded"
|
|
8360
|
-
aria-labelledby="table-
|
|
8361
|
-
id="table-
|
|
8360
|
+
aria-labelledby="table-expandable-hoverable-node15 table-expandable-hoverable-expandable-toggle15"
|
|
8361
|
+
id="table-expandable-hoverable-expandable-toggle15"
|
|
8362
8362
|
aria-label="Details"
|
|
8363
|
-
aria-controls="table-
|
|
8363
|
+
aria-controls="table-expandable-hoverable-content15"
|
|
8364
8364
|
aria-expanded="true"
|
|
8365
8365
|
>
|
|
8366
8366
|
<div class="pf-c-table__toggle-icon">
|
|
@@ -8373,14 +8373,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8373
8373
|
<label>
|
|
8374
8374
|
<input
|
|
8375
8375
|
type="checkbox"
|
|
8376
|
-
name="table-
|
|
8377
|
-
aria-labelledby="table-
|
|
8376
|
+
name="table-expandable-hoverable-checkrow15"
|
|
8377
|
+
aria-labelledby="table-expandable-hoverable-node15"
|
|
8378
8378
|
/>
|
|
8379
8379
|
</label>
|
|
8380
8380
|
</td>
|
|
8381
8381
|
<th role="columnheader" data-label="Repository name">
|
|
8382
8382
|
<div>
|
|
8383
|
-
<div id="table-
|
|
8383
|
+
<div id="table-expandable-hoverable-node15">
|
|
8384
8384
|
<b>Expanded and selected</b>
|
|
8385
8385
|
</div>
|
|
8386
8386
|
</div>
|
|
@@ -8394,7 +8394,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8394
8394
|
<div class="pf-c-dropdown">
|
|
8395
8395
|
<button
|
|
8396
8396
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
8397
|
-
id="table-
|
|
8397
|
+
id="table-expandable-hoverable-dropdown-kebab-15-button"
|
|
8398
8398
|
aria-expanded="false"
|
|
8399
8399
|
type="button"
|
|
8400
8400
|
aria-label="Actions"
|
|
@@ -8403,7 +8403,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8403
8403
|
</button>
|
|
8404
8404
|
<ul
|
|
8405
8405
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
8406
|
-
aria-labelledby="table-
|
|
8406
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-15-button"
|
|
8407
8407
|
hidden
|
|
8408
8408
|
>
|
|
8409
8409
|
<li>
|
|
@@ -8443,7 +8443,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8443
8443
|
class
|
|
8444
8444
|
role="cell"
|
|
8445
8445
|
colspan="4"
|
|
8446
|
-
id="table-
|
|
8446
|
+
id="table-expandable-hoverable-content15"
|
|
8447
8447
|
>
|
|
8448
8448
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8449
8449
|
</td>
|
|
@@ -8455,10 +8455,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8455
8455
|
<td class="pf-c-table__toggle" role="cell">
|
|
8456
8456
|
<button
|
|
8457
8457
|
class="pf-c-button pf-m-plain pf-m-expanded"
|
|
8458
|
-
aria-labelledby="table-
|
|
8459
|
-
id="table-
|
|
8458
|
+
aria-labelledby="table-expandable-hoverable-node14 table-expandable-hoverable-expandable-toggle14"
|
|
8459
|
+
id="table-expandable-hoverable-expandable-toggle14"
|
|
8460
8460
|
aria-label="Details"
|
|
8461
|
-
aria-controls="table-
|
|
8461
|
+
aria-controls="table-expandable-hoverable-content14"
|
|
8462
8462
|
aria-expanded="true"
|
|
8463
8463
|
>
|
|
8464
8464
|
<div class="pf-c-table__toggle-icon">
|
|
@@ -8471,16 +8471,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8471
8471
|
<label>
|
|
8472
8472
|
<input
|
|
8473
8473
|
type="checkbox"
|
|
8474
|
-
name="table-
|
|
8475
|
-
aria-labelledby="table-
|
|
8474
|
+
name="table-expandable-hoverable-checkrow14"
|
|
8475
|
+
aria-labelledby="table-expandable-hoverable-node14"
|
|
8476
8476
|
/>
|
|
8477
8477
|
</label>
|
|
8478
8478
|
</td>
|
|
8479
8479
|
<th role="columnheader" data-label="Repository name">
|
|
8480
8480
|
<div>
|
|
8481
|
-
<div
|
|
8482
|
-
id="table-tbody-expandable-hoverable-node14"
|
|
8483
|
-
>Expanded and not selected</div>
|
|
8481
|
+
<div id="table-expandable-hoverable-node14">Expanded and not selected</div>
|
|
8484
8482
|
</div>
|
|
8485
8483
|
</th>
|
|
8486
8484
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -8492,7 +8490,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8492
8490
|
<div class="pf-c-dropdown">
|
|
8493
8491
|
<button
|
|
8494
8492
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
8495
|
-
id="table-
|
|
8493
|
+
id="table-expandable-hoverable-dropdown-kebab-14-button"
|
|
8496
8494
|
aria-expanded="false"
|
|
8497
8495
|
type="button"
|
|
8498
8496
|
aria-label="Actions"
|
|
@@ -8501,7 +8499,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8501
8499
|
</button>
|
|
8502
8500
|
<ul
|
|
8503
8501
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
8504
|
-
aria-labelledby="table-
|
|
8502
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-14-button"
|
|
8505
8503
|
hidden
|
|
8506
8504
|
>
|
|
8507
8505
|
<li>
|
|
@@ -8541,7 +8539,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8541
8539
|
class
|
|
8542
8540
|
role="cell"
|
|
8543
8541
|
colspan="4"
|
|
8544
|
-
id="table-
|
|
8542
|
+
id="table-expandable-hoverable-content14"
|
|
8545
8543
|
>
|
|
8546
8544
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8547
8545
|
</td>
|
|
@@ -8553,10 +8551,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8553
8551
|
<td class="pf-c-table__toggle" role="cell">
|
|
8554
8552
|
<button
|
|
8555
8553
|
class="pf-c-button pf-m-plain"
|
|
8556
|
-
aria-labelledby="table-
|
|
8557
|
-
id="table-
|
|
8554
|
+
aria-labelledby="table-expandable-hoverable-node16 table-expandable-hoverable-expandable-toggle16"
|
|
8555
|
+
id="table-expandable-hoverable-expandable-toggle16"
|
|
8558
8556
|
aria-label="Details"
|
|
8559
|
-
aria-controls="table-
|
|
8557
|
+
aria-controls="table-expandable-hoverable-content16"
|
|
8560
8558
|
>
|
|
8561
8559
|
<div class="pf-c-table__toggle-icon">
|
|
8562
8560
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -8568,14 +8566,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8568
8566
|
<label>
|
|
8569
8567
|
<input
|
|
8570
8568
|
type="checkbox"
|
|
8571
|
-
name="table-
|
|
8572
|
-
aria-labelledby="table-
|
|
8569
|
+
name="table-expandable-hoverable-checkrow16"
|
|
8570
|
+
aria-labelledby="table-expandable-hoverable-node16"
|
|
8573
8571
|
/>
|
|
8574
8572
|
</label>
|
|
8575
8573
|
</td>
|
|
8576
8574
|
<th role="columnheader" data-label="Repository name">
|
|
8577
8575
|
<div>
|
|
8578
|
-
<div id="table-
|
|
8576
|
+
<div id="table-expandable-hoverable-node16">Hoverable</div>
|
|
8579
8577
|
</div>
|
|
8580
8578
|
</th>
|
|
8581
8579
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -8587,7 +8585,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8587
8585
|
<div class="pf-c-dropdown">
|
|
8588
8586
|
<button
|
|
8589
8587
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
8590
|
-
id="table-
|
|
8588
|
+
id="table-expandable-hoverable-dropdown-kebab-16-button"
|
|
8591
8589
|
aria-expanded="false"
|
|
8592
8590
|
type="button"
|
|
8593
8591
|
aria-label="Actions"
|
|
@@ -8596,7 +8594,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8596
8594
|
</button>
|
|
8597
8595
|
<ul
|
|
8598
8596
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
8599
|
-
aria-labelledby="table-
|
|
8597
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-16-button"
|
|
8600
8598
|
hidden
|
|
8601
8599
|
>
|
|
8602
8600
|
<li>
|
|
@@ -8636,7 +8634,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8636
8634
|
class
|
|
8637
8635
|
role="cell"
|
|
8638
8636
|
colspan="4"
|
|
8639
|
-
id="table-
|
|
8637
|
+
id="table-expandable-hoverable-content16"
|
|
8640
8638
|
>
|
|
8641
8639
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8642
8640
|
</td>
|
|
@@ -8648,10 +8646,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8648
8646
|
<td class="pf-c-table__toggle" role="cell">
|
|
8649
8647
|
<button
|
|
8650
8648
|
class="pf-c-button pf-m-plain pf-m-expanded"
|
|
8651
|
-
aria-labelledby="table-
|
|
8652
|
-
id="table-
|
|
8649
|
+
aria-labelledby="table-expandable-hoverable-node17 table-expandable-hoverable-expandable-toggle17"
|
|
8650
|
+
id="table-expandable-hoverable-expandable-toggle17"
|
|
8653
8651
|
aria-label="Details"
|
|
8654
|
-
aria-controls="table-
|
|
8652
|
+
aria-controls="table-expandable-hoverable-content17"
|
|
8655
8653
|
aria-expanded="true"
|
|
8656
8654
|
>
|
|
8657
8655
|
<div class="pf-c-table__toggle-icon">
|
|
@@ -8664,16 +8662,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8664
8662
|
<label>
|
|
8665
8663
|
<input
|
|
8666
8664
|
type="checkbox"
|
|
8667
|
-
name="table-
|
|
8668
|
-
aria-labelledby="table-
|
|
8665
|
+
name="table-expandable-hoverable-checkrow17"
|
|
8666
|
+
aria-labelledby="table-expandable-hoverable-node17"
|
|
8669
8667
|
/>
|
|
8670
8668
|
</label>
|
|
8671
8669
|
</td>
|
|
8672
8670
|
<th role="columnheader" data-label="Repository name">
|
|
8673
8671
|
<div>
|
|
8674
|
-
<div
|
|
8675
|
-
id="table-tbody-expandable-hoverable-node17"
|
|
8676
|
-
>Expanded and not selected</div>
|
|
8672
|
+
<div id="table-expandable-hoverable-node17">Expanded and not selected</div>
|
|
8677
8673
|
</div>
|
|
8678
8674
|
</th>
|
|
8679
8675
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -8685,7 +8681,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8685
8681
|
<div class="pf-c-dropdown">
|
|
8686
8682
|
<button
|
|
8687
8683
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
8688
|
-
id="table-
|
|
8684
|
+
id="table-expandable-hoverable-dropdown-kebab-17-button"
|
|
8689
8685
|
aria-expanded="false"
|
|
8690
8686
|
type="button"
|
|
8691
8687
|
aria-label="Actions"
|
|
@@ -8694,7 +8690,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8694
8690
|
</button>
|
|
8695
8691
|
<ul
|
|
8696
8692
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
8697
|
-
aria-labelledby="table-
|
|
8693
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-17-button"
|
|
8698
8694
|
hidden
|
|
8699
8695
|
>
|
|
8700
8696
|
<li>
|
|
@@ -8734,7 +8730,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8734
8730
|
class
|
|
8735
8731
|
role="cell"
|
|
8736
8732
|
colspan="4"
|
|
8737
|
-
id="table-
|
|
8733
|
+
id="table-expandable-hoverable-content17"
|
|
8738
8734
|
>
|
|
8739
8735
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8740
8736
|
</td>
|
|
@@ -8746,10 +8742,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8746
8742
|
<td class="pf-c-table__toggle" role="cell">
|
|
8747
8743
|
<button
|
|
8748
8744
|
class="pf-c-button pf-m-plain"
|
|
8749
|
-
aria-labelledby="table-
|
|
8750
|
-
id="table-
|
|
8745
|
+
aria-labelledby="table-expandable-hoverable-node18 table-expandable-hoverable-expandable-toggle18"
|
|
8746
|
+
id="table-expandable-hoverable-expandable-toggle18"
|
|
8751
8747
|
aria-label="Details"
|
|
8752
|
-
aria-controls="table-
|
|
8748
|
+
aria-controls="table-expandable-hoverable-content18"
|
|
8753
8749
|
>
|
|
8754
8750
|
<div class="pf-c-table__toggle-icon">
|
|
8755
8751
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -8761,14 +8757,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8761
8757
|
<label>
|
|
8762
8758
|
<input
|
|
8763
8759
|
type="checkbox"
|
|
8764
|
-
name="table-
|
|
8765
|
-
aria-labelledby="table-
|
|
8760
|
+
name="table-expandable-hoverable-checkrow18"
|
|
8761
|
+
aria-labelledby="table-expandable-hoverable-node18"
|
|
8766
8762
|
/>
|
|
8767
8763
|
</label>
|
|
8768
8764
|
</td>
|
|
8769
8765
|
<th role="columnheader" data-label="Repository name">
|
|
8770
8766
|
<div>
|
|
8771
|
-
<div id="table-
|
|
8767
|
+
<div id="table-expandable-hoverable-node18">Hoverable</div>
|
|
8772
8768
|
</div>
|
|
8773
8769
|
</th>
|
|
8774
8770
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -8780,7 +8776,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8780
8776
|
<div class="pf-c-dropdown">
|
|
8781
8777
|
<button
|
|
8782
8778
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
8783
|
-
id="table-
|
|
8779
|
+
id="table-expandable-hoverable-dropdown-kebab-18-button"
|
|
8784
8780
|
aria-expanded="false"
|
|
8785
8781
|
type="button"
|
|
8786
8782
|
aria-label="Actions"
|
|
@@ -8789,7 +8785,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8789
8785
|
</button>
|
|
8790
8786
|
<ul
|
|
8791
8787
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
8792
|
-
aria-labelledby="table-
|
|
8788
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-18-button"
|
|
8793
8789
|
hidden
|
|
8794
8790
|
>
|
|
8795
8791
|
<li>
|
|
@@ -8829,7 +8825,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8829
8825
|
class
|
|
8830
8826
|
role="cell"
|
|
8831
8827
|
colspan="4"
|
|
8832
|
-
id="table-
|
|
8828
|
+
id="table-expandable-hoverable-content18"
|
|
8833
8829
|
>
|
|
8834
8830
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8835
8831
|
</td>
|
|
@@ -8841,10 +8837,10 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8841
8837
|
<td class="pf-c-table__toggle" role="cell">
|
|
8842
8838
|
<button
|
|
8843
8839
|
class="pf-c-button pf-m-plain"
|
|
8844
|
-
aria-labelledby="table-
|
|
8845
|
-
id="table-
|
|
8840
|
+
aria-labelledby="table-expandable-hoverable-node19 table-expandable-hoverable-expandable-toggle19"
|
|
8841
|
+
id="table-expandable-hoverable-expandable-toggle19"
|
|
8846
8842
|
aria-label="Details"
|
|
8847
|
-
aria-controls="table-
|
|
8843
|
+
aria-controls="table-expandable-hoverable-content19"
|
|
8848
8844
|
>
|
|
8849
8845
|
<div class="pf-c-table__toggle-icon">
|
|
8850
8846
|
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
@@ -8856,14 +8852,14 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8856
8852
|
<label>
|
|
8857
8853
|
<input
|
|
8858
8854
|
type="checkbox"
|
|
8859
|
-
name="table-
|
|
8860
|
-
aria-labelledby="table-
|
|
8855
|
+
name="table-expandable-hoverable-checkrow19"
|
|
8856
|
+
aria-labelledby="table-expandable-hoverable-node19"
|
|
8861
8857
|
/>
|
|
8862
8858
|
</label>
|
|
8863
8859
|
</td>
|
|
8864
8860
|
<th role="columnheader" data-label="Repository name">
|
|
8865
8861
|
<div>
|
|
8866
|
-
<div id="table-
|
|
8862
|
+
<div id="table-expandable-hoverable-node19">Hoverable</div>
|
|
8867
8863
|
</div>
|
|
8868
8864
|
</th>
|
|
8869
8865
|
<td role="cell" data-label="Branches">10</td>
|
|
@@ -8875,7 +8871,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8875
8871
|
<div class="pf-c-dropdown">
|
|
8876
8872
|
<button
|
|
8877
8873
|
class="pf-c-dropdown__toggle pf-m-plain"
|
|
8878
|
-
id="table-
|
|
8874
|
+
id="table-expandable-hoverable-dropdown-kebab-19-button"
|
|
8879
8875
|
aria-expanded="false"
|
|
8880
8876
|
type="button"
|
|
8881
8877
|
aria-label="Actions"
|
|
@@ -8884,7 +8880,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8884
8880
|
</button>
|
|
8885
8881
|
<ul
|
|
8886
8882
|
class="pf-c-dropdown__menu pf-m-align-right"
|
|
8887
|
-
aria-labelledby="table-
|
|
8883
|
+
aria-labelledby="table-expandable-hoverable-dropdown-kebab-19-button"
|
|
8888
8884
|
hidden
|
|
8889
8885
|
>
|
|
8890
8886
|
<li>
|
|
@@ -8924,7 +8920,7 @@ Note: To apply padding to `.pf-c-table__expandable-row`, wrap the content in `.p
|
|
|
8924
8920
|
class
|
|
8925
8921
|
role="cell"
|
|
8926
8922
|
colspan="4"
|
|
8927
|
-
id="table-
|
|
8923
|
+
id="table-expandable-hoverable-content19"
|
|
8928
8924
|
>
|
|
8929
8925
|
<div class="pf-c-table__expandable-row-content">Expandable content</div>
|
|
8930
8926
|
</td>
|
|
@@ -19625,9 +19621,6 @@ Long strings in table cells will push that column wider and possible take from o
|
|
|
19625
19621
|
<td role="cell" data-label="Workspaces">5</td>
|
|
19626
19622
|
<td role="cell" data-label="Last commit">2 days ago</td>
|
|
19627
19623
|
</tr>
|
|
19628
|
-
</tbody>
|
|
19629
|
-
|
|
19630
|
-
<tbody>
|
|
19631
19624
|
<tr>
|
|
19632
19625
|
<td role="cell" data-label="Repository name">
|
|
19633
19626
|
This example is not responsive. Adjacent
|
|
@@ -21408,7 +21401,7 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
21408
21401
|
```html
|
|
21409
21402
|
<div class="pf-c-scroll-inner-wrapper">
|
|
21410
21403
|
<table
|
|
21411
|
-
class="pf-c-table"
|
|
21404
|
+
class="pf-c-table pf-m-expandable"
|
|
21412
21405
|
role="grid"
|
|
21413
21406
|
aria-label="This is a nested column header table example"
|
|
21414
21407
|
id="nested-columns-expandable-example"
|
|
@@ -22662,6 +22655,671 @@ For sticky columns to function correctly, the parent table's width must be contr
|
|
|
22662
22655
|
| `.pf-c-table__draggable` | `<td>` | Initiates a draggable table cell. |
|
|
22663
22656
|
| `.pf-m-drag-over` | `.pf-c-table` | Modifies the table to indicate that a draggable item is being dragged over the table. |
|
|
22664
22657
|
|
|
22658
|
+
## Striped
|
|
22659
|
+
|
|
22660
|
+
Basic striped table rows are supported on tables with a single `<tbody>` element and expandable tables by applying `.pf-m-striped` to the `.pf-c-table` element, which applies striped styling to odd table rows. For more complex tables, `.pf-m-striped` can be applied directly to the `<tbody>` and `<tr>` elements. The class `.pf-m-striped-even` can be applied to `<tbody>` elements to apply striped styling to the even rows in the table body. This is for use in tables with multiple `<tbody>` elements where even row striping may be needed to ensure visual consistency.
|
|
22661
|
+
|
|
22662
|
+
### Striped table example
|
|
22663
|
+
|
|
22664
|
+
```html
|
|
22665
|
+
<table
|
|
22666
|
+
class="pf-c-table pf-m-grid-md pf-m-striped"
|
|
22667
|
+
role="grid"
|
|
22668
|
+
aria-label="This is a striped table example"
|
|
22669
|
+
id="table-striped"
|
|
22670
|
+
>
|
|
22671
|
+
<caption>This is the table caption</caption>
|
|
22672
|
+
<thead>
|
|
22673
|
+
<tr role="row">
|
|
22674
|
+
<th role="columnheader" scope="col">Repositories</th>
|
|
22675
|
+
<th role="columnheader" scope="col">Branches</th>
|
|
22676
|
+
<th role="columnheader" scope="col">Pull requests</th>
|
|
22677
|
+
<th role="columnheader" scope="col">Workspaces</th>
|
|
22678
|
+
<th role="columnheader" scope="col">Last commit</th>
|
|
22679
|
+
</tr>
|
|
22680
|
+
</thead>
|
|
22681
|
+
|
|
22682
|
+
<tbody role="rowgroup">
|
|
22683
|
+
<tr role="row">
|
|
22684
|
+
<td role="cell" data-label="Repository name">Repository 1</td>
|
|
22685
|
+
<td role="cell" data-label="Branches">10</td>
|
|
22686
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
22687
|
+
<td role="cell" data-label="Workspaces">5</td>
|
|
22688
|
+
<td role="cell" data-label="Last commit">2 days ago</td>
|
|
22689
|
+
</tr>
|
|
22690
|
+
|
|
22691
|
+
<tr role="row">
|
|
22692
|
+
<td role="cell" data-label="Repository name">Repository 2</td>
|
|
22693
|
+
<td role="cell" data-label="Branches">10</td>
|
|
22694
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
22695
|
+
<td role="cell" data-label="Workspaces">5</td>
|
|
22696
|
+
<td role="cell" data-label="Last commit">2 days ago</td>
|
|
22697
|
+
</tr>
|
|
22698
|
+
|
|
22699
|
+
<tr role="row">
|
|
22700
|
+
<td role="cell" data-label="Repository name">Repository 3</td>
|
|
22701
|
+
<td role="cell" data-label="Branches">10</td>
|
|
22702
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
22703
|
+
<td role="cell" data-label="Workspaces">5</td>
|
|
22704
|
+
<td role="cell" data-label="Last commit">2 days ago</td>
|
|
22705
|
+
</tr>
|
|
22706
|
+
|
|
22707
|
+
<tr role="row">
|
|
22708
|
+
<td role="cell" data-label="Repository name">Repository 4</td>
|
|
22709
|
+
<td role="cell" data-label="Branches">10</td>
|
|
22710
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
22711
|
+
<td role="cell" data-label="Workspaces">5</td>
|
|
22712
|
+
<td role="cell" data-label="Last commit">2 days ago</td>
|
|
22713
|
+
</tr>
|
|
22714
|
+
</tbody>
|
|
22715
|
+
</table>
|
|
22716
|
+
|
|
22717
|
+
```
|
|
22718
|
+
|
|
22719
|
+
### Striped expandable table example
|
|
22720
|
+
|
|
22721
|
+
```html
|
|
22722
|
+
<table
|
|
22723
|
+
class="pf-c-table pf-m-expandable pf-m-grid-lg pf-m-striped"
|
|
22724
|
+
role="grid"
|
|
22725
|
+
aria-label="Striped expandable table example"
|
|
22726
|
+
id="table-striped-expandable"
|
|
22727
|
+
>
|
|
22728
|
+
<thead>
|
|
22729
|
+
<tr role="row">
|
|
22730
|
+
<td></td>
|
|
22731
|
+
<td class="pf-c-table__check" role="cell">
|
|
22732
|
+
<label>
|
|
22733
|
+
<input
|
|
22734
|
+
type="checkbox"
|
|
22735
|
+
name="table-striped-expandable-checkrowthead"
|
|
22736
|
+
aria-label="Select all rows"
|
|
22737
|
+
/>
|
|
22738
|
+
</label>
|
|
22739
|
+
</td>
|
|
22740
|
+
<th
|
|
22741
|
+
class="pf-m-width-30 pf-c-table__sort pf-m-selected"
|
|
22742
|
+
role="columnheader"
|
|
22743
|
+
aria-sort="ascending"
|
|
22744
|
+
scope="col"
|
|
22745
|
+
>
|
|
22746
|
+
<button class="pf-c-table__button">
|
|
22747
|
+
<div class="pf-c-table__button-content">
|
|
22748
|
+
<span class="pf-c-table__text">Repositories</span>
|
|
22749
|
+
<span class="pf-c-table__sort-indicator">
|
|
22750
|
+
<i class="fas fa-long-arrow-alt-up"></i>
|
|
22751
|
+
</span>
|
|
22752
|
+
</div>
|
|
22753
|
+
</button>
|
|
22754
|
+
</th>
|
|
22755
|
+
<th
|
|
22756
|
+
class="pf-c-table__sort"
|
|
22757
|
+
role="columnheader"
|
|
22758
|
+
aria-sort="none"
|
|
22759
|
+
scope="col"
|
|
22760
|
+
>
|
|
22761
|
+
<button class="pf-c-table__button">
|
|
22762
|
+
<div class="pf-c-table__button-content">
|
|
22763
|
+
<span class="pf-c-table__text">Branches</span>
|
|
22764
|
+
<span class="pf-c-table__sort-indicator">
|
|
22765
|
+
<i class="fas fa-arrows-alt-v"></i>
|
|
22766
|
+
</span>
|
|
22767
|
+
</div>
|
|
22768
|
+
</button>
|
|
22769
|
+
</th>
|
|
22770
|
+
<th
|
|
22771
|
+
class="pf-c-table__sort"
|
|
22772
|
+
role="columnheader"
|
|
22773
|
+
aria-sort="none"
|
|
22774
|
+
scope="col"
|
|
22775
|
+
>
|
|
22776
|
+
<button class="pf-c-table__button">
|
|
22777
|
+
<div class="pf-c-table__button-content">
|
|
22778
|
+
<span class="pf-c-table__text">Pull requests</span>
|
|
22779
|
+
<span class="pf-c-table__sort-indicator">
|
|
22780
|
+
<i class="fas fa-arrows-alt-v"></i>
|
|
22781
|
+
</span>
|
|
22782
|
+
</div>
|
|
22783
|
+
</button>
|
|
22784
|
+
</th>
|
|
22785
|
+
<td></td>
|
|
22786
|
+
<td></td>
|
|
22787
|
+
</tr>
|
|
22788
|
+
</thead>
|
|
22789
|
+
|
|
22790
|
+
<tbody class="pf-m-expanded" role="rowgroup">
|
|
22791
|
+
<tr role="row">
|
|
22792
|
+
<td class="pf-c-table__toggle" role="cell">
|
|
22793
|
+
<button
|
|
22794
|
+
class="pf-c-button pf-m-plain pf-m-expanded"
|
|
22795
|
+
aria-labelledby="table-striped-expandable-node1 table-striped-expandable-expandable-toggle1"
|
|
22796
|
+
id="table-striped-expandable-expandable-toggle1"
|
|
22797
|
+
aria-label="Details"
|
|
22798
|
+
aria-controls="table-striped-expandable-content1"
|
|
22799
|
+
aria-expanded="true"
|
|
22800
|
+
>
|
|
22801
|
+
<div class="pf-c-table__toggle-icon">
|
|
22802
|
+
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
22803
|
+
</div>
|
|
22804
|
+
</button>
|
|
22805
|
+
</td>
|
|
22806
|
+
|
|
22807
|
+
<td class="pf-c-table__check" role="cell">
|
|
22808
|
+
<label>
|
|
22809
|
+
<input
|
|
22810
|
+
type="checkbox"
|
|
22811
|
+
name="table-striped-expandable-checkrow1"
|
|
22812
|
+
aria-labelledby="table-striped-expandable-node1"
|
|
22813
|
+
/>
|
|
22814
|
+
</label>
|
|
22815
|
+
</td>
|
|
22816
|
+
<th role="columnheader" data-label="Data label name">
|
|
22817
|
+
<div id="table-striped-expandable-node1">Node 1</div>
|
|
22818
|
+
<a href="#">siemur/test-space</a>
|
|
22819
|
+
</th>
|
|
22820
|
+
<td role="cell" data-label="Branches">10</td>
|
|
22821
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
22822
|
+
<td role="cell" data-label="Action">
|
|
22823
|
+
<a href="#">Link 1</a>
|
|
22824
|
+
</td>
|
|
22825
|
+
<td class="pf-c-table__action" role="cell">
|
|
22826
|
+
<div class="pf-c-dropdown">
|
|
22827
|
+
<button
|
|
22828
|
+
class="pf-c-dropdown__toggle pf-m-plain"
|
|
22829
|
+
id="table-striped-expandable-dropdown-kebab-1-button"
|
|
22830
|
+
aria-expanded="false"
|
|
22831
|
+
type="button"
|
|
22832
|
+
aria-label="Actions"
|
|
22833
|
+
>
|
|
22834
|
+
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
22835
|
+
</button>
|
|
22836
|
+
<ul
|
|
22837
|
+
class="pf-c-dropdown__menu pf-m-align-right"
|
|
22838
|
+
aria-labelledby="table-striped-expandable-dropdown-kebab-1-button"
|
|
22839
|
+
hidden
|
|
22840
|
+
>
|
|
22841
|
+
<li>
|
|
22842
|
+
<a class="pf-c-dropdown__menu-item" href="#">Link</a>
|
|
22843
|
+
</li>
|
|
22844
|
+
<li>
|
|
22845
|
+
<button class="pf-c-dropdown__menu-item" type="button">Action</button>
|
|
22846
|
+
</li>
|
|
22847
|
+
<li>
|
|
22848
|
+
<a
|
|
22849
|
+
class="pf-c-dropdown__menu-item pf-m-disabled"
|
|
22850
|
+
href="#"
|
|
22851
|
+
aria-disabled="true"
|
|
22852
|
+
tabindex="-1"
|
|
22853
|
+
>Disabled link</a>
|
|
22854
|
+
</li>
|
|
22855
|
+
<li>
|
|
22856
|
+
<button
|
|
22857
|
+
class="pf-c-dropdown__menu-item"
|
|
22858
|
+
type="button"
|
|
22859
|
+
disabled
|
|
22860
|
+
>Disabled action</button>
|
|
22861
|
+
</li>
|
|
22862
|
+
<li class="pf-c-divider" role="separator"></li>
|
|
22863
|
+
<li>
|
|
22864
|
+
<a class="pf-c-dropdown__menu-item" href="#">Separated link</a>
|
|
22865
|
+
</li>
|
|
22866
|
+
</ul>
|
|
22867
|
+
</div>
|
|
22868
|
+
</td>
|
|
22869
|
+
</tr>
|
|
22870
|
+
|
|
22871
|
+
<tr class="pf-c-table__expandable-row pf-m-expanded" role="row">
|
|
22872
|
+
<td></td>
|
|
22873
|
+
<td></td>
|
|
22874
|
+
<td role="cell" colspan="4" id="table-striped-expandable-content1">
|
|
22875
|
+
<div
|
|
22876
|
+
class="pf-c-table__expandable-row-content"
|
|
22877
|
+
>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>
|
|
22878
|
+
</td>
|
|
22879
|
+
<td></td>
|
|
22880
|
+
</tr>
|
|
22881
|
+
</tbody>
|
|
22882
|
+
|
|
22883
|
+
<tbody role="rowgroup">
|
|
22884
|
+
<tr role="row">
|
|
22885
|
+
<td class="pf-c-table__toggle" role="cell">
|
|
22886
|
+
<button
|
|
22887
|
+
class="pf-c-button pf-m-plain"
|
|
22888
|
+
aria-labelledby="table-striped-expandable-node2 table-striped-expandable-expandable-toggle2"
|
|
22889
|
+
id="table-striped-expandable-expandable-toggle2"
|
|
22890
|
+
aria-label="Details"
|
|
22891
|
+
aria-controls="table-striped-expandable-content2"
|
|
22892
|
+
>
|
|
22893
|
+
<div class="pf-c-table__toggle-icon">
|
|
22894
|
+
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
22895
|
+
</div>
|
|
22896
|
+
</button>
|
|
22897
|
+
</td>
|
|
22898
|
+
|
|
22899
|
+
<td class="pf-c-table__check" role="cell">
|
|
22900
|
+
<label>
|
|
22901
|
+
<input
|
|
22902
|
+
type="checkbox"
|
|
22903
|
+
name="table-striped-expandable-checkrow2"
|
|
22904
|
+
aria-labelledby="table-striped-expandable-node2"
|
|
22905
|
+
/>
|
|
22906
|
+
</label>
|
|
22907
|
+
</td>
|
|
22908
|
+
<th role="columnheader" data-label="Data label name">
|
|
22909
|
+
<div id="table-striped-expandable-node2">Node 2</div>
|
|
22910
|
+
<a href="#">siemur/test-space</a>
|
|
22911
|
+
</th>
|
|
22912
|
+
<td role="cell" data-label="Branches">10</td>
|
|
22913
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
22914
|
+
<td role="cell" data-label="Action">
|
|
22915
|
+
<a href="#">Link 2</a>
|
|
22916
|
+
</td>
|
|
22917
|
+
<td class="pf-c-table__action" role="cell">
|
|
22918
|
+
<div class="pf-c-dropdown">
|
|
22919
|
+
<button
|
|
22920
|
+
class="pf-c-dropdown__toggle pf-m-plain"
|
|
22921
|
+
id="table-striped-expandable-dropdown-kebab-2-button"
|
|
22922
|
+
aria-expanded="false"
|
|
22923
|
+
type="button"
|
|
22924
|
+
aria-label="Actions"
|
|
22925
|
+
>
|
|
22926
|
+
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
22927
|
+
</button>
|
|
22928
|
+
<ul
|
|
22929
|
+
class="pf-c-dropdown__menu pf-m-align-right"
|
|
22930
|
+
aria-labelledby="table-striped-expandable-dropdown-kebab-2-button"
|
|
22931
|
+
hidden
|
|
22932
|
+
>
|
|
22933
|
+
<li>
|
|
22934
|
+
<a class="pf-c-dropdown__menu-item" href="#">Link</a>
|
|
22935
|
+
</li>
|
|
22936
|
+
<li>
|
|
22937
|
+
<button class="pf-c-dropdown__menu-item" type="button">Action</button>
|
|
22938
|
+
</li>
|
|
22939
|
+
<li>
|
|
22940
|
+
<a
|
|
22941
|
+
class="pf-c-dropdown__menu-item pf-m-disabled"
|
|
22942
|
+
href="#"
|
|
22943
|
+
aria-disabled="true"
|
|
22944
|
+
tabindex="-1"
|
|
22945
|
+
>Disabled link</a>
|
|
22946
|
+
</li>
|
|
22947
|
+
<li>
|
|
22948
|
+
<button
|
|
22949
|
+
class="pf-c-dropdown__menu-item"
|
|
22950
|
+
type="button"
|
|
22951
|
+
disabled
|
|
22952
|
+
>Disabled action</button>
|
|
22953
|
+
</li>
|
|
22954
|
+
<li class="pf-c-divider" role="separator"></li>
|
|
22955
|
+
<li>
|
|
22956
|
+
<a class="pf-c-dropdown__menu-item" href="#">Separated link</a>
|
|
22957
|
+
</li>
|
|
22958
|
+
</ul>
|
|
22959
|
+
</div>
|
|
22960
|
+
</td>
|
|
22961
|
+
</tr>
|
|
22962
|
+
|
|
22963
|
+
<tr class="pf-c-table__expandable-row" role="row">
|
|
22964
|
+
<td role="cell" colspan="7" id="table-striped-expandable-content2">
|
|
22965
|
+
<div
|
|
22966
|
+
class="pf-c-table__expandable-row-content"
|
|
22967
|
+
>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>
|
|
22968
|
+
</td>
|
|
22969
|
+
</tr>
|
|
22970
|
+
</tbody>
|
|
22971
|
+
|
|
22972
|
+
<tbody class="pf-m-expanded" role="rowgroup">
|
|
22973
|
+
<tr role="row">
|
|
22974
|
+
<td class="pf-c-table__toggle" role="cell">
|
|
22975
|
+
<button
|
|
22976
|
+
class="pf-c-button pf-m-plain pf-m-expanded"
|
|
22977
|
+
aria-labelledby="table-striped-expandable-node3 table-striped-expandable-expandable-toggle3"
|
|
22978
|
+
id="table-striped-expandable-expandable-toggle3"
|
|
22979
|
+
aria-label="Details"
|
|
22980
|
+
aria-controls="table-striped-expandable-content3"
|
|
22981
|
+
aria-expanded="true"
|
|
22982
|
+
>
|
|
22983
|
+
<div class="pf-c-table__toggle-icon">
|
|
22984
|
+
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
22985
|
+
</div>
|
|
22986
|
+
</button>
|
|
22987
|
+
</td>
|
|
22988
|
+
|
|
22989
|
+
<td class="pf-c-table__check" role="cell">
|
|
22990
|
+
<label>
|
|
22991
|
+
<input
|
|
22992
|
+
type="checkbox"
|
|
22993
|
+
name="table-striped-expandable-checkrow3"
|
|
22994
|
+
aria-labelledby="table-striped-expandable-node3"
|
|
22995
|
+
/>
|
|
22996
|
+
</label>
|
|
22997
|
+
</td>
|
|
22998
|
+
<th role="columnheader" data-label="Data label name">
|
|
22999
|
+
<div id="table-striped-expandable-node3">Node 3</div>
|
|
23000
|
+
<a href="#">siemur/test-space</a>
|
|
23001
|
+
</th>
|
|
23002
|
+
<td role="cell" data-label="Branches">10</td>
|
|
23003
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
23004
|
+
<td role="cell" data-label="Action">
|
|
23005
|
+
<a href="#">Link 3</a>
|
|
23006
|
+
</td>
|
|
23007
|
+
<td class="pf-c-table__action" role="cell">
|
|
23008
|
+
<div class="pf-c-dropdown">
|
|
23009
|
+
<button
|
|
23010
|
+
class="pf-c-dropdown__toggle pf-m-plain"
|
|
23011
|
+
id="table-striped-expandable-dropdown-kebab-3-button"
|
|
23012
|
+
aria-expanded="false"
|
|
23013
|
+
type="button"
|
|
23014
|
+
aria-label="Actions"
|
|
23015
|
+
>
|
|
23016
|
+
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
23017
|
+
</button>
|
|
23018
|
+
<ul
|
|
23019
|
+
class="pf-c-dropdown__menu pf-m-align-right"
|
|
23020
|
+
aria-labelledby="table-striped-expandable-dropdown-kebab-3-button"
|
|
23021
|
+
hidden
|
|
23022
|
+
>
|
|
23023
|
+
<li>
|
|
23024
|
+
<a class="pf-c-dropdown__menu-item" href="#">Link</a>
|
|
23025
|
+
</li>
|
|
23026
|
+
<li>
|
|
23027
|
+
<button class="pf-c-dropdown__menu-item" type="button">Action</button>
|
|
23028
|
+
</li>
|
|
23029
|
+
<li>
|
|
23030
|
+
<a
|
|
23031
|
+
class="pf-c-dropdown__menu-item pf-m-disabled"
|
|
23032
|
+
href="#"
|
|
23033
|
+
aria-disabled="true"
|
|
23034
|
+
tabindex="-1"
|
|
23035
|
+
>Disabled link</a>
|
|
23036
|
+
</li>
|
|
23037
|
+
<li>
|
|
23038
|
+
<button
|
|
23039
|
+
class="pf-c-dropdown__menu-item"
|
|
23040
|
+
type="button"
|
|
23041
|
+
disabled
|
|
23042
|
+
>Disabled action</button>
|
|
23043
|
+
</li>
|
|
23044
|
+
<li class="pf-c-divider" role="separator"></li>
|
|
23045
|
+
<li>
|
|
23046
|
+
<a class="pf-c-dropdown__menu-item" href="#">Separated link</a>
|
|
23047
|
+
</li>
|
|
23048
|
+
</ul>
|
|
23049
|
+
</div>
|
|
23050
|
+
</td>
|
|
23051
|
+
</tr>
|
|
23052
|
+
|
|
23053
|
+
<tr class="pf-c-table__expandable-row pf-m-expanded" role="row">
|
|
23054
|
+
<td role="cell" colspan="7" id="table-striped-expandable-content3">
|
|
23055
|
+
<div
|
|
23056
|
+
class="pf-c-table__expandable-row-content"
|
|
23057
|
+
>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>
|
|
23058
|
+
</td>
|
|
23059
|
+
</tr>
|
|
23060
|
+
</tbody>
|
|
23061
|
+
|
|
23062
|
+
<tbody class="pf-m-expanded" role="rowgroup">
|
|
23063
|
+
<tr role="row">
|
|
23064
|
+
<td class="pf-c-table__toggle" role="cell">
|
|
23065
|
+
<button
|
|
23066
|
+
class="pf-c-button pf-m-plain pf-m-expanded"
|
|
23067
|
+
aria-labelledby="table-striped-expandable-node4 table-striped-expandable-expandable-toggle4"
|
|
23068
|
+
id="table-striped-expandable-expandable-toggle4"
|
|
23069
|
+
aria-label="Details"
|
|
23070
|
+
aria-controls="table-striped-expandable-content4"
|
|
23071
|
+
aria-expanded="true"
|
|
23072
|
+
>
|
|
23073
|
+
<div class="pf-c-table__toggle-icon">
|
|
23074
|
+
<i class="fas fa-angle-down" aria-hidden="true"></i>
|
|
23075
|
+
</div>
|
|
23076
|
+
</button>
|
|
23077
|
+
</td>
|
|
23078
|
+
|
|
23079
|
+
<td class="pf-c-table__check" role="cell">
|
|
23080
|
+
<label>
|
|
23081
|
+
<input
|
|
23082
|
+
type="checkbox"
|
|
23083
|
+
name="table-striped-expandable-checkrow4"
|
|
23084
|
+
aria-labelledby="table-striped-expandable-node4"
|
|
23085
|
+
/>
|
|
23086
|
+
</label>
|
|
23087
|
+
</td>
|
|
23088
|
+
<th role="columnheader" data-label="Data label name">
|
|
23089
|
+
<div id="table-striped-expandable-node4">Node 4</div>
|
|
23090
|
+
<a href="#">siemur/test-space</a>
|
|
23091
|
+
</th>
|
|
23092
|
+
<td role="cell" data-label="Branches">10</td>
|
|
23093
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
23094
|
+
<td role="cell" data-label="Action">
|
|
23095
|
+
<a href="#">Link 4</a>
|
|
23096
|
+
</td>
|
|
23097
|
+
<td class="pf-c-table__action" role="cell">
|
|
23098
|
+
<div class="pf-c-dropdown">
|
|
23099
|
+
<button
|
|
23100
|
+
class="pf-c-dropdown__toggle pf-m-plain"
|
|
23101
|
+
id="table-striped-expandable-dropdown-kebab-4-button"
|
|
23102
|
+
aria-expanded="false"
|
|
23103
|
+
type="button"
|
|
23104
|
+
aria-label="Actions"
|
|
23105
|
+
>
|
|
23106
|
+
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
23107
|
+
</button>
|
|
23108
|
+
<ul
|
|
23109
|
+
class="pf-c-dropdown__menu pf-m-align-right"
|
|
23110
|
+
aria-labelledby="table-striped-expandable-dropdown-kebab-4-button"
|
|
23111
|
+
hidden
|
|
23112
|
+
>
|
|
23113
|
+
<li>
|
|
23114
|
+
<a class="pf-c-dropdown__menu-item" href="#">Link</a>
|
|
23115
|
+
</li>
|
|
23116
|
+
<li>
|
|
23117
|
+
<button class="pf-c-dropdown__menu-item" type="button">Action</button>
|
|
23118
|
+
</li>
|
|
23119
|
+
<li>
|
|
23120
|
+
<a
|
|
23121
|
+
class="pf-c-dropdown__menu-item pf-m-disabled"
|
|
23122
|
+
href="#"
|
|
23123
|
+
aria-disabled="true"
|
|
23124
|
+
tabindex="-1"
|
|
23125
|
+
>Disabled link</a>
|
|
23126
|
+
</li>
|
|
23127
|
+
<li>
|
|
23128
|
+
<button
|
|
23129
|
+
class="pf-c-dropdown__menu-item"
|
|
23130
|
+
type="button"
|
|
23131
|
+
disabled
|
|
23132
|
+
>Disabled action</button>
|
|
23133
|
+
</li>
|
|
23134
|
+
<li class="pf-c-divider" role="separator"></li>
|
|
23135
|
+
<li>
|
|
23136
|
+
<a class="pf-c-dropdown__menu-item" href="#">Separated link</a>
|
|
23137
|
+
</li>
|
|
23138
|
+
</ul>
|
|
23139
|
+
</div>
|
|
23140
|
+
</td>
|
|
23141
|
+
</tr>
|
|
23142
|
+
|
|
23143
|
+
<tr class="pf-c-table__expandable-row pf-m-expanded" role="row">
|
|
23144
|
+
<td
|
|
23145
|
+
class="pf-m-no-padding"
|
|
23146
|
+
role="cell"
|
|
23147
|
+
colspan="7"
|
|
23148
|
+
id="table-striped-expandable-content4"
|
|
23149
|
+
>
|
|
23150
|
+
<div
|
|
23151
|
+
class="pf-c-table__expandable-row-content"
|
|
23152
|
+
>Expandable row content has no padding.</div>
|
|
23153
|
+
</td>
|
|
23154
|
+
</tr>
|
|
23155
|
+
</tbody>
|
|
23156
|
+
</table>
|
|
23157
|
+
|
|
23158
|
+
```
|
|
23159
|
+
|
|
23160
|
+
### Striped multiple tbody example
|
|
23161
|
+
|
|
23162
|
+
```html
|
|
23163
|
+
<table
|
|
23164
|
+
class="pf-c-table pf-m-grid-md"
|
|
23165
|
+
role="grid"
|
|
23166
|
+
aria-label="This is a striped tbody example"
|
|
23167
|
+
id="table-striped-tbody"
|
|
23168
|
+
>
|
|
23169
|
+
<caption>This is the table caption</caption>
|
|
23170
|
+
<thead>
|
|
23171
|
+
<tr role="row">
|
|
23172
|
+
<th role="columnheader" scope="col">Repositories</th>
|
|
23173
|
+
<th role="columnheader" scope="col">Branches</th>
|
|
23174
|
+
<th role="columnheader" scope="col">Pull requests</th>
|
|
23175
|
+
<th role="columnheader" scope="col">Workspaces</th>
|
|
23176
|
+
<th role="columnheader" scope="col">Last commit</th>
|
|
23177
|
+
</tr>
|
|
23178
|
+
</thead>
|
|
23179
|
+
|
|
23180
|
+
<tbody class="pf-m-striped" role="rowgroup">
|
|
23181
|
+
<tr role="row">
|
|
23182
|
+
<td role="cell" data-label="Repository name">
|
|
23183
|
+
tbody 1 - Repository 1
|
|
23184
|
+
<br />
|
|
23185
|
+
<small>(odd rows striped)</small>
|
|
23186
|
+
</td>
|
|
23187
|
+
<td role="cell" data-label="Branches">10</td>
|
|
23188
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
23189
|
+
<td role="cell" data-label="Workspaces">5</td>
|
|
23190
|
+
<td role="cell" data-label="Last commit">2 days ago</td>
|
|
23191
|
+
</tr>
|
|
23192
|
+
|
|
23193
|
+
<tr role="row">
|
|
23194
|
+
<td role="cell" data-label="Repository name">tbody 1 - Repository 2</td>
|
|
23195
|
+
<td role="cell" data-label="Branches">10</td>
|
|
23196
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
23197
|
+
<td role="cell" data-label="Workspaces">5</td>
|
|
23198
|
+
<td role="cell" data-label="Last commit">2 days ago</td>
|
|
23199
|
+
</tr>
|
|
23200
|
+
|
|
23201
|
+
<tr role="row">
|
|
23202
|
+
<td role="cell" data-label="Repository name">
|
|
23203
|
+
tbody 1 - Repository 3
|
|
23204
|
+
<br />
|
|
23205
|
+
<small>(odd rows striped)</small>
|
|
23206
|
+
</td>
|
|
23207
|
+
<td role="cell" data-label="Branches">10</td>
|
|
23208
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
23209
|
+
<td role="cell" data-label="Workspaces">5</td>
|
|
23210
|
+
<td role="cell" data-label="Last commit">2 days ago</td>
|
|
23211
|
+
</tr>
|
|
23212
|
+
</tbody>
|
|
23213
|
+
|
|
23214
|
+
<tbody class="pf-m-striped-even" role="rowgroup">
|
|
23215
|
+
<tr role="row">
|
|
23216
|
+
<td role="cell" data-label="Repository name">tbody 2 - Repository 4</td>
|
|
23217
|
+
<td role="cell" data-label="Branches">10</td>
|
|
23218
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
23219
|
+
<td role="cell" data-label="Workspaces">5</td>
|
|
23220
|
+
<td role="cell" data-label="Last commit">2 days ago</td>
|
|
23221
|
+
</tr>
|
|
23222
|
+
|
|
23223
|
+
<tr role="row">
|
|
23224
|
+
<td role="cell" data-label="Repository name">
|
|
23225
|
+
tbody 2 - Repository 5
|
|
23226
|
+
<br />
|
|
23227
|
+
<small>(even rows striped using `.pf-m-striped-even`)</small>
|
|
23228
|
+
</td>
|
|
23229
|
+
<td role="cell" data-label="Branches">10</td>
|
|
23230
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
23231
|
+
<td role="cell" data-label="Workspaces">5</td>
|
|
23232
|
+
<td role="cell" data-label="Last commit">2 days ago</td>
|
|
23233
|
+
</tr>
|
|
23234
|
+
|
|
23235
|
+
<tr role="row">
|
|
23236
|
+
<td role="cell" data-label="Repository name">tbody 2 - Repository 6</td>
|
|
23237
|
+
<td role="cell" data-label="Branches">10</td>
|
|
23238
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
23239
|
+
<td role="cell" data-label="Workspaces">5</td>
|
|
23240
|
+
<td role="cell" data-label="Last commit">2 days ago</td>
|
|
23241
|
+
</tr>
|
|
23242
|
+
|
|
23243
|
+
<tr role="row">
|
|
23244
|
+
<td role="cell" data-label="Repository name">
|
|
23245
|
+
tbody 2 - Repository 7
|
|
23246
|
+
<br />
|
|
23247
|
+
<small>(even rows striped using `.pf-m-striped-even`)</small>
|
|
23248
|
+
</td>
|
|
23249
|
+
<td role="cell" data-label="Branches">10</td>
|
|
23250
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
23251
|
+
<td role="cell" data-label="Workspaces">5</td>
|
|
23252
|
+
<td role="cell" data-label="Last commit">2 days ago</td>
|
|
23253
|
+
</tr>
|
|
23254
|
+
</tbody>
|
|
23255
|
+
</table>
|
|
23256
|
+
|
|
23257
|
+
```
|
|
23258
|
+
|
|
23259
|
+
### Striped tr example
|
|
23260
|
+
|
|
23261
|
+
```html
|
|
23262
|
+
<table
|
|
23263
|
+
class="pf-c-table pf-m-grid-md pf-m-striped"
|
|
23264
|
+
role="grid"
|
|
23265
|
+
aria-label="This is a striped tr example"
|
|
23266
|
+
id="table-striped-tr"
|
|
23267
|
+
>
|
|
23268
|
+
<caption>This is the table caption</caption>
|
|
23269
|
+
<thead>
|
|
23270
|
+
<tr role="row">
|
|
23271
|
+
<th role="columnheader" scope="col">Repositories</th>
|
|
23272
|
+
<th role="columnheader" scope="col">Branches</th>
|
|
23273
|
+
<th role="columnheader" scope="col">Pull requests</th>
|
|
23274
|
+
<th role="columnheader" scope="col">Workspaces</th>
|
|
23275
|
+
<th role="columnheader" scope="col">Last commit</th>
|
|
23276
|
+
</tr>
|
|
23277
|
+
</thead>
|
|
23278
|
+
|
|
23279
|
+
<tbody role="rowgroup">
|
|
23280
|
+
<tr class="pf-m-striped" role="row">
|
|
23281
|
+
<td role="cell" data-label="Repository name">Repository 1</td>
|
|
23282
|
+
<td role="cell" data-label="Branches">10</td>
|
|
23283
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
23284
|
+
<td role="cell" data-label="Workspaces">5</td>
|
|
23285
|
+
<td role="cell" data-label="Last commit">2 days ago</td>
|
|
23286
|
+
</tr>
|
|
23287
|
+
|
|
23288
|
+
<tr role="row">
|
|
23289
|
+
<td role="cell" data-label="Repository name">Repository 2</td>
|
|
23290
|
+
<td role="cell" data-label="Branches">10</td>
|
|
23291
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
23292
|
+
<td role="cell" data-label="Workspaces">5</td>
|
|
23293
|
+
<td role="cell" data-label="Last commit">2 days ago</td>
|
|
23294
|
+
</tr>
|
|
23295
|
+
|
|
23296
|
+
<tr class="pf-m-striped" role="row">
|
|
23297
|
+
<td role="cell" data-label="Repository name">Repository 3</td>
|
|
23298
|
+
<td role="cell" data-label="Branches">10</td>
|
|
23299
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
23300
|
+
<td role="cell" data-label="Workspaces">5</td>
|
|
23301
|
+
<td role="cell" data-label="Last commit">2 days ago</td>
|
|
23302
|
+
</tr>
|
|
23303
|
+
|
|
23304
|
+
<tr role="row">
|
|
23305
|
+
<td role="cell" data-label="Repository name">Repository 4</td>
|
|
23306
|
+
<td role="cell" data-label="Branches">10</td>
|
|
23307
|
+
<td role="cell" data-label="Pull requests">25</td>
|
|
23308
|
+
<td role="cell" data-label="Workspaces">5</td>
|
|
23309
|
+
<td role="cell" data-label="Last commit">2 days ago</td>
|
|
23310
|
+
</tr>
|
|
23311
|
+
</tbody>
|
|
23312
|
+
</table>
|
|
23313
|
+
|
|
23314
|
+
```
|
|
23315
|
+
|
|
23316
|
+
### Striped table usage
|
|
23317
|
+
|
|
23318
|
+
| Class | Applied to | Outcome |
|
|
23319
|
+
| -------------------- | ---------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
23320
|
+
| `.pf-m-striped` | `.pf-c-table`, `tbody`, `tr` | Modifies odd table rows to be striped. |
|
|
23321
|
+
| `.pf-m-striped-even` | `tbody` | Modifies even table rows to be striped. For use in tables with multiple `tbody` elements where adjacent `tbody` elements need even row striping to maintain visual consistency. |
|
|
23322
|
+
|
|
22665
23323
|
## Documentation
|
|
22666
23324
|
|
|
22667
23325
|
### Overview
|