@patternfly/patternfly 5.0.0-alpha.10 → 5.0.0-alpha.11
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/ChipGroup/chip-group.css +1 -3
- package/components/ChipGroup/chip-group.scss +1 -4
- package/components/Popover/popover.css +1 -1
- package/components/Popover/themes/dark/popover.scss +1 -1
- package/components/Tooltip/themes/dark/tooltip.scss +1 -8
- package/components/Tooltip/tooltip.css +7 -9
- package/components/Tooltip/tooltip.scss +6 -3
- package/docs/components/Check/examples/Check.md +2 -6
- package/docs/components/ChipGroup/examples/ChipGroup.md +10 -339
- package/docs/components/DataList/examples/DataList.md +104 -65
- package/docs/components/Dropdown/examples/Dropdown.md +73 -49
- package/docs/components/LabelGroup/examples/LabelGroup.md +2 -14
- package/docs/components/Menu/examples/Menu.md +1 -1
- package/docs/components/MenuToggle/examples/MenuToggle.md +4 -4
- package/docs/components/Table/examples/Table.md +1117 -700
- package/docs/components/Toolbar/examples/Toolbar.md +48 -30
- package/docs/demos/CardView/examples/CardView.md +8 -5
- package/docs/demos/DataList/examples/DataList.md +136 -85
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +8 -5
- package/docs/demos/Table/examples/Table.md +421 -265
- package/docs/demos/Tabs/examples/Tabs.md +48 -30
- package/docs/demos/Toolbar/examples/Toolbar.md +80 -50
- package/package.json +1 -1
- package/patternfly-no-reset.css +9 -13
- package/patternfly.css +9 -13
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -4465,11 +4465,14 @@ section: components
|
|
|
4465
4465
|
<thead>
|
|
4466
4466
|
<tr role="row">
|
|
4467
4467
|
<td class="pf-c-table__check" role="cell">
|
|
4468
|
-
<
|
|
4469
|
-
|
|
4470
|
-
|
|
4471
|
-
|
|
4472
|
-
|
|
4468
|
+
<div class="pf-c-check pf-m-standalone">
|
|
4469
|
+
<input
|
|
4470
|
+
class="pf-c-check__input"
|
|
4471
|
+
type="checkbox"
|
|
4472
|
+
name="check-all"
|
|
4473
|
+
aria-label="Select all rows"
|
|
4474
|
+
/>
|
|
4475
|
+
</div>
|
|
4473
4476
|
</td>
|
|
4474
4477
|
<th role="columnheader" scope="col">Repositories</th>
|
|
4475
4478
|
<th role="columnheader" scope="col">Branches</th>
|
|
@@ -4483,11 +4486,14 @@ section: components
|
|
|
4483
4486
|
<tbody role="rowgroup">
|
|
4484
4487
|
<tr role="row">
|
|
4485
4488
|
<td class="pf-c-table__check" role="cell">
|
|
4486
|
-
<
|
|
4487
|
-
|
|
4488
|
-
|
|
4489
|
-
|
|
4490
|
-
|
|
4489
|
+
<div class="pf-c-check pf-m-standalone">
|
|
4490
|
+
<input
|
|
4491
|
+
class="pf-c-check__input"
|
|
4492
|
+
type="checkbox"
|
|
4493
|
+
name="checkrow1"
|
|
4494
|
+
aria-labelledby="table-tabs-example-table-node1"
|
|
4495
|
+
/>
|
|
4496
|
+
</div>
|
|
4491
4497
|
</td>
|
|
4492
4498
|
<th role="columnheader" data-label="Repository name">
|
|
4493
4499
|
<div>
|
|
@@ -4555,11 +4561,14 @@ section: components
|
|
|
4555
4561
|
|
|
4556
4562
|
<tr class="pf-m-selected" role="row">
|
|
4557
4563
|
<td class="pf-c-table__check" role="cell">
|
|
4558
|
-
<
|
|
4559
|
-
|
|
4560
|
-
|
|
4561
|
-
|
|
4562
|
-
|
|
4564
|
+
<div class="pf-c-check pf-m-standalone">
|
|
4565
|
+
<input
|
|
4566
|
+
class="pf-c-check__input"
|
|
4567
|
+
type="checkbox"
|
|
4568
|
+
name="checkrow2"
|
|
4569
|
+
aria-labelledby="table-tabs-example-table-node2"
|
|
4570
|
+
/>
|
|
4571
|
+
</div>
|
|
4563
4572
|
</td>
|
|
4564
4573
|
<th role="columnheader" data-label="Repository name">
|
|
4565
4574
|
<div>
|
|
@@ -4627,11 +4636,14 @@ section: components
|
|
|
4627
4636
|
|
|
4628
4637
|
<tr role="row">
|
|
4629
4638
|
<td class="pf-c-table__check" role="cell">
|
|
4630
|
-
<
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4639
|
+
<div class="pf-c-check pf-m-standalone">
|
|
4640
|
+
<input
|
|
4641
|
+
class="pf-c-check__input"
|
|
4642
|
+
type="checkbox"
|
|
4643
|
+
name="checkrow3"
|
|
4644
|
+
aria-labelledby="table-tabs-example-table-node3"
|
|
4645
|
+
/>
|
|
4646
|
+
</div>
|
|
4635
4647
|
</td>
|
|
4636
4648
|
<th role="columnheader" data-label="Repository name">
|
|
4637
4649
|
<div>
|
|
@@ -4699,11 +4711,14 @@ section: components
|
|
|
4699
4711
|
|
|
4700
4712
|
<tr role="row">
|
|
4701
4713
|
<td class="pf-c-table__check" role="cell">
|
|
4702
|
-
<
|
|
4703
|
-
|
|
4704
|
-
|
|
4705
|
-
|
|
4706
|
-
|
|
4714
|
+
<div class="pf-c-check pf-m-standalone">
|
|
4715
|
+
<input
|
|
4716
|
+
class="pf-c-check__input"
|
|
4717
|
+
type="checkbox"
|
|
4718
|
+
name="checkrow4"
|
|
4719
|
+
aria-labelledby="table-tabs-example-table-node4"
|
|
4720
|
+
/>
|
|
4721
|
+
</div>
|
|
4707
4722
|
</td>
|
|
4708
4723
|
<th role="columnheader" data-label="Repository name">
|
|
4709
4724
|
<div>
|
|
@@ -4771,11 +4786,14 @@ section: components
|
|
|
4771
4786
|
|
|
4772
4787
|
<tr role="row">
|
|
4773
4788
|
<td class="pf-c-table__check" role="cell">
|
|
4774
|
-
<
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
|
|
4778
|
-
|
|
4789
|
+
<div class="pf-c-check pf-m-standalone">
|
|
4790
|
+
<input
|
|
4791
|
+
class="pf-c-check__input"
|
|
4792
|
+
type="checkbox"
|
|
4793
|
+
name="checkrow5"
|
|
4794
|
+
aria-labelledby="table-tabs-example-table-node5"
|
|
4795
|
+
/>
|
|
4796
|
+
</div>
|
|
4779
4797
|
</td>
|
|
4780
4798
|
<td role="cell" data-label="Repository name">
|
|
4781
4799
|
<div>
|
|
@@ -1387,11 +1387,14 @@ section: components
|
|
|
1387
1387
|
<tbody role="rowgroup">
|
|
1388
1388
|
<tr role="row">
|
|
1389
1389
|
<td class="pf-c-table__check" role="cell">
|
|
1390
|
-
<
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1390
|
+
<div class="pf-c-check pf-m-standalone">
|
|
1391
|
+
<input
|
|
1392
|
+
class="pf-c-check__input"
|
|
1393
|
+
type="checkbox"
|
|
1394
|
+
name="checkrow1"
|
|
1395
|
+
aria-labelledby="-table-table-node1"
|
|
1396
|
+
/>
|
|
1397
|
+
</div>
|
|
1395
1398
|
</td>
|
|
1396
1399
|
<th role="columnheader" data-label="Repository name">
|
|
1397
1400
|
<div>
|
|
@@ -1472,11 +1475,14 @@ section: components
|
|
|
1472
1475
|
|
|
1473
1476
|
<tr role="row">
|
|
1474
1477
|
<td class="pf-c-table__check" role="cell">
|
|
1475
|
-
<
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1478
|
+
<div class="pf-c-check pf-m-standalone">
|
|
1479
|
+
<input
|
|
1480
|
+
class="pf-c-check__input"
|
|
1481
|
+
type="checkbox"
|
|
1482
|
+
name="checkrow2"
|
|
1483
|
+
aria-labelledby="-table-table-node2"
|
|
1484
|
+
/>
|
|
1485
|
+
</div>
|
|
1480
1486
|
</td>
|
|
1481
1487
|
<th role="columnheader" data-label="Repository name">
|
|
1482
1488
|
<div>
|
|
@@ -1557,11 +1563,14 @@ section: components
|
|
|
1557
1563
|
|
|
1558
1564
|
<tr role="row">
|
|
1559
1565
|
<td class="pf-c-table__check" role="cell">
|
|
1560
|
-
<
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1566
|
+
<div class="pf-c-check pf-m-standalone">
|
|
1567
|
+
<input
|
|
1568
|
+
class="pf-c-check__input"
|
|
1569
|
+
type="checkbox"
|
|
1570
|
+
name="checkrow3"
|
|
1571
|
+
aria-labelledby="-table-table-node3"
|
|
1572
|
+
/>
|
|
1573
|
+
</div>
|
|
1565
1574
|
</td>
|
|
1566
1575
|
<th role="columnheader" data-label="Repository name">
|
|
1567
1576
|
<div>
|
|
@@ -1642,11 +1651,14 @@ section: components
|
|
|
1642
1651
|
|
|
1643
1652
|
<tr role="row">
|
|
1644
1653
|
<td class="pf-c-table__check" role="cell">
|
|
1645
|
-
<
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1654
|
+
<div class="pf-c-check pf-m-standalone">
|
|
1655
|
+
<input
|
|
1656
|
+
class="pf-c-check__input"
|
|
1657
|
+
type="checkbox"
|
|
1658
|
+
name="checkrow4"
|
|
1659
|
+
aria-labelledby="-table-table-node4"
|
|
1660
|
+
/>
|
|
1661
|
+
</div>
|
|
1650
1662
|
</td>
|
|
1651
1663
|
<th role="columnheader" data-label="Repository name">
|
|
1652
1664
|
<div>
|
|
@@ -1727,11 +1739,14 @@ section: components
|
|
|
1727
1739
|
|
|
1728
1740
|
<tr role="row">
|
|
1729
1741
|
<td class="pf-c-table__check" role="cell">
|
|
1730
|
-
<
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1742
|
+
<div class="pf-c-check pf-m-standalone">
|
|
1743
|
+
<input
|
|
1744
|
+
class="pf-c-check__input"
|
|
1745
|
+
type="checkbox"
|
|
1746
|
+
name="checkrow5"
|
|
1747
|
+
aria-labelledby="-table-table-node5"
|
|
1748
|
+
/>
|
|
1749
|
+
</div>
|
|
1735
1750
|
</td>
|
|
1736
1751
|
<td role="cell" data-label="Repository name">
|
|
1737
1752
|
<div>
|
|
@@ -4480,11 +4495,14 @@ section: components
|
|
|
4480
4495
|
<tbody role="rowgroup">
|
|
4481
4496
|
<tr role="row">
|
|
4482
4497
|
<td class="pf-c-table__check" role="cell">
|
|
4483
|
-
<
|
|
4484
|
-
|
|
4485
|
-
|
|
4486
|
-
|
|
4487
|
-
|
|
4498
|
+
<div class="pf-c-check pf-m-standalone">
|
|
4499
|
+
<input
|
|
4500
|
+
class="pf-c-check__input"
|
|
4501
|
+
type="checkbox"
|
|
4502
|
+
name="checkrow1"
|
|
4503
|
+
aria-labelledby="toolbar-and-table-static-search-overflow-menu-collapsed-table-node1"
|
|
4504
|
+
/>
|
|
4505
|
+
</div>
|
|
4488
4506
|
</td>
|
|
4489
4507
|
<th role="columnheader" data-label="Repository name">
|
|
4490
4508
|
<div>
|
|
@@ -4567,11 +4585,14 @@ section: components
|
|
|
4567
4585
|
|
|
4568
4586
|
<tr role="row">
|
|
4569
4587
|
<td class="pf-c-table__check" role="cell">
|
|
4570
|
-
<
|
|
4571
|
-
|
|
4572
|
-
|
|
4573
|
-
|
|
4574
|
-
|
|
4588
|
+
<div class="pf-c-check pf-m-standalone">
|
|
4589
|
+
<input
|
|
4590
|
+
class="pf-c-check__input"
|
|
4591
|
+
type="checkbox"
|
|
4592
|
+
name="checkrow2"
|
|
4593
|
+
aria-labelledby="toolbar-and-table-static-search-overflow-menu-collapsed-table-node2"
|
|
4594
|
+
/>
|
|
4595
|
+
</div>
|
|
4575
4596
|
</td>
|
|
4576
4597
|
<th role="columnheader" data-label="Repository name">
|
|
4577
4598
|
<div>
|
|
@@ -4654,11 +4675,14 @@ section: components
|
|
|
4654
4675
|
|
|
4655
4676
|
<tr role="row">
|
|
4656
4677
|
<td class="pf-c-table__check" role="cell">
|
|
4657
|
-
<
|
|
4658
|
-
|
|
4659
|
-
|
|
4660
|
-
|
|
4661
|
-
|
|
4678
|
+
<div class="pf-c-check pf-m-standalone">
|
|
4679
|
+
<input
|
|
4680
|
+
class="pf-c-check__input"
|
|
4681
|
+
type="checkbox"
|
|
4682
|
+
name="checkrow3"
|
|
4683
|
+
aria-labelledby="toolbar-and-table-static-search-overflow-menu-collapsed-table-node3"
|
|
4684
|
+
/>
|
|
4685
|
+
</div>
|
|
4662
4686
|
</td>
|
|
4663
4687
|
<th role="columnheader" data-label="Repository name">
|
|
4664
4688
|
<div>
|
|
@@ -4741,11 +4765,14 @@ section: components
|
|
|
4741
4765
|
|
|
4742
4766
|
<tr role="row">
|
|
4743
4767
|
<td class="pf-c-table__check" role="cell">
|
|
4744
|
-
<
|
|
4745
|
-
|
|
4746
|
-
|
|
4747
|
-
|
|
4748
|
-
|
|
4768
|
+
<div class="pf-c-check pf-m-standalone">
|
|
4769
|
+
<input
|
|
4770
|
+
class="pf-c-check__input"
|
|
4771
|
+
type="checkbox"
|
|
4772
|
+
name="checkrow4"
|
|
4773
|
+
aria-labelledby="toolbar-and-table-static-search-overflow-menu-collapsed-table-node4"
|
|
4774
|
+
/>
|
|
4775
|
+
</div>
|
|
4749
4776
|
</td>
|
|
4750
4777
|
<th role="columnheader" data-label="Repository name">
|
|
4751
4778
|
<div>
|
|
@@ -4828,11 +4855,14 @@ section: components
|
|
|
4828
4855
|
|
|
4829
4856
|
<tr role="row">
|
|
4830
4857
|
<td class="pf-c-table__check" role="cell">
|
|
4831
|
-
<
|
|
4832
|
-
|
|
4833
|
-
|
|
4834
|
-
|
|
4835
|
-
|
|
4858
|
+
<div class="pf-c-check pf-m-standalone">
|
|
4859
|
+
<input
|
|
4860
|
+
class="pf-c-check__input"
|
|
4861
|
+
type="checkbox"
|
|
4862
|
+
name="checkrow5"
|
|
4863
|
+
aria-labelledby="toolbar-and-table-static-search-overflow-menu-collapsed-table-node5"
|
|
4864
|
+
/>
|
|
4865
|
+
</div>
|
|
4836
4866
|
</td>
|
|
4837
4867
|
<td role="cell" data-label="Repository name">
|
|
4838
4868
|
<div>
|
package/package.json
CHANGED
package/patternfly-no-reset.css
CHANGED
|
@@ -8618,7 +8618,7 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8618
8618
|
--pf-c-chip-group--PaddingBottom: 0;
|
|
8619
8619
|
--pf-c-chip-group--PaddingLeft: 0;
|
|
8620
8620
|
--pf-c-chip-group--RowGap: var(--pf-global--spacer--sm);
|
|
8621
|
-
--pf-c-chip-group--ColumnGap:
|
|
8621
|
+
--pf-c-chip-group--ColumnGap: 0;
|
|
8622
8622
|
--pf-c-chip-group__main--RowGap: var(--pf-global--spacer--xs);
|
|
8623
8623
|
--pf-c-chip-group__main--ColumnGap: var(--pf-global--spacer--sm);
|
|
8624
8624
|
--pf-c-chip-group__list--RowGap: var(--pf-global--spacer--xs);
|
|
@@ -8633,7 +8633,6 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8633
8633
|
--pf-c-chip-group__label--MaxWidth: 18ch;
|
|
8634
8634
|
--pf-c-chip-group__close--MarginTop: calc(var(--pf-global--spacer--xs) * -1);
|
|
8635
8635
|
--pf-c-chip-group__close--MarginBottom: calc(var(--pf-global--spacer--xs) * -1);
|
|
8636
|
-
--pf-c-chip-group__close--MarginLeft: calc(var(--pf-global--spacer--sm) * -1);
|
|
8637
8636
|
max-width: 100%;
|
|
8638
8637
|
padding-top: var(--pf-c-chip-group--PaddingTop);
|
|
8639
8638
|
padding-right: var(--pf-c-chip-group--PaddingRight);
|
|
@@ -8692,7 +8691,6 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8692
8691
|
align-self: flex-start;
|
|
8693
8692
|
margin-top: var(--pf-c-chip-group__close--MarginTop);
|
|
8694
8693
|
margin-bottom: var(--pf-c-chip-group__close--MarginBottom);
|
|
8695
|
-
margin-left: var(--pf-c-chip-group__close--MarginLeft);
|
|
8696
8694
|
}
|
|
8697
8695
|
|
|
8698
8696
|
.pf-c-clipboard-copy {
|
|
@@ -23249,7 +23247,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
23249
23247
|
|
|
23250
23248
|
:where(.pf-theme-dark) .pf-c-popover {
|
|
23251
23249
|
--pf-c-popover__content--BackgroundColor: var(--pf-global--BackgroundColor--300);
|
|
23252
|
-
--pf-c-popover__arrow--BackgroundColor: var(--pf-
|
|
23250
|
+
--pf-c-popover__arrow--BackgroundColor: var(--pf-global--BackgroundColor--300);
|
|
23253
23251
|
--pf-c-popover--m-default__title-text--Color: var(--pf-global--default-color--200);
|
|
23254
23252
|
--pf-c-popover--m-info__title-text--Color: var(--pf-global--info-color--100);
|
|
23255
23253
|
--pf-c-popover--m-success__title-text--Color: var(--pf-global--success-color--100);
|
|
@@ -31237,8 +31235,10 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
31237
31235
|
--pf-c-tooltip__content--Color: var(--pf-global--Color--light-100);
|
|
31238
31236
|
--pf-c-tooltip__content--BackgroundColor: var(--pf-global--BackgroundColor--dark-100);
|
|
31239
31237
|
--pf-c-tooltip__content--FontSize: var(--pf-global--FontSize--sm);
|
|
31240
|
-
--pf-c-tooltip__arrow--Width: 0.
|
|
31241
|
-
--pf-c-tooltip__arrow--Height: 0.
|
|
31238
|
+
--pf-c-tooltip__arrow--Width: 0.9375rem;
|
|
31239
|
+
--pf-c-tooltip__arrow--Height: 0.9375rem;
|
|
31240
|
+
--pf-c-tooltip__arrow--BackgroundColor: var(--pf-global--BackgroundColor--dark-100);
|
|
31241
|
+
--pf-c-tooltip__arrow--BoxShadow: var(--pf-global--BoxShadow--md);
|
|
31242
31242
|
--pf-c-tooltip__arrow--m-top--TranslateX: -50%;
|
|
31243
31243
|
--pf-c-tooltip__arrow--m-top--TranslateY: 50%;
|
|
31244
31244
|
--pf-c-tooltip__arrow--m-top--Rotate: 45deg;
|
|
@@ -31308,7 +31308,8 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
31308
31308
|
width: var(--pf-c-tooltip__arrow--Width);
|
|
31309
31309
|
height: var(--pf-c-tooltip__arrow--Height);
|
|
31310
31310
|
pointer-events: none;
|
|
31311
|
-
background-color: var(--pf-c-
|
|
31311
|
+
background-color: var(--pf-c-tooltip__arrow--BackgroundColor);
|
|
31312
|
+
box-shadow: var(--pf-c-tooltip__arrow--BoxShadow);
|
|
31312
31313
|
}
|
|
31313
31314
|
|
|
31314
31315
|
:where(.pf-theme-dark) .pf-c-wizard__header, :where(.pf-theme-dark) .pf-c-about-modal-box, :where(.pf-theme-dark) .pf-c-banner, :where(.pf-theme-dark) .pf-c-log-viewer.pf-m-dark .pf-c-log-viewer__main, :where(.pf-theme-dark) .pf-c-login__header,
|
|
@@ -31349,12 +31350,7 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
31349
31350
|
|
|
31350
31351
|
:where(.pf-theme-dark) .pf-c-tooltip {
|
|
31351
31352
|
--pf-c-tooltip__content--BackgroundColor: var(--pf-global--BackgroundColor--300);
|
|
31352
|
-
--pf-c-tooltip__arrow--
|
|
31353
|
-
}
|
|
31354
|
-
:where(.pf-theme-dark) .pf-c-tooltip__arrow {
|
|
31355
|
-
--pf-c-tooltip__arrow--Width: 0.9375rem;
|
|
31356
|
-
--pf-c-tooltip__arrow--Height: 0.9375rem;
|
|
31357
|
-
box-shadow: var(--pf-c-tooltip__arrow--BoxShadow);
|
|
31353
|
+
--pf-c-tooltip__arrow--BackgroundColor: var(--pf-global--BackgroundColor--300);
|
|
31358
31354
|
}
|
|
31359
31355
|
|
|
31360
31356
|
.pf-c-truncate {
|
package/patternfly.css
CHANGED
|
@@ -8741,7 +8741,7 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8741
8741
|
--pf-c-chip-group--PaddingBottom: 0;
|
|
8742
8742
|
--pf-c-chip-group--PaddingLeft: 0;
|
|
8743
8743
|
--pf-c-chip-group--RowGap: var(--pf-global--spacer--sm);
|
|
8744
|
-
--pf-c-chip-group--ColumnGap:
|
|
8744
|
+
--pf-c-chip-group--ColumnGap: 0;
|
|
8745
8745
|
--pf-c-chip-group__main--RowGap: var(--pf-global--spacer--xs);
|
|
8746
8746
|
--pf-c-chip-group__main--ColumnGap: var(--pf-global--spacer--sm);
|
|
8747
8747
|
--pf-c-chip-group__list--RowGap: var(--pf-global--spacer--xs);
|
|
@@ -8756,7 +8756,6 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8756
8756
|
--pf-c-chip-group__label--MaxWidth: 18ch;
|
|
8757
8757
|
--pf-c-chip-group__close--MarginTop: calc(var(--pf-global--spacer--xs) * -1);
|
|
8758
8758
|
--pf-c-chip-group__close--MarginBottom: calc(var(--pf-global--spacer--xs) * -1);
|
|
8759
|
-
--pf-c-chip-group__close--MarginLeft: calc(var(--pf-global--spacer--sm) * -1);
|
|
8760
8759
|
max-width: 100%;
|
|
8761
8760
|
padding-top: var(--pf-c-chip-group--PaddingTop);
|
|
8762
8761
|
padding-right: var(--pf-c-chip-group--PaddingRight);
|
|
@@ -8815,7 +8814,6 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8815
8814
|
align-self: flex-start;
|
|
8816
8815
|
margin-top: var(--pf-c-chip-group__close--MarginTop);
|
|
8817
8816
|
margin-bottom: var(--pf-c-chip-group__close--MarginBottom);
|
|
8818
|
-
margin-left: var(--pf-c-chip-group__close--MarginLeft);
|
|
8819
8817
|
}
|
|
8820
8818
|
|
|
8821
8819
|
.pf-c-clipboard-copy {
|
|
@@ -23372,7 +23370,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
|
|
|
23372
23370
|
|
|
23373
23371
|
:where(.pf-theme-dark) .pf-c-popover {
|
|
23374
23372
|
--pf-c-popover__content--BackgroundColor: var(--pf-global--BackgroundColor--300);
|
|
23375
|
-
--pf-c-popover__arrow--BackgroundColor: var(--pf-
|
|
23373
|
+
--pf-c-popover__arrow--BackgroundColor: var(--pf-global--BackgroundColor--300);
|
|
23376
23374
|
--pf-c-popover--m-default__title-text--Color: var(--pf-global--default-color--200);
|
|
23377
23375
|
--pf-c-popover--m-info__title-text--Color: var(--pf-global--info-color--100);
|
|
23378
23376
|
--pf-c-popover--m-success__title-text--Color: var(--pf-global--success-color--100);
|
|
@@ -31360,8 +31358,10 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
31360
31358
|
--pf-c-tooltip__content--Color: var(--pf-global--Color--light-100);
|
|
31361
31359
|
--pf-c-tooltip__content--BackgroundColor: var(--pf-global--BackgroundColor--dark-100);
|
|
31362
31360
|
--pf-c-tooltip__content--FontSize: var(--pf-global--FontSize--sm);
|
|
31363
|
-
--pf-c-tooltip__arrow--Width: 0.
|
|
31364
|
-
--pf-c-tooltip__arrow--Height: 0.
|
|
31361
|
+
--pf-c-tooltip__arrow--Width: 0.9375rem;
|
|
31362
|
+
--pf-c-tooltip__arrow--Height: 0.9375rem;
|
|
31363
|
+
--pf-c-tooltip__arrow--BackgroundColor: var(--pf-global--BackgroundColor--dark-100);
|
|
31364
|
+
--pf-c-tooltip__arrow--BoxShadow: var(--pf-global--BoxShadow--md);
|
|
31365
31365
|
--pf-c-tooltip__arrow--m-top--TranslateX: -50%;
|
|
31366
31366
|
--pf-c-tooltip__arrow--m-top--TranslateY: 50%;
|
|
31367
31367
|
--pf-c-tooltip__arrow--m-top--Rotate: 45deg;
|
|
@@ -31431,7 +31431,8 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
31431
31431
|
width: var(--pf-c-tooltip__arrow--Width);
|
|
31432
31432
|
height: var(--pf-c-tooltip__arrow--Height);
|
|
31433
31433
|
pointer-events: none;
|
|
31434
|
-
background-color: var(--pf-c-
|
|
31434
|
+
background-color: var(--pf-c-tooltip__arrow--BackgroundColor);
|
|
31435
|
+
box-shadow: var(--pf-c-tooltip__arrow--BoxShadow);
|
|
31435
31436
|
}
|
|
31436
31437
|
|
|
31437
31438
|
:where(.pf-theme-dark) .pf-c-wizard__header, :where(.pf-theme-dark) .pf-c-about-modal-box, :where(.pf-theme-dark) .pf-c-banner, :where(.pf-theme-dark) .pf-c-log-viewer.pf-m-dark .pf-c-log-viewer__main, :where(.pf-theme-dark) .pf-c-login__header,
|
|
@@ -31472,12 +31473,7 @@ svg.pf-c-spinner.pf-m-xl {
|
|
|
31472
31473
|
|
|
31473
31474
|
:where(.pf-theme-dark) .pf-c-tooltip {
|
|
31474
31475
|
--pf-c-tooltip__content--BackgroundColor: var(--pf-global--BackgroundColor--300);
|
|
31475
|
-
--pf-c-tooltip__arrow--
|
|
31476
|
-
}
|
|
31477
|
-
:where(.pf-theme-dark) .pf-c-tooltip__arrow {
|
|
31478
|
-
--pf-c-tooltip__arrow--Width: 0.9375rem;
|
|
31479
|
-
--pf-c-tooltip__arrow--Height: 0.9375rem;
|
|
31480
|
-
box-shadow: var(--pf-c-tooltip__arrow--BoxShadow);
|
|
31476
|
+
--pf-c-tooltip__arrow--BackgroundColor: var(--pf-global--BackgroundColor--300);
|
|
31481
31477
|
}
|
|
31482
31478
|
|
|
31483
31479
|
.pf-c-truncate {
|