@patternfly/react-styles 5.0.0-alpha.2 → 5.0.0-alpha.4
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +12 -0
- package/css/components/Accordion/accordion.css +2 -0
- package/css/components/AppLauncher/app-launcher.css +2 -0
- package/css/components/Breadcrumb/breadcrumb.css +2 -0
- package/css/components/Chip/chip.css +33 -24
- package/css/components/Chip/chip.d.ts +2 -1
- package/css/components/Chip/chip.js +2 -1
- package/css/components/Chip/chip.mjs +2 -1
- package/css/components/ContextSelector/context-selector.css +5 -1
- package/css/components/DataList/data-list.css +2 -1
- package/css/components/Drawer/drawer.css +13 -13
- package/css/components/Dropdown/dropdown.css +12 -10
- package/css/components/ExpandableSection/expandable-section.css +2 -0
- package/css/components/Label/label.css +37 -24
- package/css/components/Label/label.d.ts +1 -0
- package/css/components/Label/label.js +1 -0
- package/css/components/Label/label.mjs +1 -0
- package/css/components/Login/login.css +1 -1
- package/css/components/Menu/menu.css +3 -0
- package/css/components/MenuToggle/menu-toggle.css +2 -0
- package/css/components/ModalBox/modal-box.css +9 -8
- package/css/components/ModalBox/modal-box.d.ts +1 -0
- package/css/components/ModalBox/modal-box.js +1 -0
- package/css/components/ModalBox/modal-box.mjs +1 -0
- package/css/components/Page/page.css +60 -60
- package/css/components/Pagination/pagination.css +2 -2
- package/css/components/Popover/popover.css +21 -24
- package/css/components/Popover/popover.d.ts +4 -5
- package/css/components/Popover/popover.js +4 -5
- package/css/components/Popover/popover.mjs +4 -5
- package/css/components/Progress/progress.css +5 -2
- package/css/components/SearchInput/search-input.css +2 -0
- package/css/components/Table/table-grid.css +28 -28
- package/css/components/Table/table-tree-view.css +14 -4
- package/css/components/Table/table-tree-view.d.ts +1 -0
- package/css/components/Table/table-tree-view.js +1 -0
- package/css/components/Table/table-tree-view.mjs +1 -0
- package/css/components/Table/table.css +4 -0
- package/css/components/TextInputGroup/text-input-group.css +4 -2
- package/css/components/Toolbar/toolbar.css +35 -35
- package/css/components/TreeView/tree-view.css +7 -15
- package/css/components/Wizard/wizard.css +2 -0
- package/css/docs/components/ContextSelector/examples/context-selector.css +5 -1
- package/css/docs/components/Dropdown/examples/Dropdown.css +5 -2
- package/css/layouts/Grid/grid.css +5 -5
- package/package.json +3 -3
@@ -34,9 +34,9 @@
|
|
34
34
|
--pf-c-modal-box__body--PaddingLeft: var(--pf-global--spacer--lg);
|
35
35
|
--pf-c-modal-box__body--last-child--PaddingBottom: var(--pf-global--spacer--lg);
|
36
36
|
--pf-c-modal-box__header--body--PaddingTop: var(--pf-global--spacer--md);
|
37
|
-
--pf-c-modal-
|
38
|
-
--pf-c-modal-
|
39
|
-
--pf-c-modal-
|
37
|
+
--pf-c-modal-box__close--Top: calc(var(--pf-global--spacer--lg));
|
38
|
+
--pf-c-modal-box__close--Right: var(--pf-global--spacer--md);
|
39
|
+
--pf-c-modal-box__close--sibling--MarginRight: calc(var(--pf-global--spacer--xl) + var(--pf-global--spacer--sm));
|
40
40
|
--pf-c-modal-box__footer--PaddingTop: var(--pf-global--spacer--lg);
|
41
41
|
--pf-c-modal-box__footer--PaddingRight: var(--pf-global--spacer--lg);
|
42
42
|
--pf-c-modal-box__footer--PaddingBottom: var(--pf-global--spacer--lg);
|
@@ -88,13 +88,14 @@
|
|
88
88
|
.pf-c-modal-box.pf-m-info {
|
89
89
|
--pf-c-modal-box__title-icon--Color: var(--pf-c-modal-box--m-info__title-icon--Color);
|
90
90
|
}
|
91
|
-
|
91
|
+
|
92
|
+
.pf-c-modal-box__close {
|
92
93
|
position: absolute;
|
93
|
-
top: var(--pf-c-modal-
|
94
|
-
right: var(--pf-c-modal-
|
94
|
+
top: var(--pf-c-modal-box__close--Top);
|
95
|
+
right: var(--pf-c-modal-box__close--Right);
|
95
96
|
}
|
96
|
-
.pf-c-modal-
|
97
|
-
margin-right: var(--pf-c-modal-
|
97
|
+
.pf-c-modal-box__close + * {
|
98
|
+
margin-right: var(--pf-c-modal-box__close--sibling--MarginRight);
|
98
99
|
}
|
99
100
|
|
100
101
|
.pf-c-modal-box__header {
|
@@ -3,6 +3,7 @@ declare const _default: {
|
|
3
3
|
"button": "pf-c-button",
|
4
4
|
"modalBox": "pf-c-modal-box",
|
5
5
|
"modalBoxBody": "pf-c-modal-box__body",
|
6
|
+
"modalBoxClose": "pf-c-modal-box__close",
|
6
7
|
"modalBoxDescription": "pf-c-modal-box__description",
|
7
8
|
"modalBoxFooter": "pf-c-modal-box__footer",
|
8
9
|
"modalBoxHeader": "pf-c-modal-box__header",
|
@@ -5,6 +5,7 @@ exports.default = {
|
|
5
5
|
"button": "pf-c-button",
|
6
6
|
"modalBox": "pf-c-modal-box",
|
7
7
|
"modalBoxBody": "pf-c-modal-box__body",
|
8
|
+
"modalBoxClose": "pf-c-modal-box__close",
|
8
9
|
"modalBoxDescription": "pf-c-modal-box__description",
|
9
10
|
"modalBoxFooter": "pf-c-modal-box__footer",
|
10
11
|
"modalBoxHeader": "pf-c-modal-box__header",
|
@@ -3,6 +3,7 @@ export default {
|
|
3
3
|
"button": "pf-c-button",
|
4
4
|
"modalBox": "pf-c-modal-box",
|
5
5
|
"modalBoxBody": "pf-c-modal-box__body",
|
6
|
+
"modalBoxClose": "pf-c-modal-box__close",
|
6
7
|
"modalBoxDescription": "pf-c-modal-box__description",
|
7
8
|
"modalBoxFooter": "pf-c-modal-box__footer",
|
8
9
|
"modalBoxHeader": "pf-c-modal-box__header",
|
@@ -547,24 +547,24 @@
|
|
547
547
|
}
|
548
548
|
@media (min-height: 0) {
|
549
549
|
.pf-c-page__main-nav.pf-m-sticky-top-on-sm-height,
|
550
|
-
.pf-c-page__main-breadcrumb.pf-m-sticky-top-on-sm-height,
|
551
|
-
.pf-c-page__main-tabs.pf-m-sticky-top-on-sm-height,
|
552
|
-
.pf-c-page__main-section.pf-m-sticky-top-on-sm-height,
|
553
|
-
.pf-c-page__main-wizard.pf-m-sticky-top-on-sm-height,
|
554
|
-
.pf-c-page__main-group.pf-m-sticky-top-on-sm-height,
|
555
|
-
.pf-c-page__main-subnav.pf-m-sticky-top-on-sm-height {
|
550
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-top-on-sm-height,
|
551
|
+
.pf-c-page__main-tabs.pf-m-sticky-top-on-sm-height,
|
552
|
+
.pf-c-page__main-section.pf-m-sticky-top-on-sm-height,
|
553
|
+
.pf-c-page__main-wizard.pf-m-sticky-top-on-sm-height,
|
554
|
+
.pf-c-page__main-group.pf-m-sticky-top-on-sm-height,
|
555
|
+
.pf-c-page__main-subnav.pf-m-sticky-top-on-sm-height {
|
556
556
|
position: sticky;
|
557
557
|
top: 0;
|
558
558
|
z-index: var(--pf-c-page--section--m-sticky-top--ZIndex);
|
559
559
|
box-shadow: var(--pf-c-page--section--m-sticky-top--BoxShadow);
|
560
560
|
}
|
561
561
|
.pf-c-page__main-nav.pf-m-sticky-bottom-on-sm-height,
|
562
|
-
.pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-sm-height,
|
563
|
-
.pf-c-page__main-tabs.pf-m-sticky-bottom-on-sm-height,
|
564
|
-
.pf-c-page__main-section.pf-m-sticky-bottom-on-sm-height,
|
565
|
-
.pf-c-page__main-wizard.pf-m-sticky-bottom-on-sm-height,
|
566
|
-
.pf-c-page__main-group.pf-m-sticky-bottom-on-sm-height,
|
567
|
-
.pf-c-page__main-subnav.pf-m-sticky-bottom-on-sm-height {
|
562
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-sm-height,
|
563
|
+
.pf-c-page__main-tabs.pf-m-sticky-bottom-on-sm-height,
|
564
|
+
.pf-c-page__main-section.pf-m-sticky-bottom-on-sm-height,
|
565
|
+
.pf-c-page__main-wizard.pf-m-sticky-bottom-on-sm-height,
|
566
|
+
.pf-c-page__main-group.pf-m-sticky-bottom-on-sm-height,
|
567
|
+
.pf-c-page__main-subnav.pf-m-sticky-bottom-on-sm-height {
|
568
568
|
position: sticky;
|
569
569
|
bottom: 0;
|
570
570
|
z-index: var(--pf-c-page--section--m-sticky-bottom--ZIndex);
|
@@ -573,24 +573,24 @@
|
|
573
573
|
}
|
574
574
|
@media (min-height: 40rem) {
|
575
575
|
.pf-c-page__main-nav.pf-m-sticky-top-on-md-height,
|
576
|
-
.pf-c-page__main-breadcrumb.pf-m-sticky-top-on-md-height,
|
577
|
-
.pf-c-page__main-tabs.pf-m-sticky-top-on-md-height,
|
578
|
-
.pf-c-page__main-section.pf-m-sticky-top-on-md-height,
|
579
|
-
.pf-c-page__main-wizard.pf-m-sticky-top-on-md-height,
|
580
|
-
.pf-c-page__main-group.pf-m-sticky-top-on-md-height,
|
581
|
-
.pf-c-page__main-subnav.pf-m-sticky-top-on-md-height {
|
576
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-top-on-md-height,
|
577
|
+
.pf-c-page__main-tabs.pf-m-sticky-top-on-md-height,
|
578
|
+
.pf-c-page__main-section.pf-m-sticky-top-on-md-height,
|
579
|
+
.pf-c-page__main-wizard.pf-m-sticky-top-on-md-height,
|
580
|
+
.pf-c-page__main-group.pf-m-sticky-top-on-md-height,
|
581
|
+
.pf-c-page__main-subnav.pf-m-sticky-top-on-md-height {
|
582
582
|
position: sticky;
|
583
583
|
top: 0;
|
584
584
|
z-index: var(--pf-c-page--section--m-sticky-top--ZIndex);
|
585
585
|
box-shadow: var(--pf-c-page--section--m-sticky-top--BoxShadow);
|
586
586
|
}
|
587
587
|
.pf-c-page__main-nav.pf-m-sticky-bottom-on-md-height,
|
588
|
-
.pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-md-height,
|
589
|
-
.pf-c-page__main-tabs.pf-m-sticky-bottom-on-md-height,
|
590
|
-
.pf-c-page__main-section.pf-m-sticky-bottom-on-md-height,
|
591
|
-
.pf-c-page__main-wizard.pf-m-sticky-bottom-on-md-height,
|
592
|
-
.pf-c-page__main-group.pf-m-sticky-bottom-on-md-height,
|
593
|
-
.pf-c-page__main-subnav.pf-m-sticky-bottom-on-md-height {
|
588
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-md-height,
|
589
|
+
.pf-c-page__main-tabs.pf-m-sticky-bottom-on-md-height,
|
590
|
+
.pf-c-page__main-section.pf-m-sticky-bottom-on-md-height,
|
591
|
+
.pf-c-page__main-wizard.pf-m-sticky-bottom-on-md-height,
|
592
|
+
.pf-c-page__main-group.pf-m-sticky-bottom-on-md-height,
|
593
|
+
.pf-c-page__main-subnav.pf-m-sticky-bottom-on-md-height {
|
594
594
|
position: sticky;
|
595
595
|
bottom: 0;
|
596
596
|
z-index: var(--pf-c-page--section--m-sticky-bottom--ZIndex);
|
@@ -599,24 +599,24 @@
|
|
599
599
|
}
|
600
600
|
@media (min-height: 48rem) {
|
601
601
|
.pf-c-page__main-nav.pf-m-sticky-top-on-lg-height,
|
602
|
-
.pf-c-page__main-breadcrumb.pf-m-sticky-top-on-lg-height,
|
603
|
-
.pf-c-page__main-tabs.pf-m-sticky-top-on-lg-height,
|
604
|
-
.pf-c-page__main-section.pf-m-sticky-top-on-lg-height,
|
605
|
-
.pf-c-page__main-wizard.pf-m-sticky-top-on-lg-height,
|
606
|
-
.pf-c-page__main-group.pf-m-sticky-top-on-lg-height,
|
607
|
-
.pf-c-page__main-subnav.pf-m-sticky-top-on-lg-height {
|
602
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-top-on-lg-height,
|
603
|
+
.pf-c-page__main-tabs.pf-m-sticky-top-on-lg-height,
|
604
|
+
.pf-c-page__main-section.pf-m-sticky-top-on-lg-height,
|
605
|
+
.pf-c-page__main-wizard.pf-m-sticky-top-on-lg-height,
|
606
|
+
.pf-c-page__main-group.pf-m-sticky-top-on-lg-height,
|
607
|
+
.pf-c-page__main-subnav.pf-m-sticky-top-on-lg-height {
|
608
608
|
position: sticky;
|
609
609
|
top: 0;
|
610
610
|
z-index: var(--pf-c-page--section--m-sticky-top--ZIndex);
|
611
611
|
box-shadow: var(--pf-c-page--section--m-sticky-top--BoxShadow);
|
612
612
|
}
|
613
613
|
.pf-c-page__main-nav.pf-m-sticky-bottom-on-lg-height,
|
614
|
-
.pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-lg-height,
|
615
|
-
.pf-c-page__main-tabs.pf-m-sticky-bottom-on-lg-height,
|
616
|
-
.pf-c-page__main-section.pf-m-sticky-bottom-on-lg-height,
|
617
|
-
.pf-c-page__main-wizard.pf-m-sticky-bottom-on-lg-height,
|
618
|
-
.pf-c-page__main-group.pf-m-sticky-bottom-on-lg-height,
|
619
|
-
.pf-c-page__main-subnav.pf-m-sticky-bottom-on-lg-height {
|
614
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-lg-height,
|
615
|
+
.pf-c-page__main-tabs.pf-m-sticky-bottom-on-lg-height,
|
616
|
+
.pf-c-page__main-section.pf-m-sticky-bottom-on-lg-height,
|
617
|
+
.pf-c-page__main-wizard.pf-m-sticky-bottom-on-lg-height,
|
618
|
+
.pf-c-page__main-group.pf-m-sticky-bottom-on-lg-height,
|
619
|
+
.pf-c-page__main-subnav.pf-m-sticky-bottom-on-lg-height {
|
620
620
|
position: sticky;
|
621
621
|
bottom: 0;
|
622
622
|
z-index: var(--pf-c-page--section--m-sticky-bottom--ZIndex);
|
@@ -625,24 +625,24 @@
|
|
625
625
|
}
|
626
626
|
@media (min-height: 60rem) {
|
627
627
|
.pf-c-page__main-nav.pf-m-sticky-top-on-xl-height,
|
628
|
-
.pf-c-page__main-breadcrumb.pf-m-sticky-top-on-xl-height,
|
629
|
-
.pf-c-page__main-tabs.pf-m-sticky-top-on-xl-height,
|
630
|
-
.pf-c-page__main-section.pf-m-sticky-top-on-xl-height,
|
631
|
-
.pf-c-page__main-wizard.pf-m-sticky-top-on-xl-height,
|
632
|
-
.pf-c-page__main-group.pf-m-sticky-top-on-xl-height,
|
633
|
-
.pf-c-page__main-subnav.pf-m-sticky-top-on-xl-height {
|
628
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-top-on-xl-height,
|
629
|
+
.pf-c-page__main-tabs.pf-m-sticky-top-on-xl-height,
|
630
|
+
.pf-c-page__main-section.pf-m-sticky-top-on-xl-height,
|
631
|
+
.pf-c-page__main-wizard.pf-m-sticky-top-on-xl-height,
|
632
|
+
.pf-c-page__main-group.pf-m-sticky-top-on-xl-height,
|
633
|
+
.pf-c-page__main-subnav.pf-m-sticky-top-on-xl-height {
|
634
634
|
position: sticky;
|
635
635
|
top: 0;
|
636
636
|
z-index: var(--pf-c-page--section--m-sticky-top--ZIndex);
|
637
637
|
box-shadow: var(--pf-c-page--section--m-sticky-top--BoxShadow);
|
638
638
|
}
|
639
639
|
.pf-c-page__main-nav.pf-m-sticky-bottom-on-xl-height,
|
640
|
-
.pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-xl-height,
|
641
|
-
.pf-c-page__main-tabs.pf-m-sticky-bottom-on-xl-height,
|
642
|
-
.pf-c-page__main-section.pf-m-sticky-bottom-on-xl-height,
|
643
|
-
.pf-c-page__main-wizard.pf-m-sticky-bottom-on-xl-height,
|
644
|
-
.pf-c-page__main-group.pf-m-sticky-bottom-on-xl-height,
|
645
|
-
.pf-c-page__main-subnav.pf-m-sticky-bottom-on-xl-height {
|
640
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-xl-height,
|
641
|
+
.pf-c-page__main-tabs.pf-m-sticky-bottom-on-xl-height,
|
642
|
+
.pf-c-page__main-section.pf-m-sticky-bottom-on-xl-height,
|
643
|
+
.pf-c-page__main-wizard.pf-m-sticky-bottom-on-xl-height,
|
644
|
+
.pf-c-page__main-group.pf-m-sticky-bottom-on-xl-height,
|
645
|
+
.pf-c-page__main-subnav.pf-m-sticky-bottom-on-xl-height {
|
646
646
|
position: sticky;
|
647
647
|
bottom: 0;
|
648
648
|
z-index: var(--pf-c-page--section--m-sticky-bottom--ZIndex);
|
@@ -651,24 +651,24 @@
|
|
651
651
|
}
|
652
652
|
@media (min-height: 80rem) {
|
653
653
|
.pf-c-page__main-nav.pf-m-sticky-top-on-2xl-height,
|
654
|
-
.pf-c-page__main-breadcrumb.pf-m-sticky-top-on-2xl-height,
|
655
|
-
.pf-c-page__main-tabs.pf-m-sticky-top-on-2xl-height,
|
656
|
-
.pf-c-page__main-section.pf-m-sticky-top-on-2xl-height,
|
657
|
-
.pf-c-page__main-wizard.pf-m-sticky-top-on-2xl-height,
|
658
|
-
.pf-c-page__main-group.pf-m-sticky-top-on-2xl-height,
|
659
|
-
.pf-c-page__main-subnav.pf-m-sticky-top-on-2xl-height {
|
654
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-top-on-2xl-height,
|
655
|
+
.pf-c-page__main-tabs.pf-m-sticky-top-on-2xl-height,
|
656
|
+
.pf-c-page__main-section.pf-m-sticky-top-on-2xl-height,
|
657
|
+
.pf-c-page__main-wizard.pf-m-sticky-top-on-2xl-height,
|
658
|
+
.pf-c-page__main-group.pf-m-sticky-top-on-2xl-height,
|
659
|
+
.pf-c-page__main-subnav.pf-m-sticky-top-on-2xl-height {
|
660
660
|
position: sticky;
|
661
661
|
top: 0;
|
662
662
|
z-index: var(--pf-c-page--section--m-sticky-top--ZIndex);
|
663
663
|
box-shadow: var(--pf-c-page--section--m-sticky-top--BoxShadow);
|
664
664
|
}
|
665
665
|
.pf-c-page__main-nav.pf-m-sticky-bottom-on-2xl-height,
|
666
|
-
.pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-2xl-height,
|
667
|
-
.pf-c-page__main-tabs.pf-m-sticky-bottom-on-2xl-height,
|
668
|
-
.pf-c-page__main-section.pf-m-sticky-bottom-on-2xl-height,
|
669
|
-
.pf-c-page__main-wizard.pf-m-sticky-bottom-on-2xl-height,
|
670
|
-
.pf-c-page__main-group.pf-m-sticky-bottom-on-2xl-height,
|
671
|
-
.pf-c-page__main-subnav.pf-m-sticky-bottom-on-2xl-height {
|
666
|
+
.pf-c-page__main-breadcrumb.pf-m-sticky-bottom-on-2xl-height,
|
667
|
+
.pf-c-page__main-tabs.pf-m-sticky-bottom-on-2xl-height,
|
668
|
+
.pf-c-page__main-section.pf-m-sticky-bottom-on-2xl-height,
|
669
|
+
.pf-c-page__main-wizard.pf-m-sticky-bottom-on-2xl-height,
|
670
|
+
.pf-c-page__main-group.pf-m-sticky-bottom-on-2xl-height,
|
671
|
+
.pf-c-page__main-subnav.pf-m-sticky-bottom-on-2xl-height {
|
672
672
|
position: sticky;
|
673
673
|
bottom: 0;
|
674
674
|
z-index: var(--pf-c-page--section--m-sticky-bottom--ZIndex);
|
@@ -145,8 +145,8 @@
|
|
145
145
|
padding: var(--pf-c-pagination--m-bottom--md--PaddingTop) var(--pf-c-pagination--m-bottom--md--PaddingRight) var(--pf-c-pagination--m-bottom--md--PaddingBottom) var(--pf-c-pagination--m-bottom--md--PaddingLeft);
|
146
146
|
}
|
147
147
|
.pf-c-pagination.pf-m-bottom .pf-c-pagination__nav-control.pf-m-first,
|
148
|
-
.pf-c-pagination.pf-m-bottom .pf-c-pagination__nav-control.pf-m-last,
|
149
|
-
.pf-c-pagination.pf-m-bottom .pf-c-pagination__nav-page-select {
|
148
|
+
.pf-c-pagination.pf-m-bottom .pf-c-pagination__nav-control.pf-m-last,
|
149
|
+
.pf-c-pagination.pf-m-bottom .pf-c-pagination__nav-page-select {
|
150
150
|
display: block;
|
151
151
|
}
|
152
152
|
.pf-c-pagination.pf-m-bottom .pf-c-options-menu {
|
@@ -34,15 +34,13 @@
|
|
34
34
|
--pf-c-popover__arrow--m-left--TranslateX: 50%;
|
35
35
|
--pf-c-popover__arrow--m-left--TranslateY: -50%;
|
36
36
|
--pf-c-popover__arrow--m-left--Rotate: 45deg;
|
37
|
-
--pf-c-
|
38
|
-
--pf-c-
|
39
|
-
--pf-c-
|
40
|
-
--pf-c-
|
41
|
-
--pf-c-
|
42
|
-
--pf-c-popover__title--
|
43
|
-
--pf-c-popover__title--
|
44
|
-
--pf-c-popover__title--FontFamily: var(--pf-global--FontFamily--heading--sans-serif);
|
45
|
-
--pf-c-popover__title--FontSize: var(--pf-global--FontSize--md);
|
37
|
+
--pf-c-popover__close--Top: calc(var(--pf-c-popover__content--PaddingTop) - var(--pf-global--spacer--form-element));
|
38
|
+
--pf-c-popover__close--Right: calc(var(--pf-c-popover__content--PaddingRight) - var(--pf-global--spacer--md));
|
39
|
+
--pf-c-popover__close--sibling--PaddingRight: var(--pf-global--spacer--2xl);
|
40
|
+
--pf-c-popover__header--MarginBottom: var(--pf-global--spacer--sm);
|
41
|
+
--pf-c-popover__title-text--LineHeight: var(--pf-global--LineHeight--md);
|
42
|
+
--pf-c-popover__title-text--FontFamily: var(--pf-global--FontFamily--heading--sans-serif);
|
43
|
+
--pf-c-popover__title-text--FontSize: var(--pf-global--FontSize--md);
|
46
44
|
--pf-c-popover__title-icon--MarginRight: var(--pf-global--spacer--sm);
|
47
45
|
--pf-c-popover__title-icon--Color: var(--pf-global--Color--100);
|
48
46
|
--pf-c-popover__footer--MarginTop: var(--pf-global--spacer--md);
|
@@ -122,16 +120,14 @@
|
|
122
120
|
padding: var(--pf-c-popover__content--PaddingTop) var(--pf-c-popover__content--PaddingRight) var(--pf-c-popover__content--PaddingBottom) var(--pf-c-popover__content--PaddingLeft);
|
123
121
|
background-color: var(--pf-c-popover__content--BackgroundColor);
|
124
122
|
}
|
125
|
-
|
126
|
-
|
127
|
-
}
|
128
|
-
.pf-c-popover__content > .pf-c-button {
|
123
|
+
|
124
|
+
.pf-c-popover__close {
|
129
125
|
position: absolute;
|
130
|
-
top: var(--pf-c-
|
131
|
-
right: var(--pf-c-
|
126
|
+
top: var(--pf-c-popover__close--Top);
|
127
|
+
right: var(--pf-c-popover__close--Right);
|
132
128
|
}
|
133
|
-
.pf-c-
|
134
|
-
padding-right: var(--pf-c-
|
129
|
+
.pf-c-popover__close + * {
|
130
|
+
padding-right: var(--pf-c-popover__close--sibling--PaddingRight);
|
135
131
|
}
|
136
132
|
|
137
133
|
.pf-c-popover__arrow {
|
@@ -143,15 +139,13 @@
|
|
143
139
|
box-shadow: var(--pf-c-popover__arrow--BoxShadow);
|
144
140
|
}
|
145
141
|
|
146
|
-
.pf-c-
|
147
|
-
|
148
|
-
margin-bottom: var(--pf-c-popover__title--MarginBottom);
|
149
|
-
font-family: var(--pf-c-popover__title--FontFamily);
|
150
|
-
font-size: var(--pf-c-popover__title--FontSize);
|
151
|
-
line-height: var(--pf-c-popover__title--LineHeight);
|
142
|
+
.pf-c-popover__header {
|
143
|
+
margin-bottom: var(--pf-c-popover__header--MarginBottom);
|
152
144
|
}
|
153
|
-
|
145
|
+
|
146
|
+
.pf-c-popover__title {
|
154
147
|
display: flex;
|
148
|
+
flex: 0 0 auto;
|
155
149
|
}
|
156
150
|
|
157
151
|
.pf-c-popover__title-icon {
|
@@ -160,6 +154,9 @@
|
|
160
154
|
}
|
161
155
|
|
162
156
|
.pf-c-popover__title-text {
|
157
|
+
font-family: var(--pf-c-popover__title-text--FontFamily);
|
158
|
+
font-size: var(--pf-c-popover__title-text--FontSize);
|
159
|
+
line-height: var(--pf-c-popover__title-text--LineHeight);
|
163
160
|
color: var(--pf-c-popover__title-text--Color, inherit);
|
164
161
|
}
|
165
162
|
|
@@ -1,6 +1,5 @@
|
|
1
1
|
import './popover.css';
|
2
2
|
declare const _default: {
|
3
|
-
"button": "pf-c-button",
|
4
3
|
"modifiers": {
|
5
4
|
"noPadding": "pf-m-no-padding",
|
6
5
|
"widthAuto": "pf-m-width-auto",
|
@@ -20,18 +19,18 @@ declare const _default: {
|
|
20
19
|
"warning": "pf-m-warning",
|
21
20
|
"success": "pf-m-success",
|
22
21
|
"default": "pf-m-default",
|
23
|
-
"info": "pf-m-info"
|
24
|
-
"icon": "pf-m-icon"
|
22
|
+
"info": "pf-m-info"
|
25
23
|
},
|
26
24
|
"popover": "pf-c-popover",
|
27
25
|
"popoverArrow": "pf-c-popover__arrow",
|
28
26
|
"popoverBody": "pf-c-popover__body",
|
27
|
+
"popoverClose": "pf-c-popover__close",
|
29
28
|
"popoverContent": "pf-c-popover__content",
|
30
29
|
"popoverFooter": "pf-c-popover__footer",
|
30
|
+
"popoverHeader": "pf-c-popover__header",
|
31
31
|
"popoverTitle": "pf-c-popover__title",
|
32
32
|
"popoverTitleIcon": "pf-c-popover__title-icon",
|
33
33
|
"popoverTitleText": "pf-c-popover__title-text",
|
34
|
-
"themeDark": "pf-theme-dark"
|
35
|
-
"title": "pf-c-title"
|
34
|
+
"themeDark": "pf-theme-dark"
|
36
35
|
};
|
37
36
|
export default _default;
|
@@ -2,7 +2,6 @@
|
|
2
2
|
exports.__esModule = true;
|
3
3
|
require('./popover.css');
|
4
4
|
exports.default = {
|
5
|
-
"button": "pf-c-button",
|
6
5
|
"modifiers": {
|
7
6
|
"noPadding": "pf-m-no-padding",
|
8
7
|
"widthAuto": "pf-m-width-auto",
|
@@ -22,17 +21,17 @@ exports.default = {
|
|
22
21
|
"warning": "pf-m-warning",
|
23
22
|
"success": "pf-m-success",
|
24
23
|
"default": "pf-m-default",
|
25
|
-
"info": "pf-m-info"
|
26
|
-
"icon": "pf-m-icon"
|
24
|
+
"info": "pf-m-info"
|
27
25
|
},
|
28
26
|
"popover": "pf-c-popover",
|
29
27
|
"popoverArrow": "pf-c-popover__arrow",
|
30
28
|
"popoverBody": "pf-c-popover__body",
|
29
|
+
"popoverClose": "pf-c-popover__close",
|
31
30
|
"popoverContent": "pf-c-popover__content",
|
32
31
|
"popoverFooter": "pf-c-popover__footer",
|
32
|
+
"popoverHeader": "pf-c-popover__header",
|
33
33
|
"popoverTitle": "pf-c-popover__title",
|
34
34
|
"popoverTitleIcon": "pf-c-popover__title-icon",
|
35
35
|
"popoverTitleText": "pf-c-popover__title-text",
|
36
|
-
"themeDark": "pf-theme-dark"
|
37
|
-
"title": "pf-c-title"
|
36
|
+
"themeDark": "pf-theme-dark"
|
38
37
|
};
|
@@ -1,6 +1,5 @@
|
|
1
1
|
import './popover.css';
|
2
2
|
export default {
|
3
|
-
"button": "pf-c-button",
|
4
3
|
"modifiers": {
|
5
4
|
"noPadding": "pf-m-no-padding",
|
6
5
|
"widthAuto": "pf-m-width-auto",
|
@@ -20,17 +19,17 @@ export default {
|
|
20
19
|
"warning": "pf-m-warning",
|
21
20
|
"success": "pf-m-success",
|
22
21
|
"default": "pf-m-default",
|
23
|
-
"info": "pf-m-info"
|
24
|
-
"icon": "pf-m-icon"
|
22
|
+
"info": "pf-m-info"
|
25
23
|
},
|
26
24
|
"popover": "pf-c-popover",
|
27
25
|
"popoverArrow": "pf-c-popover__arrow",
|
28
26
|
"popoverBody": "pf-c-popover__body",
|
27
|
+
"popoverClose": "pf-c-popover__close",
|
29
28
|
"popoverContent": "pf-c-popover__content",
|
30
29
|
"popoverFooter": "pf-c-popover__footer",
|
30
|
+
"popoverHeader": "pf-c-popover__header",
|
31
31
|
"popoverTitle": "pf-c-popover__title",
|
32
32
|
"popoverTitleIcon": "pf-c-popover__title-icon",
|
33
33
|
"popoverTitleText": "pf-c-popover__title-text",
|
34
|
-
"themeDark": "pf-theme-dark"
|
35
|
-
"title": "pf-c-title"
|
34
|
+
"themeDark": "pf-theme-dark"
|
36
35
|
};
|
@@ -4,8 +4,8 @@
|
|
4
4
|
--pf-c-progress__bar--Height: var(--pf-global--spacer--md);
|
5
5
|
--pf-c-progress__bar--BackgroundColor: var(--pf-global--BackgroundColor--light-100);
|
6
6
|
--pf-c-progress__measure--m-static-width--MinWidth: 4.5ch;
|
7
|
+
--pf-c-progress__status--Gap: var(--pf-global--spacer--sm);
|
7
8
|
--pf-c-progress__status-icon--Color: var(--pf-global--Color--100);
|
8
|
-
--pf-c-progress__status-icon--MarginLeft: var(--pf-global--spacer--sm);
|
9
9
|
--pf-c-progress__bar--before--Opacity: .2;
|
10
10
|
--pf-c-progress__indicator--Height: var(--pf-c-progress__bar--Height);
|
11
11
|
--pf-c-progress__indicator--BackgroundColor: var(--pf-c-progress__bar--before--BackgroundColor);
|
@@ -118,14 +118,17 @@
|
|
118
118
|
}
|
119
119
|
|
120
120
|
.pf-c-progress__status {
|
121
|
+
display: flex;
|
122
|
+
align-items: flex-start;
|
123
|
+
justify-content: flex-end;
|
121
124
|
grid-column: 2/3;
|
122
125
|
grid-row: 1/2;
|
123
126
|
text-align: right;
|
124
127
|
word-break: break-word;
|
128
|
+
gap: var(--pf-c-progress__status--Gap);
|
125
129
|
}
|
126
130
|
|
127
131
|
.pf-c-progress__status-icon {
|
128
|
-
margin-left: var(--pf-c-progress__status-icon--MarginLeft);
|
129
132
|
color: var(--pf-c-progress__status-icon--Color);
|
130
133
|
}
|
131
134
|
|
@@ -12,6 +12,7 @@
|
|
12
12
|
--pf-c-search-input__text-input--PaddingLeft: var(--pf-global--spacer--xl);
|
13
13
|
--pf-c-search-input__text-input--MinWidth: 6ch;
|
14
14
|
--pf-c-search-input__text-input--m-hint--Color: var(--pf-global--Color--dark-200);
|
15
|
+
--pf-c-search-input__text-input--BackgroundColor: transparent;
|
15
16
|
--pf-c-search-input__icon--Left: var(--pf-global--spacer--sm);
|
16
17
|
--pf-c-search-input__icon--Color: var(--pf-global--Color--200);
|
17
18
|
--pf-c-search-input__text--hover__icon--Color: var(--pf-global--Color--100);
|
@@ -99,6 +100,7 @@
|
|
99
100
|
width: 100%;
|
100
101
|
min-width: var(--pf-c-search-input__text-input--MinWidth);
|
101
102
|
padding: var(--pf-c-search-input__text-input--PaddingTop) var(--pf-c-search-input__text-input--PaddingRight) var(--pf-c-search-input__text-input--PaddingBottom) var(--pf-c-search-input__text-input--PaddingLeft);
|
103
|
+
background-color: var(--pf-c-search-input__text-input--BackgroundColor);
|
102
104
|
border: 0;
|
103
105
|
}
|
104
106
|
.pf-c-search-input__text-input, .pf-c-search-input__text-input.pf-m-hint {
|
@@ -418,7 +418,7 @@
|
|
418
418
|
border-bottom: var(--pf-c-table-tr--responsive--border-width--base) solid var(--pf-c-table--responsive--BorderColor);
|
419
419
|
}
|
420
420
|
.pf-m-grid-md.pf-c-table tr:last-child,
|
421
|
-
.pf-m-grid-md.pf-c-table tbody:last-of-type:not(:only-of-type) > tr {
|
421
|
+
.pf-m-grid-md.pf-c-table tbody:last-of-type:not(:only-of-type) > tr {
|
422
422
|
border-bottom-width: var(--pf-c-table-tr--responsive--last-child--BorderBottomWidth);
|
423
423
|
}
|
424
424
|
.pf-m-grid-md.pf-c-table tbody.pf-m-expanded {
|
@@ -563,7 +563,7 @@
|
|
563
563
|
--pf-c-table--tbody--after--BorderLeftColor: transparent;
|
564
564
|
}
|
565
565
|
.pf-m-grid-md.pf-c-table tbody.pf-m-hoverable,
|
566
|
-
.pf-m-grid-md.pf-c-table tbody.pf-m-hoverable > tr {
|
566
|
+
.pf-m-grid-md.pf-c-table tbody.pf-m-hoverable > tr {
|
567
567
|
position: relative;
|
568
568
|
}
|
569
569
|
.pf-m-grid-md.pf-c-table tbody.pf-m-hoverable > tr::after {
|
@@ -593,9 +593,9 @@
|
|
593
593
|
background-color: var(--pf-c-table--tr--m-selected--after--BorderLeftColor);
|
594
594
|
}
|
595
595
|
.pf-m-grid-md.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__toggle,
|
596
|
-
.pf-m-grid-md.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__check,
|
597
|
-
.pf-m-grid-md.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__favorite,
|
598
|
-
.pf-m-grid-md.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__action {
|
596
|
+
.pf-m-grid-md.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__check,
|
597
|
+
.pf-m-grid-md.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__favorite,
|
598
|
+
.pf-m-grid-md.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__action {
|
599
599
|
width: auto;
|
600
600
|
padding: 0;
|
601
601
|
}
|
@@ -615,8 +615,8 @@
|
|
615
615
|
--pf-c-table--cell--PaddingLeft: var(--pf-c-table--m-grid--cell--PaddingLeft);
|
616
616
|
}
|
617
617
|
.pf-m-grid-md.pf-c-table .pf-c-table__check,
|
618
|
-
.pf-m-grid-md.pf-c-table .pf-c-table__favorite,
|
619
|
-
.pf-m-grid-md.pf-c-table .pf-c-table__action {
|
618
|
+
.pf-m-grid-md.pf-c-table .pf-c-table__favorite,
|
619
|
+
.pf-m-grid-md.pf-c-table .pf-c-table__action {
|
620
620
|
grid-row-start: 1;
|
621
621
|
grid-column-start: 2;
|
622
622
|
}
|
@@ -733,7 +733,7 @@
|
|
733
733
|
border-bottom: var(--pf-c-table-tr--responsive--border-width--base) solid var(--pf-c-table--responsive--BorderColor);
|
734
734
|
}
|
735
735
|
.pf-m-grid-lg.pf-c-table tr:last-child,
|
736
|
-
.pf-m-grid-lg.pf-c-table tbody:last-of-type:not(:only-of-type) > tr {
|
736
|
+
.pf-m-grid-lg.pf-c-table tbody:last-of-type:not(:only-of-type) > tr {
|
737
737
|
border-bottom-width: var(--pf-c-table-tr--responsive--last-child--BorderBottomWidth);
|
738
738
|
}
|
739
739
|
.pf-m-grid-lg.pf-c-table tbody.pf-m-expanded {
|
@@ -878,7 +878,7 @@
|
|
878
878
|
--pf-c-table--tbody--after--BorderLeftColor: transparent;
|
879
879
|
}
|
880
880
|
.pf-m-grid-lg.pf-c-table tbody.pf-m-hoverable,
|
881
|
-
.pf-m-grid-lg.pf-c-table tbody.pf-m-hoverable > tr {
|
881
|
+
.pf-m-grid-lg.pf-c-table tbody.pf-m-hoverable > tr {
|
882
882
|
position: relative;
|
883
883
|
}
|
884
884
|
.pf-m-grid-lg.pf-c-table tbody.pf-m-hoverable > tr::after {
|
@@ -908,9 +908,9 @@
|
|
908
908
|
background-color: var(--pf-c-table--tr--m-selected--after--BorderLeftColor);
|
909
909
|
}
|
910
910
|
.pf-m-grid-lg.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__toggle,
|
911
|
-
.pf-m-grid-lg.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__check,
|
912
|
-
.pf-m-grid-lg.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__favorite,
|
913
|
-
.pf-m-grid-lg.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__action {
|
911
|
+
.pf-m-grid-lg.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__check,
|
912
|
+
.pf-m-grid-lg.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__favorite,
|
913
|
+
.pf-m-grid-lg.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__action {
|
914
914
|
width: auto;
|
915
915
|
padding: 0;
|
916
916
|
}
|
@@ -930,8 +930,8 @@
|
|
930
930
|
--pf-c-table--cell--PaddingLeft: var(--pf-c-table--m-grid--cell--PaddingLeft);
|
931
931
|
}
|
932
932
|
.pf-m-grid-lg.pf-c-table .pf-c-table__check,
|
933
|
-
.pf-m-grid-lg.pf-c-table .pf-c-table__favorite,
|
934
|
-
.pf-m-grid-lg.pf-c-table .pf-c-table__action {
|
933
|
+
.pf-m-grid-lg.pf-c-table .pf-c-table__favorite,
|
934
|
+
.pf-m-grid-lg.pf-c-table .pf-c-table__action {
|
935
935
|
grid-row-start: 1;
|
936
936
|
grid-column-start: 2;
|
937
937
|
}
|
@@ -1048,7 +1048,7 @@
|
|
1048
1048
|
border-bottom: var(--pf-c-table-tr--responsive--border-width--base) solid var(--pf-c-table--responsive--BorderColor);
|
1049
1049
|
}
|
1050
1050
|
.pf-m-grid-xl.pf-c-table tr:last-child,
|
1051
|
-
.pf-m-grid-xl.pf-c-table tbody:last-of-type:not(:only-of-type) > tr {
|
1051
|
+
.pf-m-grid-xl.pf-c-table tbody:last-of-type:not(:only-of-type) > tr {
|
1052
1052
|
border-bottom-width: var(--pf-c-table-tr--responsive--last-child--BorderBottomWidth);
|
1053
1053
|
}
|
1054
1054
|
.pf-m-grid-xl.pf-c-table tbody.pf-m-expanded {
|
@@ -1193,7 +1193,7 @@
|
|
1193
1193
|
--pf-c-table--tbody--after--BorderLeftColor: transparent;
|
1194
1194
|
}
|
1195
1195
|
.pf-m-grid-xl.pf-c-table tbody.pf-m-hoverable,
|
1196
|
-
.pf-m-grid-xl.pf-c-table tbody.pf-m-hoverable > tr {
|
1196
|
+
.pf-m-grid-xl.pf-c-table tbody.pf-m-hoverable > tr {
|
1197
1197
|
position: relative;
|
1198
1198
|
}
|
1199
1199
|
.pf-m-grid-xl.pf-c-table tbody.pf-m-hoverable > tr::after {
|
@@ -1223,9 +1223,9 @@
|
|
1223
1223
|
background-color: var(--pf-c-table--tr--m-selected--after--BorderLeftColor);
|
1224
1224
|
}
|
1225
1225
|
.pf-m-grid-xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__toggle,
|
1226
|
-
.pf-m-grid-xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__check,
|
1227
|
-
.pf-m-grid-xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__favorite,
|
1228
|
-
.pf-m-grid-xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__action {
|
1226
|
+
.pf-m-grid-xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__check,
|
1227
|
+
.pf-m-grid-xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__favorite,
|
1228
|
+
.pf-m-grid-xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__action {
|
1229
1229
|
width: auto;
|
1230
1230
|
padding: 0;
|
1231
1231
|
}
|
@@ -1245,8 +1245,8 @@
|
|
1245
1245
|
--pf-c-table--cell--PaddingLeft: var(--pf-c-table--m-grid--cell--PaddingLeft);
|
1246
1246
|
}
|
1247
1247
|
.pf-m-grid-xl.pf-c-table .pf-c-table__check,
|
1248
|
-
.pf-m-grid-xl.pf-c-table .pf-c-table__favorite,
|
1249
|
-
.pf-m-grid-xl.pf-c-table .pf-c-table__action {
|
1248
|
+
.pf-m-grid-xl.pf-c-table .pf-c-table__favorite,
|
1249
|
+
.pf-m-grid-xl.pf-c-table .pf-c-table__action {
|
1250
1250
|
grid-row-start: 1;
|
1251
1251
|
grid-column-start: 2;
|
1252
1252
|
}
|
@@ -1363,7 +1363,7 @@
|
|
1363
1363
|
border-bottom: var(--pf-c-table-tr--responsive--border-width--base) solid var(--pf-c-table--responsive--BorderColor);
|
1364
1364
|
}
|
1365
1365
|
.pf-m-grid-2xl.pf-c-table tr:last-child,
|
1366
|
-
.pf-m-grid-2xl.pf-c-table tbody:last-of-type:not(:only-of-type) > tr {
|
1366
|
+
.pf-m-grid-2xl.pf-c-table tbody:last-of-type:not(:only-of-type) > tr {
|
1367
1367
|
border-bottom-width: var(--pf-c-table-tr--responsive--last-child--BorderBottomWidth);
|
1368
1368
|
}
|
1369
1369
|
.pf-m-grid-2xl.pf-c-table tbody.pf-m-expanded {
|
@@ -1508,7 +1508,7 @@
|
|
1508
1508
|
--pf-c-table--tbody--after--BorderLeftColor: transparent;
|
1509
1509
|
}
|
1510
1510
|
.pf-m-grid-2xl.pf-c-table tbody.pf-m-hoverable,
|
1511
|
-
.pf-m-grid-2xl.pf-c-table tbody.pf-m-hoverable > tr {
|
1511
|
+
.pf-m-grid-2xl.pf-c-table tbody.pf-m-hoverable > tr {
|
1512
1512
|
position: relative;
|
1513
1513
|
}
|
1514
1514
|
.pf-m-grid-2xl.pf-c-table tbody.pf-m-hoverable > tr::after {
|
@@ -1538,9 +1538,9 @@
|
|
1538
1538
|
background-color: var(--pf-c-table--tr--m-selected--after--BorderLeftColor);
|
1539
1539
|
}
|
1540
1540
|
.pf-m-grid-2xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__toggle,
|
1541
|
-
.pf-m-grid-2xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__check,
|
1542
|
-
.pf-m-grid-2xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__favorite,
|
1543
|
-
.pf-m-grid-2xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__action {
|
1541
|
+
.pf-m-grid-2xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__check,
|
1542
|
+
.pf-m-grid-2xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__favorite,
|
1543
|
+
.pf-m-grid-2xl.pf-c-table tr:not(.pf-c-table__expandable-row) .pf-c-table__action {
|
1544
1544
|
width: auto;
|
1545
1545
|
padding: 0;
|
1546
1546
|
}
|
@@ -1560,8 +1560,8 @@
|
|
1560
1560
|
--pf-c-table--cell--PaddingLeft: var(--pf-c-table--m-grid--cell--PaddingLeft);
|
1561
1561
|
}
|
1562
1562
|
.pf-m-grid-2xl.pf-c-table .pf-c-table__check,
|
1563
|
-
.pf-m-grid-2xl.pf-c-table .pf-c-table__favorite,
|
1564
|
-
.pf-m-grid-2xl.pf-c-table .pf-c-table__action {
|
1563
|
+
.pf-m-grid-2xl.pf-c-table .pf-c-table__favorite,
|
1564
|
+
.pf-m-grid-2xl.pf-c-table .pf-c-table__action {
|
1565
1565
|
grid-row-start: 1;
|
1566
1566
|
grid-column-start: 2;
|
1567
1567
|
}
|