@patternfly/patternfly 4.176.0 → 4.177.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/UPGRADE-GUIDE.md +3 -0
- package/components/Avatar/avatar.css +224 -0
- package/components/Avatar/avatar.scss +18 -0
- package/components/CodeEditor/code-editor.css +8 -0
- package/components/CodeEditor/code-editor.scss +11 -1
- package/components/Dropdown/dropdown.css +10 -9
- package/components/Dropdown/dropdown.scss +17 -16
- package/components/Label/label.css +43 -12
- package/components/Label/label.scss +45 -13
- package/components/Nav/nav.css +11 -0
- package/components/Nav/nav.scss +14 -0
- package/docs/components/Avatar/examples/Avatar.md +53 -5
- package/docs/components/Brand/examples/Brand.md +6 -6
- package/docs/components/CodeEditor/examples/CodeEditor.md +71 -10
- package/docs/components/DataList/examples/DataList.md +11 -11
- package/docs/components/DescriptionList/examples/DescriptionList.md +19 -19
- package/docs/components/Divider/examples/Divider.md +2 -2
- package/docs/components/Drawer/examples/Drawer.md +27 -27
- package/docs/components/Dropdown/examples/Dropdown.md +2 -2
- package/docs/components/JumpLinks/examples/JumpLinks.md +19 -19
- package/docs/components/Label/examples/Label.md +33 -67
- package/docs/components/LabelGroup/examples/LabelGroup.md +64 -107
- package/docs/components/LogViewer/examples/LogViewer.md +28 -28
- package/docs/components/Masthead/examples/masthead.md +10 -10
- package/docs/components/Menu/examples/Menu.md +45 -44
- package/docs/components/Nav/examples/Navigation.md +23 -44
- package/docs/components/Page/examples/Page.md +4 -4
- package/docs/components/Pagination/examples/Pagination.md +2 -2
- package/docs/components/Sidebar/examples/Sidebar.md +14 -14
- package/docs/components/Table/examples/Table.md +8 -8
- package/docs/components/Tabs/examples/Tabs.md +27 -27
- package/docs/components/Toolbar/examples/Toolbar.md +31 -31
- package/docs/demos/Alert/examples/Alert.md +1 -2
- package/docs/demos/BackToTop/examples/BackToTop.md +1 -202
- package/docs/demos/Card/examples/Card.md +42 -36
- package/docs/demos/ContextSelector/examples/ContextSelector.md +1166 -17
- package/docs/demos/Drawer/examples/Drawer.md +3 -3
- package/docs/demos/JumpLinks/examples/JumpLinks.md +4 -8
- package/docs/demos/Masthead/examples/Masthead.md +14 -6
- package/docs/demos/Nav/examples/Nav.md +8 -9
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +5 -5
- package/docs/demos/Page/examples/Page.md +4004 -989
- package/docs/demos/Table/examples/Table.md +15623 -12413
- package/docs/demos/Tabs/examples/Tabs.md +0 -96
- package/docs/demos/Toolbar/examples/Toolbar.md +1 -2
- package/docs/demos/Wizard/examples/Wizard.md +2 -2
- package/docs/layouts/Flex/examples/Flex.md +1 -1
- package/docs/layouts/Gallery/examples/Gallery.md +2 -2
- package/docs/layouts/Grid/examples/Grid.md +9 -9
- package/docs/utilities/Accessibility/examples/Accessibility.md +1 -1
- package/docs/utilities/Alignment/examples/Alignment.md +1 -1
- package/docs/utilities/BackgroundColor/examples/BackgroundColor.md +1 -1
- package/docs/utilities/Display/examples/Display.md +1 -1
- package/docs/utilities/Flex/examples/Flex.md +1 -1
- package/docs/utilities/Float/examples/Float.md +1 -1
- package/docs/utilities/Sizing/examples/Sizing.md +12 -0
- package/docs/utilities/Spacing/examples/Spacing.md +1 -1
- package/docs/utilities/Text/examples/Text.md +1 -1
- package/package.json +1 -1
- package/patternfly-no-reset.css +296 -21
- package/patternfly.css +296 -21
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/patternfly.css
CHANGED
|
@@ -6416,6 +6416,14 @@ a {
|
|
|
6416
6416
|
--pf-c-avatar--BorderRadius: var(--pf-global--BorderRadius--lg);
|
|
6417
6417
|
--pf-c-avatar--Width: 2.25rem;
|
|
6418
6418
|
--pf-c-avatar--Height: 2.25rem;
|
|
6419
|
+
--pf-c-avatar--m-sm--Width: 1.5rem;
|
|
6420
|
+
--pf-c-avatar--m-sm--Height: 1.5rem;
|
|
6421
|
+
--pf-c-avatar--m-md--Width: 2.25rem;
|
|
6422
|
+
--pf-c-avatar--m-md--Height: 2.25rem;
|
|
6423
|
+
--pf-c-avatar--m-lg--Width: 4.5rem;
|
|
6424
|
+
--pf-c-avatar--m-lg--Height: 4.5rem;
|
|
6425
|
+
--pf-c-avatar--m-xl--Width: 8rem;
|
|
6426
|
+
--pf-c-avatar--m-xl--Height: 8rem;
|
|
6419
6427
|
--pf-c-avatar--m-light--BorderColor: var(--pf-global--BorderColor--dark-100);
|
|
6420
6428
|
--pf-c-avatar--m-light--BorderWidth: var(--pf-global--BorderWidth--sm);
|
|
6421
6429
|
--pf-c-avatar--m-dark--BorderColor: var(--pf-global--palette--black-700);
|
|
@@ -6433,6 +6441,222 @@ a {
|
|
|
6433
6441
|
--pf-c-avatar--BorderColor: var(--pf-c-avatar--m-dark--BorderColor);
|
|
6434
6442
|
--pf-c-avatar--BorderWidth: var(--pf-c-avatar--m-dark--BorderWidth);
|
|
6435
6443
|
}
|
|
6444
|
+
.pf-c-avatar.pf-m-sm {
|
|
6445
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-sm--Width);
|
|
6446
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-sm--Height);
|
|
6447
|
+
}
|
|
6448
|
+
@media (min-width: 576px) {
|
|
6449
|
+
.pf-c-avatar.pf-m-sm {
|
|
6450
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-sm--Width-on-sm, var(--pf-c-avatar--m-sm--Width));
|
|
6451
|
+
}
|
|
6452
|
+
}
|
|
6453
|
+
@media (min-width: 768px) {
|
|
6454
|
+
.pf-c-avatar.pf-m-sm {
|
|
6455
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-sm--Width-on-md, var(--pf-c-avatar--m-sm--Width-on-sm, var(--pf-c-avatar--m-sm--Width)));
|
|
6456
|
+
}
|
|
6457
|
+
}
|
|
6458
|
+
@media (min-width: 992px) {
|
|
6459
|
+
.pf-c-avatar.pf-m-sm {
|
|
6460
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-sm--Width-on-lg, var(--pf-c-avatar--m-sm--Width-on-md, var(--pf-c-avatar--m-sm--Width-on-sm, var(--pf-c-avatar--m-sm--Width))));
|
|
6461
|
+
}
|
|
6462
|
+
}
|
|
6463
|
+
@media (min-width: 1200px) {
|
|
6464
|
+
.pf-c-avatar.pf-m-sm {
|
|
6465
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-sm--Width-on-xl, var(--pf-c-avatar--m-sm--Width-on-lg, var(--pf-c-avatar--m-sm--Width-on-md, var(--pf-c-avatar--m-sm--Width-on-sm, var(--pf-c-avatar--m-sm--Width)))));
|
|
6466
|
+
}
|
|
6467
|
+
}
|
|
6468
|
+
@media (min-width: 1450px) {
|
|
6469
|
+
.pf-c-avatar.pf-m-sm {
|
|
6470
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-sm--Width-on-2xl, var(--pf-c-avatar--m-sm--Width-on-xl, var(--pf-c-avatar--m-sm--Width-on-lg, var(--pf-c-avatar--m-sm--Width-on-md, var(--pf-c-avatar--m-sm--Width-on-sm, var(--pf-c-avatar--m-sm--Width))))));
|
|
6471
|
+
}
|
|
6472
|
+
}
|
|
6473
|
+
@media (min-width: 576px) {
|
|
6474
|
+
.pf-c-avatar.pf-m-sm {
|
|
6475
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-sm--Height-on-sm, var(--pf-c-avatar--m-sm--Height));
|
|
6476
|
+
}
|
|
6477
|
+
}
|
|
6478
|
+
@media (min-width: 768px) {
|
|
6479
|
+
.pf-c-avatar.pf-m-sm {
|
|
6480
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-sm--Height-on-md, var(--pf-c-avatar--m-sm--Height-on-sm, var(--pf-c-avatar--m-sm--Height)));
|
|
6481
|
+
}
|
|
6482
|
+
}
|
|
6483
|
+
@media (min-width: 992px) {
|
|
6484
|
+
.pf-c-avatar.pf-m-sm {
|
|
6485
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-sm--Height-on-lg, var(--pf-c-avatar--m-sm--Height-on-md, var(--pf-c-avatar--m-sm--Height-on-sm, var(--pf-c-avatar--m-sm--Height))));
|
|
6486
|
+
}
|
|
6487
|
+
}
|
|
6488
|
+
@media (min-width: 1200px) {
|
|
6489
|
+
.pf-c-avatar.pf-m-sm {
|
|
6490
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-sm--Height-on-xl, var(--pf-c-avatar--m-sm--Height-on-lg, var(--pf-c-avatar--m-sm--Height-on-md, var(--pf-c-avatar--m-sm--Height-on-sm, var(--pf-c-avatar--m-sm--Height)))));
|
|
6491
|
+
}
|
|
6492
|
+
}
|
|
6493
|
+
@media (min-width: 1450px) {
|
|
6494
|
+
.pf-c-avatar.pf-m-sm {
|
|
6495
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-sm--Height-on-2xl, var(--pf-c-avatar--m-sm--Height-on-xl, var(--pf-c-avatar--m-sm--Height-on-lg, var(--pf-c-avatar--m-sm--Height-on-md, var(--pf-c-avatar--m-sm--Height-on-sm, var(--pf-c-avatar--m-sm--Height))))));
|
|
6496
|
+
}
|
|
6497
|
+
}
|
|
6498
|
+
.pf-c-avatar.pf-m-md {
|
|
6499
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-md--Width);
|
|
6500
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-md--Height);
|
|
6501
|
+
}
|
|
6502
|
+
@media (min-width: 576px) {
|
|
6503
|
+
.pf-c-avatar.pf-m-md {
|
|
6504
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-md--Width-on-sm, var(--pf-c-avatar--m-md--Width));
|
|
6505
|
+
}
|
|
6506
|
+
}
|
|
6507
|
+
@media (min-width: 768px) {
|
|
6508
|
+
.pf-c-avatar.pf-m-md {
|
|
6509
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-md--Width-on-md, var(--pf-c-avatar--m-md--Width-on-sm, var(--pf-c-avatar--m-md--Width)));
|
|
6510
|
+
}
|
|
6511
|
+
}
|
|
6512
|
+
@media (min-width: 992px) {
|
|
6513
|
+
.pf-c-avatar.pf-m-md {
|
|
6514
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-md--Width-on-lg, var(--pf-c-avatar--m-md--Width-on-md, var(--pf-c-avatar--m-md--Width-on-sm, var(--pf-c-avatar--m-md--Width))));
|
|
6515
|
+
}
|
|
6516
|
+
}
|
|
6517
|
+
@media (min-width: 1200px) {
|
|
6518
|
+
.pf-c-avatar.pf-m-md {
|
|
6519
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-md--Width-on-xl, var(--pf-c-avatar--m-md--Width-on-lg, var(--pf-c-avatar--m-md--Width-on-md, var(--pf-c-avatar--m-md--Width-on-sm, var(--pf-c-avatar--m-md--Width)))));
|
|
6520
|
+
}
|
|
6521
|
+
}
|
|
6522
|
+
@media (min-width: 1450px) {
|
|
6523
|
+
.pf-c-avatar.pf-m-md {
|
|
6524
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-md--Width-on-2xl, var(--pf-c-avatar--m-md--Width-on-xl, var(--pf-c-avatar--m-md--Width-on-lg, var(--pf-c-avatar--m-md--Width-on-md, var(--pf-c-avatar--m-md--Width-on-sm, var(--pf-c-avatar--m-md--Width))))));
|
|
6525
|
+
}
|
|
6526
|
+
}
|
|
6527
|
+
@media (min-width: 576px) {
|
|
6528
|
+
.pf-c-avatar.pf-m-md {
|
|
6529
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-md--Height-on-sm, var(--pf-c-avatar--m-md--Height));
|
|
6530
|
+
}
|
|
6531
|
+
}
|
|
6532
|
+
@media (min-width: 768px) {
|
|
6533
|
+
.pf-c-avatar.pf-m-md {
|
|
6534
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-md--Height-on-md, var(--pf-c-avatar--m-md--Height-on-sm, var(--pf-c-avatar--m-md--Height)));
|
|
6535
|
+
}
|
|
6536
|
+
}
|
|
6537
|
+
@media (min-width: 992px) {
|
|
6538
|
+
.pf-c-avatar.pf-m-md {
|
|
6539
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-md--Height-on-lg, var(--pf-c-avatar--m-md--Height-on-md, var(--pf-c-avatar--m-md--Height-on-sm, var(--pf-c-avatar--m-md--Height))));
|
|
6540
|
+
}
|
|
6541
|
+
}
|
|
6542
|
+
@media (min-width: 1200px) {
|
|
6543
|
+
.pf-c-avatar.pf-m-md {
|
|
6544
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-md--Height-on-xl, var(--pf-c-avatar--m-md--Height-on-lg, var(--pf-c-avatar--m-md--Height-on-md, var(--pf-c-avatar--m-md--Height-on-sm, var(--pf-c-avatar--m-md--Height)))));
|
|
6545
|
+
}
|
|
6546
|
+
}
|
|
6547
|
+
@media (min-width: 1450px) {
|
|
6548
|
+
.pf-c-avatar.pf-m-md {
|
|
6549
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-md--Height-on-2xl, var(--pf-c-avatar--m-md--Height-on-xl, var(--pf-c-avatar--m-md--Height-on-lg, var(--pf-c-avatar--m-md--Height-on-md, var(--pf-c-avatar--m-md--Height-on-sm, var(--pf-c-avatar--m-md--Height))))));
|
|
6550
|
+
}
|
|
6551
|
+
}
|
|
6552
|
+
.pf-c-avatar.pf-m-lg {
|
|
6553
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-lg--Width);
|
|
6554
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-lg--Height);
|
|
6555
|
+
}
|
|
6556
|
+
@media (min-width: 576px) {
|
|
6557
|
+
.pf-c-avatar.pf-m-lg {
|
|
6558
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-lg--Width-on-sm, var(--pf-c-avatar--m-lg--Width));
|
|
6559
|
+
}
|
|
6560
|
+
}
|
|
6561
|
+
@media (min-width: 768px) {
|
|
6562
|
+
.pf-c-avatar.pf-m-lg {
|
|
6563
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-lg--Width-on-md, var(--pf-c-avatar--m-lg--Width-on-sm, var(--pf-c-avatar--m-lg--Width)));
|
|
6564
|
+
}
|
|
6565
|
+
}
|
|
6566
|
+
@media (min-width: 992px) {
|
|
6567
|
+
.pf-c-avatar.pf-m-lg {
|
|
6568
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-lg--Width-on-lg, var(--pf-c-avatar--m-lg--Width-on-md, var(--pf-c-avatar--m-lg--Width-on-sm, var(--pf-c-avatar--m-lg--Width))));
|
|
6569
|
+
}
|
|
6570
|
+
}
|
|
6571
|
+
@media (min-width: 1200px) {
|
|
6572
|
+
.pf-c-avatar.pf-m-lg {
|
|
6573
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-lg--Width-on-xl, var(--pf-c-avatar--m-lg--Width-on-lg, var(--pf-c-avatar--m-lg--Width-on-md, var(--pf-c-avatar--m-lg--Width-on-sm, var(--pf-c-avatar--m-lg--Width)))));
|
|
6574
|
+
}
|
|
6575
|
+
}
|
|
6576
|
+
@media (min-width: 1450px) {
|
|
6577
|
+
.pf-c-avatar.pf-m-lg {
|
|
6578
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-lg--Width-on-2xl, var(--pf-c-avatar--m-lg--Width-on-xl, var(--pf-c-avatar--m-lg--Width-on-lg, var(--pf-c-avatar--m-lg--Width-on-md, var(--pf-c-avatar--m-lg--Width-on-sm, var(--pf-c-avatar--m-lg--Width))))));
|
|
6579
|
+
}
|
|
6580
|
+
}
|
|
6581
|
+
@media (min-width: 576px) {
|
|
6582
|
+
.pf-c-avatar.pf-m-lg {
|
|
6583
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-lg--Height-on-sm, var(--pf-c-avatar--m-lg--Height));
|
|
6584
|
+
}
|
|
6585
|
+
}
|
|
6586
|
+
@media (min-width: 768px) {
|
|
6587
|
+
.pf-c-avatar.pf-m-lg {
|
|
6588
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-lg--Height-on-md, var(--pf-c-avatar--m-lg--Height-on-sm, var(--pf-c-avatar--m-lg--Height)));
|
|
6589
|
+
}
|
|
6590
|
+
}
|
|
6591
|
+
@media (min-width: 992px) {
|
|
6592
|
+
.pf-c-avatar.pf-m-lg {
|
|
6593
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-lg--Height-on-lg, var(--pf-c-avatar--m-lg--Height-on-md, var(--pf-c-avatar--m-lg--Height-on-sm, var(--pf-c-avatar--m-lg--Height))));
|
|
6594
|
+
}
|
|
6595
|
+
}
|
|
6596
|
+
@media (min-width: 1200px) {
|
|
6597
|
+
.pf-c-avatar.pf-m-lg {
|
|
6598
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-lg--Height-on-xl, var(--pf-c-avatar--m-lg--Height-on-lg, var(--pf-c-avatar--m-lg--Height-on-md, var(--pf-c-avatar--m-lg--Height-on-sm, var(--pf-c-avatar--m-lg--Height)))));
|
|
6599
|
+
}
|
|
6600
|
+
}
|
|
6601
|
+
@media (min-width: 1450px) {
|
|
6602
|
+
.pf-c-avatar.pf-m-lg {
|
|
6603
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-lg--Height-on-2xl, var(--pf-c-avatar--m-lg--Height-on-xl, var(--pf-c-avatar--m-lg--Height-on-lg, var(--pf-c-avatar--m-lg--Height-on-md, var(--pf-c-avatar--m-lg--Height-on-sm, var(--pf-c-avatar--m-lg--Height))))));
|
|
6604
|
+
}
|
|
6605
|
+
}
|
|
6606
|
+
.pf-c-avatar.pf-m-xl {
|
|
6607
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-xl--Width);
|
|
6608
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-xl--Height);
|
|
6609
|
+
}
|
|
6610
|
+
@media (min-width: 576px) {
|
|
6611
|
+
.pf-c-avatar.pf-m-xl {
|
|
6612
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-xl--Width-on-sm, var(--pf-c-avatar--m-xl--Width));
|
|
6613
|
+
}
|
|
6614
|
+
}
|
|
6615
|
+
@media (min-width: 768px) {
|
|
6616
|
+
.pf-c-avatar.pf-m-xl {
|
|
6617
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-xl--Width-on-md, var(--pf-c-avatar--m-xl--Width-on-sm, var(--pf-c-avatar--m-xl--Width)));
|
|
6618
|
+
}
|
|
6619
|
+
}
|
|
6620
|
+
@media (min-width: 992px) {
|
|
6621
|
+
.pf-c-avatar.pf-m-xl {
|
|
6622
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-xl--Width-on-lg, var(--pf-c-avatar--m-xl--Width-on-md, var(--pf-c-avatar--m-xl--Width-on-sm, var(--pf-c-avatar--m-xl--Width))));
|
|
6623
|
+
}
|
|
6624
|
+
}
|
|
6625
|
+
@media (min-width: 1200px) {
|
|
6626
|
+
.pf-c-avatar.pf-m-xl {
|
|
6627
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-xl--Width-on-xl, var(--pf-c-avatar--m-xl--Width-on-lg, var(--pf-c-avatar--m-xl--Width-on-md, var(--pf-c-avatar--m-xl--Width-on-sm, var(--pf-c-avatar--m-xl--Width)))));
|
|
6628
|
+
}
|
|
6629
|
+
}
|
|
6630
|
+
@media (min-width: 1450px) {
|
|
6631
|
+
.pf-c-avatar.pf-m-xl {
|
|
6632
|
+
--pf-c-avatar--Width: var(--pf-c-avatar--m-xl--Width-on-2xl, var(--pf-c-avatar--m-xl--Width-on-xl, var(--pf-c-avatar--m-xl--Width-on-lg, var(--pf-c-avatar--m-xl--Width-on-md, var(--pf-c-avatar--m-xl--Width-on-sm, var(--pf-c-avatar--m-xl--Width))))));
|
|
6633
|
+
}
|
|
6634
|
+
}
|
|
6635
|
+
@media (min-width: 576px) {
|
|
6636
|
+
.pf-c-avatar.pf-m-xl {
|
|
6637
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-xl--Height-on-sm, var(--pf-c-avatar--m-xl--Height));
|
|
6638
|
+
}
|
|
6639
|
+
}
|
|
6640
|
+
@media (min-width: 768px) {
|
|
6641
|
+
.pf-c-avatar.pf-m-xl {
|
|
6642
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-xl--Height-on-md, var(--pf-c-avatar--m-xl--Height-on-sm, var(--pf-c-avatar--m-xl--Height)));
|
|
6643
|
+
}
|
|
6644
|
+
}
|
|
6645
|
+
@media (min-width: 992px) {
|
|
6646
|
+
.pf-c-avatar.pf-m-xl {
|
|
6647
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-xl--Height-on-lg, var(--pf-c-avatar--m-xl--Height-on-md, var(--pf-c-avatar--m-xl--Height-on-sm, var(--pf-c-avatar--m-xl--Height))));
|
|
6648
|
+
}
|
|
6649
|
+
}
|
|
6650
|
+
@media (min-width: 1200px) {
|
|
6651
|
+
.pf-c-avatar.pf-m-xl {
|
|
6652
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-xl--Height-on-xl, var(--pf-c-avatar--m-xl--Height-on-lg, var(--pf-c-avatar--m-xl--Height-on-md, var(--pf-c-avatar--m-xl--Height-on-sm, var(--pf-c-avatar--m-xl--Height)))));
|
|
6653
|
+
}
|
|
6654
|
+
}
|
|
6655
|
+
@media (min-width: 1450px) {
|
|
6656
|
+
.pf-c-avatar.pf-m-xl {
|
|
6657
|
+
--pf-c-avatar--Height: var(--pf-c-avatar--m-xl--Height-on-2xl, var(--pf-c-avatar--m-xl--Height-on-xl, var(--pf-c-avatar--m-xl--Height-on-lg, var(--pf-c-avatar--m-xl--Height-on-md, var(--pf-c-avatar--m-xl--Height-on-sm, var(--pf-c-avatar--m-xl--Height))))));
|
|
6658
|
+
}
|
|
6659
|
+
}
|
|
6436
6660
|
|
|
6437
6661
|
.pf-c-backdrop {
|
|
6438
6662
|
--pf-c-backdrop--Position: fixed;
|
|
@@ -8159,6 +8383,8 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8159
8383
|
--pf-c-code-editor__code--PaddingLeft: var(--pf-global--spacer--sm);
|
|
8160
8384
|
--pf-c-code-editor__code-pre--FontSize: var(--pf-global--FontSize--sm);
|
|
8161
8385
|
--pf-c-code-editor__code-pre--FontFamily: var(--pf-global--FontFamily--monospace);
|
|
8386
|
+
--pf-c-code-editor__header-main--PaddingRight: var(--pf-global--spacer--sm);
|
|
8387
|
+
--pf-c-code-editor__header-main--PaddingLeft: var(--pf-global--spacer--sm);
|
|
8162
8388
|
--pf-c-code-editor__tab--BackgroundColor: var(--pf-global--BackgroundColor--100);
|
|
8163
8389
|
--pf-c-code-editor__tab--Color: var(--pf-global--Color--200);
|
|
8164
8390
|
--pf-c-code-editor__tab--PaddingTop: var(--pf-global--spacer--form-element);
|
|
@@ -8207,6 +8433,12 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8207
8433
|
border-bottom-color: var(--pf-c-code-editor__controls--c-button--m-control--disabled--after--BorderBottomColor);
|
|
8208
8434
|
}
|
|
8209
8435
|
|
|
8436
|
+
.pf-c-code-editor__header-main {
|
|
8437
|
+
flex-grow: 1;
|
|
8438
|
+
padding-right: var(--pf-c-code-editor__header-main--PaddingRight);
|
|
8439
|
+
padding-left: var(--pf-c-code-editor__header-main--PaddingLeft);
|
|
8440
|
+
}
|
|
8441
|
+
|
|
8210
8442
|
.pf-c-code-editor__main {
|
|
8211
8443
|
position: relative;
|
|
8212
8444
|
background-color: var(--pf-c-code-editor__main--BackgroundColor);
|
|
@@ -12494,6 +12726,7 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
12494
12726
|
--pf-c-dropdown__toggle--m-primary--focus--BackgroundColor: var(--pf-global--primary-color--200);
|
|
12495
12727
|
--pf-c-dropdown__toggle--m-primary--active--BackgroundColor: var(--pf-global--primary-color--200);
|
|
12496
12728
|
--pf-c-dropdown--m-expanded__toggle--m-primary--BackgroundColor: var(--pf-global--primary-color--200);
|
|
12729
|
+
--pf-c-dropdown__toggle--m-primary--disabled--Color: var(--pf-global--Color--100);
|
|
12497
12730
|
--pf-c-dropdown__toggle--m-secondary--Color: var(--pf-global--primary-color--100);
|
|
12498
12731
|
--pf-c-dropdown__toggle--m-secondary--BorderRadius: var(--pf-global--BorderRadius--sm);
|
|
12499
12732
|
--pf-c-dropdown__toggle--m-secondary--BackgroundColor: transparent;
|
|
@@ -12652,6 +12885,7 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
12652
12885
|
border-color: var(--pf-c-dropdown__toggle--before--BorderTopColor) var(--pf-c-dropdown__toggle--before--BorderRightColor) var(--pf-c-dropdown__toggle--before--BorderBottomColor) var(--pf-c-dropdown__toggle--before--BorderLeftColor);
|
|
12653
12886
|
}
|
|
12654
12887
|
.pf-c-dropdown__toggle.pf-m-disabled, .pf-c-dropdown__toggle:disabled {
|
|
12888
|
+
--pf-c-dropdown__toggle--m-primary--Color: var(--pf-c-dropdown__toggle--m-primary--disabled--Color);
|
|
12655
12889
|
--pf-c-dropdown__toggle--before--BorderBottomColor: transparent;
|
|
12656
12890
|
pointer-events: none;
|
|
12657
12891
|
}
|
|
@@ -12744,14 +12978,14 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
12744
12978
|
.pf-c-dropdown__toggle:not(.pf-m-action):not(.pf-m-secondary):hover::before, .pf-c-dropdown__toggle.pf-m-action .pf-c-dropdown__toggle-button:hover::before {
|
|
12745
12979
|
--pf-c-dropdown__toggle--before--BorderBottomColor: var(--pf-c-dropdown__toggle--hover--before--BorderBottomColor);
|
|
12746
12980
|
}
|
|
12747
|
-
.pf-c-dropdown__toggle:not(.pf-m-action):not(.pf-m-secondary):active::before, .pf-c-dropdown__toggle:not(.pf-m-action):not(.pf-m-secondary).pf-m-active::before, .pf-c-dropdown__toggle.pf-m-action .pf-c-dropdown__toggle-button:active::before {
|
|
12748
|
-
--pf-c-dropdown__toggle--before--BorderBottomColor: var(--pf-c-dropdown__toggle--active--before--BorderBottomColor);
|
|
12749
|
-
border-bottom-width: var(--pf-c-dropdown__toggle--active--before--BorderBottomWidth);
|
|
12750
|
-
}
|
|
12751
12981
|
.pf-c-dropdown__toggle:not(.pf-m-action):not(.pf-m-secondary):focus::before, .pf-c-dropdown__toggle.pf-m-action .pf-c-dropdown__toggle-button:focus::before {
|
|
12752
12982
|
--pf-c-dropdown__toggle--before--BorderBottomColor: var(--pf-c-dropdown__toggle--focus--before--BorderBottomColor);
|
|
12753
12983
|
border-bottom-width: var(--pf-c-dropdown__toggle--focus--before--BorderBottomWidth);
|
|
12754
12984
|
}
|
|
12985
|
+
.pf-c-dropdown__toggle:not(.pf-m-action):not(.pf-m-secondary):active::before, .pf-c-dropdown__toggle:not(.pf-m-action):not(.pf-m-secondary).pf-m-active::before, .pf-c-dropdown__toggle.pf-m-action .pf-c-dropdown__toggle-button:active::before {
|
|
12986
|
+
--pf-c-dropdown__toggle--before--BorderBottomColor: var(--pf-c-dropdown__toggle--active--before--BorderBottomColor);
|
|
12987
|
+
border-bottom-width: var(--pf-c-dropdown__toggle--active--before--BorderBottomWidth);
|
|
12988
|
+
}
|
|
12755
12989
|
.pf-m-expanded > .pf-c-dropdown__toggle:not(.pf-m-action):not(.pf-m-secondary)::before, .pf-m-expanded > .pf-c-dropdown__toggle.pf-m-action .pf-c-dropdown__toggle-button::before {
|
|
12756
12990
|
--pf-c-dropdown__toggle--before--BorderBottomColor: var(--pf-c-dropdown--m-expanded__toggle--before--BorderBottomColor);
|
|
12757
12991
|
border-bottom-width: var(--pf-c-dropdown--m-expanded__toggle--before--BorderBottomWidth);
|
|
@@ -12779,14 +13013,13 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
12779
13013
|
--pf-c-dropdown__toggle--m-plain--Color: var(--pf-c-dropdown__toggle--m-plain--disabled--Color);
|
|
12780
13014
|
}
|
|
12781
13015
|
.pf-c-dropdown__toggle.pf-m-primary {
|
|
12782
|
-
border-radius: var(--pf-c-dropdown__toggle--m-primary--BorderRadius);
|
|
12783
|
-
}
|
|
12784
|
-
.pf-c-dropdown__toggle.pf-m-primary:not(.pf-m-disabled):not([disabled]) {
|
|
12785
13016
|
--pf-c-dropdown__toggle--Color: var(--pf-c-dropdown__toggle--m-primary--Color);
|
|
12786
13017
|
--pf-c-dropdown__toggle--BackgroundColor: var(--pf-c-dropdown__toggle--m-primary--BackgroundColor);
|
|
12787
13018
|
--pf-c-dropdown__toggle-button--Color: var(--pf-c-dropdown__toggle--m-primary--Color);
|
|
13019
|
+
border-radius: var(--pf-c-dropdown__toggle--m-primary--BorderRadius);
|
|
12788
13020
|
}
|
|
12789
|
-
.pf-c-dropdown__toggle.pf-m-primary::before
|
|
13021
|
+
.pf-c-dropdown__toggle.pf-m-primary::before,
|
|
13022
|
+
.pf-c-dropdown__toggle.pf-m-primary .pf-c-dropdown__toggle-button::before {
|
|
12790
13023
|
border: 0;
|
|
12791
13024
|
}
|
|
12792
13025
|
.pf-c-dropdown__toggle.pf-m-primary:hover {
|
|
@@ -12798,7 +13031,7 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
12798
13031
|
.pf-c-dropdown__toggle.pf-m-primary:active, .pf-c-dropdown__toggle.pf-m-primary.pf-m-active {
|
|
12799
13032
|
--pf-c-dropdown__toggle--BackgroundColor: var(--pf-c-dropdown__toggle--m-primary--active--BackgroundColor);
|
|
12800
13033
|
}
|
|
12801
|
-
.pf-
|
|
13034
|
+
.pf-m-expanded > .pf-c-dropdown__toggle.pf-m-primary {
|
|
12802
13035
|
--pf-c-dropdown__toggle--BackgroundColor: var(--pf-c-dropdown--m-expanded__toggle--m-primary--BackgroundColor);
|
|
12803
13036
|
}
|
|
12804
13037
|
.pf-c-dropdown__toggle.pf-m-secondary {
|
|
@@ -14793,7 +15026,9 @@ label.pf-c-input-group__text {
|
|
|
14793
15026
|
--pf-c-label--m-compact--FontSize: var(--pf-global--FontSize--xs);
|
|
14794
15027
|
--pf-c-label--m-compact--m-editable--TextDecorationOffset: 0.0625rem;
|
|
14795
15028
|
--pf-c-label__content--Color: var(--pf-global--Color--100);
|
|
15029
|
+
--pf-c-label__content--MaxWidth: 100%;
|
|
14796
15030
|
--pf-c-label--m-outline__content--Color: var(--pf-global--Color--100);
|
|
15031
|
+
--pf-c-label--m-editable__content--MaxWidth: 16ch;
|
|
14797
15032
|
--pf-c-label__text--MaxWidth: 16ch;
|
|
14798
15033
|
--pf-c-label__icon--Color: var(--pf-global--Color--100);
|
|
14799
15034
|
--pf-c-label__icon--MarginRight: var(--pf-global--spacer--xs);
|
|
@@ -14806,8 +15041,6 @@ label.pf-c-input-group__text {
|
|
|
14806
15041
|
--pf-c-label__c-button--PaddingRight: var(--pf-global--spacer--sm);
|
|
14807
15042
|
--pf-c-label__c-button--PaddingBottom: var(--pf-global--spacer--xs);
|
|
14808
15043
|
--pf-c-label__c-button--PaddingLeft: var(--pf-global--spacer--sm);
|
|
14809
|
-
--pf-c-label__editable-text--MaxWidth: 16ch;
|
|
14810
|
-
--pf-c-label__editable-text--BorderWidth: 0;
|
|
14811
15044
|
--pf-c-label--m-editable--Cursor: pointer;
|
|
14812
15045
|
--pf-c-label--m-editable--TextDecoration: underline;
|
|
14813
15046
|
--pf-c-label--m-editable--TextDecorationStyle: dashed;
|
|
@@ -14816,6 +15049,12 @@ label.pf-c-input-group__text {
|
|
|
14816
15049
|
--pf-c-label--m-editable--TextDecorationColor: var(--pf-global--BorderColor--200);
|
|
14817
15050
|
--pf-c-label--m-editable--hover--TextDecorationColor: var(--pf-global--Color--100);
|
|
14818
15051
|
--pf-c-label--m-editable--focus--TextDecorationColor: var(--pf-global--Color--100);
|
|
15052
|
+
--pf-c-label--m-editable__content--before--BorderWidth: var(--pf-global--BorderWidth--sm);
|
|
15053
|
+
--pf-c-label--m-editable__content--before--BorderColor: var(--pf-global--BorderColor--100);
|
|
15054
|
+
--pf-c-label--m-editable__content--hover--before--BorderWidth: var(--pf-global--BorderWidth--sm);
|
|
15055
|
+
--pf-c-label--m-editable__content--hover--before--BorderColor: var(--pf-global--BorderColor--100);
|
|
15056
|
+
--pf-c-label--m-editable__content--focus--before--BorderWidth: var(--pf-global--BorderWidth--sm);
|
|
15057
|
+
--pf-c-label--m-editable__content--focus--before--BorderColor: var(--pf-global--BorderColor--100);
|
|
14819
15058
|
--pf-c-label--m-editable--m-editable-active--Cursor: auto;
|
|
14820
15059
|
--pf-c-label--m-editable--m-editable-active--TextDecoration: none;
|
|
14821
15060
|
--pf-c-label--m-editable--m-editable-active--BackgroundColor: transparent;
|
|
@@ -14849,6 +15088,9 @@ label.pf-c-input-group__text {
|
|
|
14849
15088
|
--pf-c-label--m-outline__content--before--BorderColor: var(--pf-c-label--m-outline--m-blue__content--before--BorderColor);
|
|
14850
15089
|
--pf-c-label--m-outline__content--link--hover--before--BorderColor: var(--pf-c-label--m-outline--m-blue__content--link--hover--before--BorderColor);
|
|
14851
15090
|
--pf-c-label--m-outline__content--link--focus--before--BorderColor: var(--pf-c-label--m-outline--m-blue__content--link--focus--before--BorderColor);
|
|
15091
|
+
--pf-c-label--m-editable__content--before--BorderColor: var(--pf-c-label--m-blue__content--before--BorderColor);
|
|
15092
|
+
--pf-c-label--m-editable__content--hover--before--BorderColor: var(--pf-c-label--m-blue__content--before--BorderColor);
|
|
15093
|
+
--pf-c-label--m-editable__content--focus--before--BorderColor: var(--pf-c-label--m-blue__content--before--BorderColor);
|
|
14852
15094
|
}
|
|
14853
15095
|
.pf-c-label.pf-m-green {
|
|
14854
15096
|
--pf-c-label--BackgroundColor: var(--pf-c-label--m-green--BackgroundColor);
|
|
@@ -14861,6 +15103,9 @@ label.pf-c-input-group__text {
|
|
|
14861
15103
|
--pf-c-label--m-outline__content--before--BorderColor: var(--pf-c-label--m-outline--m-green__content--before--BorderColor);
|
|
14862
15104
|
--pf-c-label--m-outline__content--link--hover--before--BorderColor: var(--pf-c-label--m-outline--m-green__content--link--hover--before--BorderColor);
|
|
14863
15105
|
--pf-c-label--m-outline__content--link--focus--before--BorderColor: var(--pf-c-label--m-outline--m-green__content--link--focus--before--BorderColor);
|
|
15106
|
+
--pf-c-label--m-editable__content--before--BorderColor: var(--pf-c-label--m-green__content--before--BorderColor);
|
|
15107
|
+
--pf-c-label--m-editable__content--hover--before--BorderColor: var(--pf-c-label--m-green__content--before--BorderColor);
|
|
15108
|
+
--pf-c-label--m-editable__content--focus--before--BorderColor: var(--pf-c-label--m-green__content--before--BorderColor);
|
|
14864
15109
|
}
|
|
14865
15110
|
.pf-c-label.pf-m-orange {
|
|
14866
15111
|
--pf-c-label--BackgroundColor: var(--pf-c-label--m-orange--BackgroundColor);
|
|
@@ -14873,6 +15118,9 @@ label.pf-c-input-group__text {
|
|
|
14873
15118
|
--pf-c-label--m-outline__content--before--BorderColor: var(--pf-c-label--m-outline--m-orange__content--before--BorderColor);
|
|
14874
15119
|
--pf-c-label--m-outline__content--link--hover--before--BorderColor: var(--pf-c-label--m-outline--m-orange__content--link--hover--before--BorderColor);
|
|
14875
15120
|
--pf-c-label--m-outline__content--link--focus--before--BorderColor: var(--pf-c-label--m-outline--m-orange__content--link--focus--before--BorderColor);
|
|
15121
|
+
--pf-c-label--m-editable__content--before--BorderColor: var(--pf-c-label--m-orange__content--before--BorderColor);
|
|
15122
|
+
--pf-c-label--m-editable__content--hover--before--BorderColor: var(--pf-c-label--m-orange__content--before--BorderColor);
|
|
15123
|
+
--pf-c-label--m-editable__content--focus--before--BorderColor: var(--pf-c-label--m-orange__content--before--BorderColor);
|
|
14876
15124
|
}
|
|
14877
15125
|
.pf-c-label.pf-m-red {
|
|
14878
15126
|
--pf-c-label--BackgroundColor: var(--pf-c-label--m-red--BackgroundColor);
|
|
@@ -14885,6 +15133,9 @@ label.pf-c-input-group__text {
|
|
|
14885
15133
|
--pf-c-label--m-outline__content--before--BorderColor: var(--pf-c-label--m-outline--m-red__content--before--BorderColor);
|
|
14886
15134
|
--pf-c-label--m-outline__content--link--hover--before--BorderColor: var(--pf-c-label--m-outline--m-red__content--link--hover--before--BorderColor);
|
|
14887
15135
|
--pf-c-label--m-outline__content--link--focus--before--BorderColor: var(--pf-c-label--m-outline--m-red__content--link--focus--before--BorderColor);
|
|
15136
|
+
--pf-c-label--m-editable__content--before--BorderColor: var(--pf-c-label--m-red__content--before--BorderColor);
|
|
15137
|
+
--pf-c-label--m-editable__content--hover--before--BorderColor: var(--pf-c-label--m-red__content--before--BorderColor);
|
|
15138
|
+
--pf-c-label--m-editable__content--focus--before--BorderColor: var(--pf-c-label--m-red__content--before--BorderColor);
|
|
14888
15139
|
}
|
|
14889
15140
|
.pf-c-label.pf-m-purple {
|
|
14890
15141
|
--pf-c-label--BackgroundColor: var(--pf-c-label--m-purple--BackgroundColor);
|
|
@@ -14897,6 +15148,9 @@ label.pf-c-input-group__text {
|
|
|
14897
15148
|
--pf-c-label--m-outline__content--before--BorderColor: var(--pf-c-label--m-outline--m-purple__content--before--BorderColor);
|
|
14898
15149
|
--pf-c-label--m-outline__content--link--hover--before--BorderColor: var(--pf-c-label--m-outline--m-purple__content--link--hover--before--BorderColor);
|
|
14899
15150
|
--pf-c-label--m-outline__content--link--focus--before--BorderColor: var(--pf-c-label--m-outline--m-purple__content--link--focus--before--BorderColor);
|
|
15151
|
+
--pf-c-label--m-editable__content--before--BorderColor: var(--pf-c-label--m-purple__content--before--BorderColor);
|
|
15152
|
+
--pf-c-label--m-editable__content--hover--before--BorderColor: var(--pf-c-label--m-purple__content--before--BorderColor);
|
|
15153
|
+
--pf-c-label--m-editable__content--focus--before--BorderColor: var(--pf-c-label--m-purple__content--before--BorderColor);
|
|
14900
15154
|
}
|
|
14901
15155
|
.pf-c-label.pf-m-cyan {
|
|
14902
15156
|
--pf-c-label--BackgroundColor: var(--pf-c-label--m-cyan--BackgroundColor);
|
|
@@ -14909,12 +15163,18 @@ label.pf-c-input-group__text {
|
|
|
14909
15163
|
--pf-c-label--m-outline__content--before--BorderColor: var(--pf-c-label--m-outline--m-cyan__content--before--BorderColor);
|
|
14910
15164
|
--pf-c-label--m-outline__content--link--hover--before--BorderColor: var(--pf-c-label--m-outline--m-cyan__content--link--hover--before--BorderColor);
|
|
14911
15165
|
--pf-c-label--m-outline__content--link--focus--before--BorderColor: var(--pf-c-label--m-outline--m-cyan__content--link--focus--before--BorderColor);
|
|
15166
|
+
--pf-c-label--m-editable__content--before--BorderColor: var(--pf-c-label--m-cyan__content--before--BorderColor);
|
|
15167
|
+
--pf-c-label--m-editable__content--hover--before--BorderColor: var(--pf-c-label--m-cyan__content--before--BorderColor);
|
|
15168
|
+
--pf-c-label--m-editable__content--focus--before--BorderColor: var(--pf-c-label--m-cyan__content--before--BorderColor);
|
|
14912
15169
|
}
|
|
14913
15170
|
.pf-c-label.pf-m-outline {
|
|
14914
15171
|
--pf-c-label__content--Color: var(--pf-c-label--m-outline__content--Color);
|
|
14915
15172
|
--pf-c-label__content--before--BorderWidth: var(--pf-c-label--m-outline__content--before--BorderWidth);
|
|
14916
15173
|
--pf-c-label__content--before--BorderColor: var(--pf-c-label--m-outline__content--before--BorderColor);
|
|
14917
15174
|
--pf-c-label--BackgroundColor: var(--pf-c-label--m-outline--BackgroundColor);
|
|
15175
|
+
--pf-c-label--m-editable__content--before--BorderColor: var(--pf-c-label--m-outline__content--before--BorderColor);
|
|
15176
|
+
--pf-c-label--m-editable__content--hover--before--BorderColor: var(--pf-c-label--m-outline__content--before--BorderColor);
|
|
15177
|
+
--pf-c-label--m-editable__content--focus--before--BorderColor: var(--pf-c-label--m-outline__content--before--BorderColor);
|
|
14918
15178
|
}
|
|
14919
15179
|
.pf-c-label.pf-m-overflow:hover, .pf-c-label.pf-m-outline a.pf-c-label__content:hover,
|
|
14920
15180
|
.pf-c-label.pf-m-outline button.pf-c-label__content:hover {
|
|
@@ -14934,6 +15194,15 @@ label.pf-c-input-group__text {
|
|
|
14934
15194
|
text-decoration-thickness: var(--pf-c-label--m-editable--TextDecorationThickness);
|
|
14935
15195
|
text-underline-offset: var(--pf-c-label--m-editable--TextDecorationOffset);
|
|
14936
15196
|
text-decoration-color: var(--pf-c-label--m-editable--TextDecorationColor);
|
|
15197
|
+
--pf-c-label__content--MaxWidth: var(--pf-c-label--m-editable__content--MaxWidth);
|
|
15198
|
+
--pf-c-label__content--before--BorderWidth: var(--pf-c-label--m-editable__content--before--BorderWidth);
|
|
15199
|
+
--pf-c-label__content--before--BorderColor: var(--pf-c-label--m-editable__content--before--BorderColor);
|
|
15200
|
+
--pf-c-label__content--link--hover--before--BorderWidth: var(--pf-c-label--m-editable__content--hover--before--BorderWidth);
|
|
15201
|
+
--pf-c-label__content--link--hover--before--BorderColor: var(--pf-c-label--m-editable__content--hover--before--BorderColor);
|
|
15202
|
+
--pf-c-label__content--link--focus--before--BorderWidth: var(--pf-c-label--m-editable__content--focus--before--BorderWidth);
|
|
15203
|
+
--pf-c-label__content--link--focus--before--BorderColor: var(--pf-c-label--m-editable__content--focus--before--BorderColor);
|
|
15204
|
+
--pf-c-label--m-outline__content--link--hover--before--BorderWidth: var(--pf-c-label--m-editable__content--before--BorderWidth);
|
|
15205
|
+
--pf-c-label--m-outline__content--link--focus--before--BorderWidth: var(--pf-c-label--m-editable__content--before--BorderWidth);
|
|
14937
15206
|
}
|
|
14938
15207
|
.pf-c-label.pf-m-editable:hover {
|
|
14939
15208
|
--pf-c-label--m-editable--TextDecorationColor: var(--pf-c-label--m-editable--hover--TextDecorationColor);
|
|
@@ -14945,19 +15214,10 @@ label.pf-c-input-group__text {
|
|
|
14945
15214
|
--pf-c-label--m-editable--Cursor: var(--pf-c-label--m-editable--m-editable-active--Cursor);
|
|
14946
15215
|
--pf-c-label--m-editable--TextDecoration: var(--pf-c-label--m-editable--m-editable-active--TextDecoration);
|
|
14947
15216
|
--pf-c-label--BackgroundColor: var(--pf-c-label--m-editable--m-editable-active--BackgroundColor);
|
|
14948
|
-
--pf-c-label__content--before--BorderWidth: var(--pf-c-label--m-editable--m-editable-active__content--before--BorderWidth);
|
|
14949
|
-
--pf-c-label__content--before--BorderColor: var(--pf-c-label--m-editable--m-editable-active__content--before--BorderColor);
|
|
14950
15217
|
}
|
|
14951
15218
|
.pf-c-label.pf-m-editable-active .pf-c-button {
|
|
14952
15219
|
visibility: hidden;
|
|
14953
15220
|
}
|
|
14954
|
-
.pf-c-label .pf-c-label__editable-text {
|
|
14955
|
-
overflow: hidden;
|
|
14956
|
-
text-overflow: ellipsis;
|
|
14957
|
-
white-space: nowrap;
|
|
14958
|
-
max-width: var(--pf-c-label__editable-text--MaxWidth);
|
|
14959
|
-
border-width: var(--pf-c-label__editable-text--BorderWidth);
|
|
14960
|
-
}
|
|
14961
15221
|
.pf-c-label .pf-c-button {
|
|
14962
15222
|
--pf-c-button--FontSize: var(--pf-c-label__c-button--FontSize);
|
|
14963
15223
|
--pf-c-button--PaddingTop: var(--pf-c-label__c-button--PaddingTop);
|
|
@@ -14994,8 +15254,12 @@ label.pf-c-input-group__text {
|
|
|
14994
15254
|
}
|
|
14995
15255
|
|
|
14996
15256
|
.pf-c-label__content {
|
|
15257
|
+
overflow: hidden;
|
|
15258
|
+
text-overflow: ellipsis;
|
|
15259
|
+
white-space: nowrap;
|
|
15260
|
+
max-width: var(--pf-c-label__content--MaxWidth);
|
|
14997
15261
|
color: var(--pf-c-label__content--Color);
|
|
14998
|
-
border: 0;
|
|
15262
|
+
border-width: 0;
|
|
14999
15263
|
}
|
|
15000
15264
|
.pf-c-label__content::before {
|
|
15001
15265
|
position: absolute;
|
|
@@ -17723,6 +17987,8 @@ ul.pf-c-list {
|
|
|
17723
17987
|
--pf-c-nav--c-menu__list-item--focus-within--Color: var(--pf-global--Color--light-100);
|
|
17724
17988
|
--pf-c-nav--c-menu__list-item--hover--BackgroundColor: var(--pf-global--BackgroundColor--dark-200);
|
|
17725
17989
|
--pf-c-nav--c-menu__list-item--focus-within--BackgroundColor: var(--pf-global--BackgroundColor--dark-200);
|
|
17990
|
+
--pf-c-nav--c-menu__list-item--m-drill-up--before--BorderBottomWidth: var(--pf-global--BorderWidth--lg);
|
|
17991
|
+
--pf-c-nav--c-menu__list-item--m-drill-up__item--FontWeight: var(--pf-global--FontWeight--bold);
|
|
17726
17992
|
--pf-c-nav--c-menu__item--PaddingTop: var(--pf-global--spacer--md);
|
|
17727
17993
|
--pf-c-nav--c-menu__item--PaddingRight: var(--pf-global--spacer--md);
|
|
17728
17994
|
--pf-c-nav--c-menu__item--PaddingBottom: var(--pf-global--spacer--md);
|
|
@@ -17851,6 +18117,15 @@ ul.pf-c-list {
|
|
|
17851
18117
|
--pf-c-nav--c-menu__item--after--BorderLeftColor: var(--pf-c-nav--c-menu__item--m-current--after--BorderColor);
|
|
17852
18118
|
background-color: var(--pf-c-nav--c-menu__item--m-current--BackgroundColor);
|
|
17853
18119
|
}
|
|
18120
|
+
.pf-c-nav .pf-c-menu__list-item:where(.pf-m-drill-up) {
|
|
18121
|
+
--pf-c-nav--c-menu__item--before--BorderBottomWidth: var(--pf-c-nav--c-menu__list-item--m-drill-up--before--BorderBottomWidth);
|
|
18122
|
+
}
|
|
18123
|
+
.pf-c-nav .pf-c-menu__list-item:where(.pf-m-drill-up) > .pf-c-menu__item {
|
|
18124
|
+
--pf-c-menu__item--FontWeight: var(--pf-c-nav--c-menu__list-item--m-drill-up__item--FontWeight);
|
|
18125
|
+
}
|
|
18126
|
+
.pf-c-nav .pf-c-menu__item-toggle-icon {
|
|
18127
|
+
margin-left: calc(var(--pf-c-menu__item-toggle-icon--PaddingLeft) * -1);
|
|
18128
|
+
}
|
|
17854
18129
|
.pf-c-nav.pf-m-horizontal .pf-c-nav__link::after, .pf-c-nav.pf-m-tertiary .pf-c-nav__link::after {
|
|
17855
18130
|
content: none;
|
|
17856
18131
|
}
|