@patternfly/patternfly 5.0.0-alpha.5 → 5.0.0-alpha.7
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 +29 -17
- package/components/ChipGroup/chip-group.scss +39 -22
- package/components/EmptyState/empty-state.css +46 -52
- package/components/EmptyState/empty-state.scss +58 -57
- package/components/Toolbar/toolbar.css +30 -2
- package/components/Toolbar/toolbar.scss +37 -3
- package/docs/components/CodeEditor/examples/CodeEditor.md +2 -6
- package/docs/components/EmptyState/examples/EmptyState.md +127 -79
- package/docs/components/Toolbar/examples/Toolbar.md +19 -16
- package/docs/components/Wizard/examples/Wizard.md +4 -7
- package/docs/demos/CardView/examples/CardView.md +1 -3
- package/docs/demos/DataList/examples/DataList.md +2 -4
- package/docs/demos/Masthead/examples/Masthead.md +3 -6
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +9 -6
- package/docs/demos/Table/examples/Table.md +18 -32
- package/docs/demos/Toolbar/examples/Toolbar.md +1589 -9
- package/package.json +1 -1
- package/patternfly-no-reset.css +105 -71
- package/patternfly.css +105 -71
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
package/patternfly.css
CHANGED
|
@@ -8749,28 +8749,40 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8749
8749
|
|
|
8750
8750
|
.pf-c-chip-group {
|
|
8751
8751
|
color: var(--pf-global--Color--100);
|
|
8752
|
-
--pf-c-chip-
|
|
8753
|
-
--pf-c-chip-
|
|
8752
|
+
--pf-c-chip-group--PaddingTop: 0;
|
|
8753
|
+
--pf-c-chip-group--PaddingRight: 0;
|
|
8754
|
+
--pf-c-chip-group--PaddingBottom: 0;
|
|
8755
|
+
--pf-c-chip-group--PaddingLeft: 0;
|
|
8756
|
+
--pf-c-chip-group--RowGap: var(--pf-global--spacer--sm);
|
|
8757
|
+
--pf-c-chip-group--ColumnGap: var(--pf-global--spacer--sm);
|
|
8758
|
+
--pf-c-chip-group__main--RowGap: var(--pf-global--spacer--xs);
|
|
8759
|
+
--pf-c-chip-group__main--ColumnGap: var(--pf-global--spacer--sm);
|
|
8760
|
+
--pf-c-chip-group__list--RowGap: var(--pf-global--spacer--xs);
|
|
8761
|
+
--pf-c-chip-group__list--ColumnGap: var(--pf-global--spacer--xs);
|
|
8754
8762
|
--pf-c-chip-group--m-category--PaddingTop: var(--pf-global--spacer--xs);
|
|
8755
8763
|
--pf-c-chip-group--m-category--PaddingRight: var(--pf-global--spacer--xs);
|
|
8756
8764
|
--pf-c-chip-group--m-category--PaddingBottom: var(--pf-global--spacer--xs);
|
|
8757
8765
|
--pf-c-chip-group--m-category--PaddingLeft: var(--pf-global--spacer--sm);
|
|
8758
8766
|
--pf-c-chip-group--m-category--BorderRadius: var(--pf-global--BorderRadius--sm);
|
|
8759
8767
|
--pf-c-chip-group--m-category--BackgroundColor: var(--pf-global--BackgroundColor--200);
|
|
8760
|
-
--pf-c-chip-group__label--MarginRight: var(--pf-global--spacer--sm);
|
|
8761
8768
|
--pf-c-chip-group__label--FontSize: var(--pf-global--FontSize--sm);
|
|
8762
8769
|
--pf-c-chip-group__label--MaxWidth: 18ch;
|
|
8763
8770
|
--pf-c-chip-group__close--MarginTop: calc(var(--pf-global--spacer--xs) * -1);
|
|
8764
8771
|
--pf-c-chip-group__close--MarginBottom: calc(var(--pf-global--spacer--xs) * -1);
|
|
8765
|
-
--pf-c-chip-
|
|
8766
|
-
--pf-c-chip-group__list-item--MarginBottom: var(--pf-global--spacer--xs);
|
|
8772
|
+
--pf-c-chip-group__close--MarginLeft: calc(var(--pf-global--spacer--sm) * -1);
|
|
8767
8773
|
max-width: 100%;
|
|
8774
|
+
padding-top: var(--pf-c-chip-group--PaddingTop);
|
|
8775
|
+
padding-right: var(--pf-c-chip-group--PaddingRight);
|
|
8776
|
+
padding-bottom: var(--pf-c-chip-group--PaddingBottom);
|
|
8777
|
+
padding-left: var(--pf-c-chip-group--PaddingLeft);
|
|
8778
|
+
row-gap: var(--pf-c-chip-group--RowGap);
|
|
8779
|
+
column-gap: var(--pf-c-chip-group--ColumnGap);
|
|
8768
8780
|
}
|
|
8769
8781
|
.pf-c-chip-group.pf-m-category {
|
|
8770
|
-
|
|
8771
|
-
|
|
8772
|
-
|
|
8773
|
-
|
|
8782
|
+
--pf-c-chip-group--PaddingTop: var(--pf-c-chip-group--m-category--PaddingTop);
|
|
8783
|
+
--pf-c-chip-group--PaddingRight: var(--pf-c-chip-group--m-category--PaddingRight);
|
|
8784
|
+
--pf-c-chip-group--PaddingBottom: var(--pf-c-chip-group--m-category--PaddingBottom);
|
|
8785
|
+
--pf-c-chip-group--PaddingLeft: var(--pf-c-chip-group--m-category--PaddingLeft);
|
|
8774
8786
|
background-color: var(--pf-c-chip-group--m-category--BackgroundColor);
|
|
8775
8787
|
border-radius: var(--pf-c-chip-group--m-category--BorderRadius);
|
|
8776
8788
|
}
|
|
@@ -8781,11 +8793,8 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8781
8793
|
flex-wrap: wrap;
|
|
8782
8794
|
align-items: baseline;
|
|
8783
8795
|
min-width: 0;
|
|
8784
|
-
|
|
8785
|
-
|
|
8786
|
-
.pf-c-chip-group__list {
|
|
8787
|
-
margin-right: var(--pf-c-chip-group__list--MarginRight);
|
|
8788
|
-
margin-bottom: var(--pf-c-chip-group__list--MarginBottom);
|
|
8796
|
+
row-gap: var(--pf-c-chip-group__main--RowGap);
|
|
8797
|
+
column-gap: var(--pf-c-chip-group__main--ColumnGap);
|
|
8789
8798
|
}
|
|
8790
8799
|
|
|
8791
8800
|
.pf-c-chip-group,
|
|
@@ -8796,11 +8805,14 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8796
8805
|
min-width: 0;
|
|
8797
8806
|
}
|
|
8798
8807
|
|
|
8808
|
+
.pf-c-chip-group__list {
|
|
8809
|
+
row-gap: var(--pf-c-chip-group__list--RowGap);
|
|
8810
|
+
column-gap: var(--pf-c-chip-group__list--ColumnGap);
|
|
8811
|
+
}
|
|
8812
|
+
|
|
8799
8813
|
.pf-c-chip-group__list-item {
|
|
8800
8814
|
display: inline-flex;
|
|
8801
8815
|
min-width: 0;
|
|
8802
|
-
margin-right: var(--pf-c-chip-group__list-item--MarginRight);
|
|
8803
|
-
margin-bottom: var(--pf-c-chip-group__list-item--MarginBottom);
|
|
8804
8816
|
}
|
|
8805
8817
|
|
|
8806
8818
|
.pf-c-chip-group__label {
|
|
@@ -8808,7 +8820,6 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8808
8820
|
text-overflow: ellipsis;
|
|
8809
8821
|
white-space: nowrap;
|
|
8810
8822
|
max-width: var(--pf-c-chip-group__label--MaxWidth);
|
|
8811
|
-
margin-right: var(--pf-c-chip-group__label--MarginRight);
|
|
8812
8823
|
font-size: var(--pf-c-chip-group__label--FontSize);
|
|
8813
8824
|
}
|
|
8814
8825
|
|
|
@@ -8817,6 +8828,7 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8817
8828
|
align-self: flex-start;
|
|
8818
8829
|
margin-top: var(--pf-c-chip-group__close--MarginTop);
|
|
8819
8830
|
margin-bottom: var(--pf-c-chip-group__close--MarginBottom);
|
|
8831
|
+
margin-left: var(--pf-c-chip-group__close--MarginLeft);
|
|
8820
8832
|
}
|
|
8821
8833
|
|
|
8822
8834
|
.pf-c-clipboard-copy {
|
|
@@ -11316,13 +11328,17 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
11316
11328
|
--pf-c-toolbar--PaddingBottom: var(--pf-global--spacer--md);
|
|
11317
11329
|
--pf-c-toolbar__item--Display: block;
|
|
11318
11330
|
--pf-c-toolbar__item--MinWidth--base: auto;
|
|
11331
|
+
--pf-c-toolbar__item--AlignSelf: auto;
|
|
11319
11332
|
--pf-c-toolbar__group--Display: flex;
|
|
11333
|
+
--pf-c-toolbar__group--AlignItems: baseline;
|
|
11334
|
+
--pf-c-toolbar__group--AlignSelf: auto;
|
|
11320
11335
|
--pf-c-toolbar--m-sticky--ZIndex: var(--pf-global--ZIndex--xs);
|
|
11321
11336
|
--pf-c-toolbar--m-sticky--BoxShadow: var(--pf-global--BoxShadow--sm-bottom);
|
|
11322
11337
|
--pf-c-toolbar__content--Display: flex;
|
|
11323
11338
|
--pf-c-toolbar__content--PaddingRight: var(--pf-global--spacer--md);
|
|
11324
11339
|
--pf-c-toolbar__content--PaddingLeft: var(--pf-global--spacer--md);
|
|
11325
11340
|
--pf-c-toolbar__content-section--Display: flex;
|
|
11341
|
+
--pf-c-toolbar__content-section--AlignItems: baseline;
|
|
11326
11342
|
--pf-c-toolbar--m-page-insets--inset: var(--pf-global--spacer--md);
|
|
11327
11343
|
--pf-c-toolbar--m-page-insets--xl--inset: var(--pf-global--spacer--lg);
|
|
11328
11344
|
--pf-c-toolbar__expandable-content--Display: grid;
|
|
@@ -11444,9 +11460,22 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
11444
11460
|
.pf-c-toolbar__group {
|
|
11445
11461
|
--pf-c-toolbar--spacer: var(--pf-c-toolbar__group--spacer);
|
|
11446
11462
|
--pf-hidden-visible--visible--Display: var(--pf-c-toolbar__group--Display);
|
|
11447
|
-
align-items:
|
|
11463
|
+
align-items: var(--pf-c-toolbar__group--AlignItems);
|
|
11464
|
+
align-self: var(--pf-c-toolbar__group--AlignSelf);
|
|
11448
11465
|
margin-right: var(--pf-c-toolbar--spacer);
|
|
11449
11466
|
}
|
|
11467
|
+
.pf-c-toolbar__group.pf-m-align-items-center {
|
|
11468
|
+
align-items: center;
|
|
11469
|
+
}
|
|
11470
|
+
.pf-c-toolbar__group.pf-m-align-items-baseline {
|
|
11471
|
+
align-items: baseline;
|
|
11472
|
+
}
|
|
11473
|
+
.pf-c-toolbar__group.pf-m-align-self-center {
|
|
11474
|
+
align-self: center;
|
|
11475
|
+
}
|
|
11476
|
+
.pf-c-toolbar__group.pf-m-align-self-baseline {
|
|
11477
|
+
align-self: baseline;
|
|
11478
|
+
}
|
|
11450
11479
|
.pf-c-toolbar__group.pf-m-button-group {
|
|
11451
11480
|
--pf-c-toolbar--spacer: var(--pf-c-toolbar__group--m-button-group--spacer);
|
|
11452
11481
|
}
|
|
@@ -11487,6 +11516,7 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
11487
11516
|
--pf-c-toolbar__item--Width--base: var(--pf-c-toolbar__item--Width);
|
|
11488
11517
|
--pf-c-toolbar__item--MinWidth--base: var(--pf-c-toolbar__item--MinWidth);
|
|
11489
11518
|
--pf-hidden-visible--visible--Display: var(--pf-c-toolbar__item--Display);
|
|
11519
|
+
align-self: var(--pf-c-toolbar__item--AlignSelf);
|
|
11490
11520
|
width: var(--pf-c-toolbar__item--Width--base);
|
|
11491
11521
|
min-width: var(--pf-c-toolbar__item--MinWidth--base);
|
|
11492
11522
|
margin-right: var(--pf-c-toolbar--spacer);
|
|
@@ -11541,6 +11571,12 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
11541
11571
|
--pf-c-toolbar__item--MinWidth--base: var(--pf-c-toolbar__item--MinWidth-on-2xl, var(--pf-c-toolbar__item--MinWidth-on-xl, var(--pf-c-toolbar__item--MinWidth-on-lg, var(--pf-c-toolbar__item--MinWidth-on-md, var(--pf-c-toolbar__item--MinWidth-on-sm, var(--pf-c-toolbar__item--MinWidth))))));
|
|
11542
11572
|
}
|
|
11543
11573
|
}
|
|
11574
|
+
.pf-c-toolbar__item.pf-m-align-self-center {
|
|
11575
|
+
align-self: center;
|
|
11576
|
+
}
|
|
11577
|
+
.pf-c-toolbar__item.pf-m-align-self-baseline {
|
|
11578
|
+
align-self: baseline;
|
|
11579
|
+
}
|
|
11544
11580
|
.pf-c-toolbar__item.pf-m-overflow-menu {
|
|
11545
11581
|
--pf-c-toolbar--spacer: var(--pf-c-toolbar__item--m-overflow-menu--spacer);
|
|
11546
11582
|
}
|
|
@@ -11585,20 +11621,24 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
11585
11621
|
.pf-c-toolbar__content,
|
|
11586
11622
|
.pf-c-toolbar__content-section {
|
|
11587
11623
|
flex-wrap: wrap;
|
|
11588
|
-
align-items: center;
|
|
11589
11624
|
}
|
|
11590
11625
|
|
|
11591
11626
|
.pf-c-toolbar__content {
|
|
11592
11627
|
--pf-hidden-visible--visible--Display: var(--pf-c-toolbar__content--Display);
|
|
11593
11628
|
position: relative;
|
|
11629
|
+
align-items: center;
|
|
11594
11630
|
padding-right: var(--pf-c-toolbar__content--PaddingRight);
|
|
11595
11631
|
padding-left: var(--pf-c-toolbar__content--PaddingLeft);
|
|
11596
11632
|
}
|
|
11597
11633
|
|
|
11598
11634
|
.pf-c-toolbar__content-section {
|
|
11599
11635
|
--pf-hidden-visible--visible--Display: var(--pf-c-toolbar__content-section--Display);
|
|
11636
|
+
align-items: var(--pf-c-toolbar__content-section--AlignItems);
|
|
11600
11637
|
width: 100%;
|
|
11601
11638
|
}
|
|
11639
|
+
.pf-c-toolbar__content-section.pf-m-align-items-center {
|
|
11640
|
+
align-items: center;
|
|
11641
|
+
}
|
|
11602
11642
|
|
|
11603
11643
|
.pf-c-toolbar__expandable-content {
|
|
11604
11644
|
position: absolute;
|
|
@@ -14378,38 +14418,39 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
14378
14418
|
--pf-c-empty-state--PaddingRight: var(--pf-global--spacer--xl);
|
|
14379
14419
|
--pf-c-empty-state--PaddingBottom: var(--pf-global--spacer--xl);
|
|
14380
14420
|
--pf-c-empty-state--PaddingLeft: var(--pf-global--spacer--xl);
|
|
14421
|
+
--pf-c-empty-state--m-xs--PaddingTop: var(--pf-global--spacer--md);
|
|
14422
|
+
--pf-c-empty-state--m-xs--PaddingRight: var(--pf-global--spacer--md);
|
|
14423
|
+
--pf-c-empty-state--m-xs--PaddingBottom: var(--pf-global--spacer--md);
|
|
14424
|
+
--pf-c-empty-state--m-xs--PaddingLeft: var(--pf-global--spacer--md);
|
|
14381
14425
|
--pf-c-empty-state__content--MaxWidth: none;
|
|
14426
|
+
--pf-c-empty-state--m-xs__content--MaxWidth: 21.875rem;
|
|
14427
|
+
--pf-c-empty-state--m-sm__content--MaxWidth: 25rem;
|
|
14428
|
+
--pf-c-empty-state--m-lg__content--MaxWidth: 37.5rem;
|
|
14382
14429
|
--pf-c-empty-state__icon--MarginBottom: var(--pf-global--spacer--lg);
|
|
14383
14430
|
--pf-c-empty-state__icon--FontSize: var(--pf-global--icon--FontSize--xl);
|
|
14384
14431
|
--pf-c-empty-state__icon--Color: var(--pf-global--icon--Color--light);
|
|
14385
|
-
--pf-c-empty-
|
|
14432
|
+
--pf-c-empty-state--m-xs__icon--MarginBottom: var(--pf-global--spacer--md);
|
|
14433
|
+
--pf-c-empty-state--m-xl__icon--MarginBottom: var(--pf-global--spacer--xl);
|
|
14434
|
+
--pf-c-empty-state--m-xl__icon--FontSize: 6.25rem;
|
|
14435
|
+
--pf-c-empty-state__title-text--FontFamily: var(--pf-global--FontFamily--heading--sans-serif);
|
|
14436
|
+
--pf-c-empty-state__title-text--FontSize: var(--pf-global--FontSize--xl);
|
|
14437
|
+
--pf-c-empty-state__title-text--FontWeight: var(--pf-global--FontWeight--normal);
|
|
14438
|
+
--pf-c-empty-state__title-text--LineHeight: var(--pf-global--LineHeight--md);
|
|
14439
|
+
--pf-c-empty-state--m-xs__title-text--FontSize: var(--pf-global--FontSize--md);
|
|
14440
|
+
--pf-c-empty-state--m-xl__title-text--FontSize: var(--pf-global--FontSize--4xl);
|
|
14441
|
+
--pf-c-empty-state--m-xl__title-text--LineHeight: var(--pf-global--LineHeight--sm);
|
|
14386
14442
|
--pf-c-empty-state__body--MarginTop: var(--pf-global--spacer--md);
|
|
14387
14443
|
--pf-c-empty-state__body--Color: var(--pf-global--Color--200);
|
|
14388
|
-
--pf-c-empty-
|
|
14389
|
-
--pf-c-empty-state__primary--secondary--MarginTop: var(--pf-global--spacer--sm);
|
|
14390
|
-
--pf-c-empty-state__secondary--MarginTop: var(--pf-global--spacer--xl);
|
|
14391
|
-
--pf-c-empty-state__secondary--MarginBottom: calc(var(--pf-global--spacer--xs) * -1);
|
|
14392
|
-
--pf-c-empty-state__secondary--child--MarginRight: calc(var(--pf-global--spacer--xs) / 2);
|
|
14393
|
-
--pf-c-empty-state__secondary--child--MarginBottom: var(--pf-global--spacer--xs);
|
|
14394
|
-
--pf-c-empty-state__secondary--child--MarginLeft: calc(var(--pf-global--spacer--xs) / 2);
|
|
14395
|
-
--pf-c-empty-state--m-xs__content--MaxWidth: 21.875rem;
|
|
14444
|
+
--pf-c-empty-state--body--FontSize: var(--pf-global--FontSize--md);
|
|
14396
14445
|
--pf-c-empty-state--m-xs__body--FontSize: var(--pf-global--FontSize--sm);
|
|
14397
|
-
--pf-c-empty-state--m-xs--button--FontSize: var(--pf-global--FontSize--sm);
|
|
14398
|
-
--pf-c-empty-state--m-xs--PaddingTop: var(--pf-global--spacer--md);
|
|
14399
|
-
--pf-c-empty-state--m-xs--PaddingRight: var(--pf-global--spacer--md);
|
|
14400
|
-
--pf-c-empty-state--m-xs--PaddingBottom: var(--pf-global--spacer--md);
|
|
14401
|
-
--pf-c-empty-state--m-xs--PaddingLeft: var(--pf-global--spacer--md);
|
|
14402
|
-
--pf-c-empty-state--m-xs__icon--MarginBottom: var(--pf-global--spacer--md);
|
|
14403
14446
|
--pf-c-empty-state--m-xs__body--MarginTop: var(--pf-global--spacer--md);
|
|
14404
|
-
--pf-c-empty-state--m-xs__primary--MarginTop: var(--pf-global--spacer--md);
|
|
14405
|
-
--pf-c-empty-state--m-xs__secondary--MarginTop: var(--pf-global--spacer--md);
|
|
14406
|
-
--pf-c-empty-state--m-sm__content--MaxWidth: 25rem;
|
|
14407
|
-
--pf-c-empty-state--m-lg__content--MaxWidth: 37.5rem;
|
|
14408
14447
|
--pf-c-empty-state--m-xl__body--FontSize: var(--pf-global--FontSize--xl);
|
|
14409
14448
|
--pf-c-empty-state--m-xl__body--MarginTop: var(--pf-global--spacer--lg);
|
|
14410
|
-
--pf-c-empty-
|
|
14411
|
-
--pf-c-empty-
|
|
14412
|
-
--pf-c-empty-state--m-
|
|
14449
|
+
--pf-c-empty-state__footer--RowGap: var(--pf-global--spacer--sm);
|
|
14450
|
+
--pf-c-empty-state__footer--MarginTop: var(--pf-global--spacer--xl);
|
|
14451
|
+
--pf-c-empty-state--m-xs__footer--MarginTop: var(--pf-global--spacer--md);
|
|
14452
|
+
--pf-c-empty-state__actions--RowGap: var(--pf-global--spacer--xs);
|
|
14453
|
+
--pf-c-empty-state__actions--ColumnGap: var(--pf-global--spacer--xs);
|
|
14413
14454
|
display: flex;
|
|
14414
14455
|
align-items: center;
|
|
14415
14456
|
justify-content: center;
|
|
@@ -14421,17 +14462,12 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
14421
14462
|
--pf-c-empty-state--PaddingRight: var(--pf-c-empty-state--m-xs--PaddingRight);
|
|
14422
14463
|
--pf-c-empty-state--PaddingBottom: var(--pf-c-empty-state--m-xs--PaddingBottom);
|
|
14423
14464
|
--pf-c-empty-state--PaddingLeft: var(--pf-c-empty-state--m-xs--PaddingLeft);
|
|
14465
|
+
--pf-c-empty-state__title-text--FontSize: var(--pf-c-empty-state--m-xs__title-text--FontSize);
|
|
14424
14466
|
--pf-c-empty-state__content--MaxWidth: var(--pf-c-empty-state--m-xs__content--MaxWidth);
|
|
14425
14467
|
--pf-c-empty-state__icon--MarginBottom: var(--pf-c-empty-state--m-xs__icon--MarginBottom);
|
|
14426
14468
|
--pf-c-empty-state__body--MarginTop: var(--pf-c-empty-state--m-xs__body--MarginTop);
|
|
14427
|
-
--pf-c-empty-
|
|
14428
|
-
--pf-c-empty-
|
|
14429
|
-
}
|
|
14430
|
-
.pf-c-empty-state.pf-m-xs .pf-c-empty-state__body {
|
|
14431
|
-
font-size: var(--pf-c-empty-state--m-xs__body--FontSize);
|
|
14432
|
-
}
|
|
14433
|
-
.pf-c-empty-state.pf-m-xs .pf-c-button {
|
|
14434
|
-
--pf-c-button--FontSize: var(--pf-c-empty-state--m-xs--button--FontSize);
|
|
14469
|
+
--pf-c-empty-state--body--FontSize: var(--pf-c-empty-state--m-xs__body--FontSize);
|
|
14470
|
+
--pf-c-empty-state__footer--MarginTop: var(--pf-c-empty-state--m-xs__footer--MarginTop);
|
|
14435
14471
|
}
|
|
14436
14472
|
.pf-c-empty-state.pf-m-sm {
|
|
14437
14473
|
--pf-c-empty-state__content--MaxWidth: var(--pf-c-empty-state--m-sm__content--MaxWidth);
|
|
@@ -14441,12 +14477,11 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
14441
14477
|
}
|
|
14442
14478
|
.pf-c-empty-state.pf-m-xl {
|
|
14443
14479
|
--pf-c-empty-state__body--MarginTop: var(--pf-c-empty-state--m-xl__body--MarginTop);
|
|
14480
|
+
--pf-c-empty-state--body--FontSize: var(--pf-c-empty-state--m-xl__body--FontSize);
|
|
14444
14481
|
--pf-c-empty-state__icon--MarginBottom: var(--pf-c-empty-state--m-xl__icon--MarginBottom);
|
|
14445
14482
|
--pf-c-empty-state__icon--FontSize: var(--pf-c-empty-state--m-xl__icon--FontSize);
|
|
14446
|
-
--pf-c-empty-
|
|
14447
|
-
|
|
14448
|
-
.pf-c-empty-state.pf-m-xl .pf-c-empty-state__body {
|
|
14449
|
-
font-size: var(--pf-c-empty-state--m-xl__body--FontSize);
|
|
14483
|
+
--pf-c-empty-state__title-text--FontSize: var(--pf-c-empty-state--m-xl__title-text--FontSize);
|
|
14484
|
+
--pf-c-empty-state__title-text--LineHeight: var(--pf-c-empty-state--m-xl__title-text--LineHeight);
|
|
14450
14485
|
}
|
|
14451
14486
|
.pf-c-empty-state.pf-m-full-height {
|
|
14452
14487
|
height: 100%;
|
|
@@ -14455,41 +14490,40 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
14455
14490
|
.pf-c-empty-state__content {
|
|
14456
14491
|
max-width: var(--pf-c-empty-state__content--MaxWidth);
|
|
14457
14492
|
}
|
|
14458
|
-
.pf-c-empty-state__content > .pf-c-title.pf-m-lg {
|
|
14459
|
-
font-size: var(--pf-c-empty-state__content--c-title--m-lg--FontSize);
|
|
14460
|
-
}
|
|
14461
14493
|
|
|
14462
14494
|
.pf-c-empty-state__icon {
|
|
14463
14495
|
margin-bottom: var(--pf-c-empty-state__icon--MarginBottom);
|
|
14464
14496
|
font-size: var(--pf-c-empty-state__icon--FontSize);
|
|
14497
|
+
line-height: 1;
|
|
14465
14498
|
color: var(--pf-c-empty-state__icon--Color);
|
|
14466
14499
|
}
|
|
14467
14500
|
|
|
14501
|
+
.pf-c-empty-state__title-text {
|
|
14502
|
+
font-family: var(--pf-c-empty-state__title-text--FontFamily);
|
|
14503
|
+
font-size: var(--pf-c-empty-state__title-text--FontSize);
|
|
14504
|
+
font-weight: var(--pf-c-empty-state__title-text--FontWeight);
|
|
14505
|
+
line-height: var(--pf-c-empty-state__title-text--LineHeight);
|
|
14506
|
+
}
|
|
14507
|
+
|
|
14468
14508
|
.pf-c-empty-state__body {
|
|
14469
14509
|
margin-top: var(--pf-c-empty-state__body--MarginTop);
|
|
14510
|
+
font-size: var(--pf-c-empty-state--body--FontSize);
|
|
14470
14511
|
color: var(--pf-c-empty-state__body--Color);
|
|
14471
14512
|
}
|
|
14472
14513
|
|
|
14473
|
-
.pf-c-empty-
|
|
14474
|
-
|
|
14475
|
-
|
|
14476
|
-
|
|
14477
|
-
|
|
14478
|
-
|
|
14479
|
-
margin-top: var(--pf-c-empty-state__primary--secondary--MarginTop);
|
|
14514
|
+
.pf-c-empty-state__footer {
|
|
14515
|
+
display: flex;
|
|
14516
|
+
flex-direction: column;
|
|
14517
|
+
align-items: center;
|
|
14518
|
+
row-gap: var(--pf-c-empty-state__footer--RowGap);
|
|
14519
|
+
margin-top: var(--pf-c-empty-state__footer--MarginTop);
|
|
14480
14520
|
}
|
|
14481
14521
|
|
|
14482
|
-
.pf-c-empty-
|
|
14522
|
+
.pf-c-empty-state__actions {
|
|
14483
14523
|
display: flex;
|
|
14484
14524
|
flex-wrap: wrap;
|
|
14485
14525
|
justify-content: center;
|
|
14486
|
-
|
|
14487
|
-
margin-bottom: var(--pf-c-empty-state__secondary--MarginBottom);
|
|
14488
|
-
}
|
|
14489
|
-
.pf-c-empty-state__secondary > * {
|
|
14490
|
-
margin-right: var(--pf-c-empty-state__secondary--child--MarginRight);
|
|
14491
|
-
margin-bottom: var(--pf-c-empty-state__secondary--child--MarginBottom);
|
|
14492
|
-
margin-left: var(--pf-c-empty-state__secondary--child--MarginLeft);
|
|
14526
|
+
gap: var(--pf-c-empty-state__actions--RowGap) var(--pf-c-empty-state__actions--ColumnGap);
|
|
14493
14527
|
}
|
|
14494
14528
|
|
|
14495
14529
|
.pf-c-expandable-section {
|