@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/package.json
CHANGED
package/patternfly-no-reset.css
CHANGED
|
@@ -8626,28 +8626,40 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8626
8626
|
|
|
8627
8627
|
.pf-c-chip-group {
|
|
8628
8628
|
color: var(--pf-global--Color--100);
|
|
8629
|
-
--pf-c-chip-
|
|
8630
|
-
--pf-c-chip-
|
|
8629
|
+
--pf-c-chip-group--PaddingTop: 0;
|
|
8630
|
+
--pf-c-chip-group--PaddingRight: 0;
|
|
8631
|
+
--pf-c-chip-group--PaddingBottom: 0;
|
|
8632
|
+
--pf-c-chip-group--PaddingLeft: 0;
|
|
8633
|
+
--pf-c-chip-group--RowGap: var(--pf-global--spacer--sm);
|
|
8634
|
+
--pf-c-chip-group--ColumnGap: var(--pf-global--spacer--sm);
|
|
8635
|
+
--pf-c-chip-group__main--RowGap: var(--pf-global--spacer--xs);
|
|
8636
|
+
--pf-c-chip-group__main--ColumnGap: var(--pf-global--spacer--sm);
|
|
8637
|
+
--pf-c-chip-group__list--RowGap: var(--pf-global--spacer--xs);
|
|
8638
|
+
--pf-c-chip-group__list--ColumnGap: var(--pf-global--spacer--xs);
|
|
8631
8639
|
--pf-c-chip-group--m-category--PaddingTop: var(--pf-global--spacer--xs);
|
|
8632
8640
|
--pf-c-chip-group--m-category--PaddingRight: var(--pf-global--spacer--xs);
|
|
8633
8641
|
--pf-c-chip-group--m-category--PaddingBottom: var(--pf-global--spacer--xs);
|
|
8634
8642
|
--pf-c-chip-group--m-category--PaddingLeft: var(--pf-global--spacer--sm);
|
|
8635
8643
|
--pf-c-chip-group--m-category--BorderRadius: var(--pf-global--BorderRadius--sm);
|
|
8636
8644
|
--pf-c-chip-group--m-category--BackgroundColor: var(--pf-global--BackgroundColor--200);
|
|
8637
|
-
--pf-c-chip-group__label--MarginRight: var(--pf-global--spacer--sm);
|
|
8638
8645
|
--pf-c-chip-group__label--FontSize: var(--pf-global--FontSize--sm);
|
|
8639
8646
|
--pf-c-chip-group__label--MaxWidth: 18ch;
|
|
8640
8647
|
--pf-c-chip-group__close--MarginTop: calc(var(--pf-global--spacer--xs) * -1);
|
|
8641
8648
|
--pf-c-chip-group__close--MarginBottom: calc(var(--pf-global--spacer--xs) * -1);
|
|
8642
|
-
--pf-c-chip-
|
|
8643
|
-
--pf-c-chip-group__list-item--MarginBottom: var(--pf-global--spacer--xs);
|
|
8649
|
+
--pf-c-chip-group__close--MarginLeft: calc(var(--pf-global--spacer--sm) * -1);
|
|
8644
8650
|
max-width: 100%;
|
|
8651
|
+
padding-top: var(--pf-c-chip-group--PaddingTop);
|
|
8652
|
+
padding-right: var(--pf-c-chip-group--PaddingRight);
|
|
8653
|
+
padding-bottom: var(--pf-c-chip-group--PaddingBottom);
|
|
8654
|
+
padding-left: var(--pf-c-chip-group--PaddingLeft);
|
|
8655
|
+
row-gap: var(--pf-c-chip-group--RowGap);
|
|
8656
|
+
column-gap: var(--pf-c-chip-group--ColumnGap);
|
|
8645
8657
|
}
|
|
8646
8658
|
.pf-c-chip-group.pf-m-category {
|
|
8647
|
-
|
|
8648
|
-
|
|
8649
|
-
|
|
8650
|
-
|
|
8659
|
+
--pf-c-chip-group--PaddingTop: var(--pf-c-chip-group--m-category--PaddingTop);
|
|
8660
|
+
--pf-c-chip-group--PaddingRight: var(--pf-c-chip-group--m-category--PaddingRight);
|
|
8661
|
+
--pf-c-chip-group--PaddingBottom: var(--pf-c-chip-group--m-category--PaddingBottom);
|
|
8662
|
+
--pf-c-chip-group--PaddingLeft: var(--pf-c-chip-group--m-category--PaddingLeft);
|
|
8651
8663
|
background-color: var(--pf-c-chip-group--m-category--BackgroundColor);
|
|
8652
8664
|
border-radius: var(--pf-c-chip-group--m-category--BorderRadius);
|
|
8653
8665
|
}
|
|
@@ -8658,11 +8670,8 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8658
8670
|
flex-wrap: wrap;
|
|
8659
8671
|
align-items: baseline;
|
|
8660
8672
|
min-width: 0;
|
|
8661
|
-
|
|
8662
|
-
|
|
8663
|
-
.pf-c-chip-group__list {
|
|
8664
|
-
margin-right: var(--pf-c-chip-group__list--MarginRight);
|
|
8665
|
-
margin-bottom: var(--pf-c-chip-group__list--MarginBottom);
|
|
8673
|
+
row-gap: var(--pf-c-chip-group__main--RowGap);
|
|
8674
|
+
column-gap: var(--pf-c-chip-group__main--ColumnGap);
|
|
8666
8675
|
}
|
|
8667
8676
|
|
|
8668
8677
|
.pf-c-chip-group,
|
|
@@ -8673,11 +8682,14 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8673
8682
|
min-width: 0;
|
|
8674
8683
|
}
|
|
8675
8684
|
|
|
8685
|
+
.pf-c-chip-group__list {
|
|
8686
|
+
row-gap: var(--pf-c-chip-group__list--RowGap);
|
|
8687
|
+
column-gap: var(--pf-c-chip-group__list--ColumnGap);
|
|
8688
|
+
}
|
|
8689
|
+
|
|
8676
8690
|
.pf-c-chip-group__list-item {
|
|
8677
8691
|
display: inline-flex;
|
|
8678
8692
|
min-width: 0;
|
|
8679
|
-
margin-right: var(--pf-c-chip-group__list-item--MarginRight);
|
|
8680
|
-
margin-bottom: var(--pf-c-chip-group__list-item--MarginBottom);
|
|
8681
8693
|
}
|
|
8682
8694
|
|
|
8683
8695
|
.pf-c-chip-group__label {
|
|
@@ -8685,7 +8697,6 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8685
8697
|
text-overflow: ellipsis;
|
|
8686
8698
|
white-space: nowrap;
|
|
8687
8699
|
max-width: var(--pf-c-chip-group__label--MaxWidth);
|
|
8688
|
-
margin-right: var(--pf-c-chip-group__label--MarginRight);
|
|
8689
8700
|
font-size: var(--pf-c-chip-group__label--FontSize);
|
|
8690
8701
|
}
|
|
8691
8702
|
|
|
@@ -8694,6 +8705,7 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
8694
8705
|
align-self: flex-start;
|
|
8695
8706
|
margin-top: var(--pf-c-chip-group__close--MarginTop);
|
|
8696
8707
|
margin-bottom: var(--pf-c-chip-group__close--MarginBottom);
|
|
8708
|
+
margin-left: var(--pf-c-chip-group__close--MarginLeft);
|
|
8697
8709
|
}
|
|
8698
8710
|
|
|
8699
8711
|
.pf-c-clipboard-copy {
|
|
@@ -11193,13 +11205,17 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
11193
11205
|
--pf-c-toolbar--PaddingBottom: var(--pf-global--spacer--md);
|
|
11194
11206
|
--pf-c-toolbar__item--Display: block;
|
|
11195
11207
|
--pf-c-toolbar__item--MinWidth--base: auto;
|
|
11208
|
+
--pf-c-toolbar__item--AlignSelf: auto;
|
|
11196
11209
|
--pf-c-toolbar__group--Display: flex;
|
|
11210
|
+
--pf-c-toolbar__group--AlignItems: baseline;
|
|
11211
|
+
--pf-c-toolbar__group--AlignSelf: auto;
|
|
11197
11212
|
--pf-c-toolbar--m-sticky--ZIndex: var(--pf-global--ZIndex--xs);
|
|
11198
11213
|
--pf-c-toolbar--m-sticky--BoxShadow: var(--pf-global--BoxShadow--sm-bottom);
|
|
11199
11214
|
--pf-c-toolbar__content--Display: flex;
|
|
11200
11215
|
--pf-c-toolbar__content--PaddingRight: var(--pf-global--spacer--md);
|
|
11201
11216
|
--pf-c-toolbar__content--PaddingLeft: var(--pf-global--spacer--md);
|
|
11202
11217
|
--pf-c-toolbar__content-section--Display: flex;
|
|
11218
|
+
--pf-c-toolbar__content-section--AlignItems: baseline;
|
|
11203
11219
|
--pf-c-toolbar--m-page-insets--inset: var(--pf-global--spacer--md);
|
|
11204
11220
|
--pf-c-toolbar--m-page-insets--xl--inset: var(--pf-global--spacer--lg);
|
|
11205
11221
|
--pf-c-toolbar__expandable-content--Display: grid;
|
|
@@ -11321,9 +11337,22 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
11321
11337
|
.pf-c-toolbar__group {
|
|
11322
11338
|
--pf-c-toolbar--spacer: var(--pf-c-toolbar__group--spacer);
|
|
11323
11339
|
--pf-hidden-visible--visible--Display: var(--pf-c-toolbar__group--Display);
|
|
11324
|
-
align-items:
|
|
11340
|
+
align-items: var(--pf-c-toolbar__group--AlignItems);
|
|
11341
|
+
align-self: var(--pf-c-toolbar__group--AlignSelf);
|
|
11325
11342
|
margin-right: var(--pf-c-toolbar--spacer);
|
|
11326
11343
|
}
|
|
11344
|
+
.pf-c-toolbar__group.pf-m-align-items-center {
|
|
11345
|
+
align-items: center;
|
|
11346
|
+
}
|
|
11347
|
+
.pf-c-toolbar__group.pf-m-align-items-baseline {
|
|
11348
|
+
align-items: baseline;
|
|
11349
|
+
}
|
|
11350
|
+
.pf-c-toolbar__group.pf-m-align-self-center {
|
|
11351
|
+
align-self: center;
|
|
11352
|
+
}
|
|
11353
|
+
.pf-c-toolbar__group.pf-m-align-self-baseline {
|
|
11354
|
+
align-self: baseline;
|
|
11355
|
+
}
|
|
11327
11356
|
.pf-c-toolbar__group.pf-m-button-group {
|
|
11328
11357
|
--pf-c-toolbar--spacer: var(--pf-c-toolbar__group--m-button-group--spacer);
|
|
11329
11358
|
}
|
|
@@ -11364,6 +11393,7 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
11364
11393
|
--pf-c-toolbar__item--Width--base: var(--pf-c-toolbar__item--Width);
|
|
11365
11394
|
--pf-c-toolbar__item--MinWidth--base: var(--pf-c-toolbar__item--MinWidth);
|
|
11366
11395
|
--pf-hidden-visible--visible--Display: var(--pf-c-toolbar__item--Display);
|
|
11396
|
+
align-self: var(--pf-c-toolbar__item--AlignSelf);
|
|
11367
11397
|
width: var(--pf-c-toolbar__item--Width--base);
|
|
11368
11398
|
min-width: var(--pf-c-toolbar__item--MinWidth--base);
|
|
11369
11399
|
margin-right: var(--pf-c-toolbar--spacer);
|
|
@@ -11418,6 +11448,12 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
11418
11448
|
--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))))));
|
|
11419
11449
|
}
|
|
11420
11450
|
}
|
|
11451
|
+
.pf-c-toolbar__item.pf-m-align-self-center {
|
|
11452
|
+
align-self: center;
|
|
11453
|
+
}
|
|
11454
|
+
.pf-c-toolbar__item.pf-m-align-self-baseline {
|
|
11455
|
+
align-self: baseline;
|
|
11456
|
+
}
|
|
11421
11457
|
.pf-c-toolbar__item.pf-m-overflow-menu {
|
|
11422
11458
|
--pf-c-toolbar--spacer: var(--pf-c-toolbar__item--m-overflow-menu--spacer);
|
|
11423
11459
|
}
|
|
@@ -11462,20 +11498,24 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
11462
11498
|
.pf-c-toolbar__content,
|
|
11463
11499
|
.pf-c-toolbar__content-section {
|
|
11464
11500
|
flex-wrap: wrap;
|
|
11465
|
-
align-items: center;
|
|
11466
11501
|
}
|
|
11467
11502
|
|
|
11468
11503
|
.pf-c-toolbar__content {
|
|
11469
11504
|
--pf-hidden-visible--visible--Display: var(--pf-c-toolbar__content--Display);
|
|
11470
11505
|
position: relative;
|
|
11506
|
+
align-items: center;
|
|
11471
11507
|
padding-right: var(--pf-c-toolbar__content--PaddingRight);
|
|
11472
11508
|
padding-left: var(--pf-c-toolbar__content--PaddingLeft);
|
|
11473
11509
|
}
|
|
11474
11510
|
|
|
11475
11511
|
.pf-c-toolbar__content-section {
|
|
11476
11512
|
--pf-hidden-visible--visible--Display: var(--pf-c-toolbar__content-section--Display);
|
|
11513
|
+
align-items: var(--pf-c-toolbar__content-section--AlignItems);
|
|
11477
11514
|
width: 100%;
|
|
11478
11515
|
}
|
|
11516
|
+
.pf-c-toolbar__content-section.pf-m-align-items-center {
|
|
11517
|
+
align-items: center;
|
|
11518
|
+
}
|
|
11479
11519
|
|
|
11480
11520
|
.pf-c-toolbar__expandable-content {
|
|
11481
11521
|
position: absolute;
|
|
@@ -14255,38 +14295,39 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
14255
14295
|
--pf-c-empty-state--PaddingRight: var(--pf-global--spacer--xl);
|
|
14256
14296
|
--pf-c-empty-state--PaddingBottom: var(--pf-global--spacer--xl);
|
|
14257
14297
|
--pf-c-empty-state--PaddingLeft: var(--pf-global--spacer--xl);
|
|
14298
|
+
--pf-c-empty-state--m-xs--PaddingTop: var(--pf-global--spacer--md);
|
|
14299
|
+
--pf-c-empty-state--m-xs--PaddingRight: var(--pf-global--spacer--md);
|
|
14300
|
+
--pf-c-empty-state--m-xs--PaddingBottom: var(--pf-global--spacer--md);
|
|
14301
|
+
--pf-c-empty-state--m-xs--PaddingLeft: var(--pf-global--spacer--md);
|
|
14258
14302
|
--pf-c-empty-state__content--MaxWidth: none;
|
|
14303
|
+
--pf-c-empty-state--m-xs__content--MaxWidth: 21.875rem;
|
|
14304
|
+
--pf-c-empty-state--m-sm__content--MaxWidth: 25rem;
|
|
14305
|
+
--pf-c-empty-state--m-lg__content--MaxWidth: 37.5rem;
|
|
14259
14306
|
--pf-c-empty-state__icon--MarginBottom: var(--pf-global--spacer--lg);
|
|
14260
14307
|
--pf-c-empty-state__icon--FontSize: var(--pf-global--icon--FontSize--xl);
|
|
14261
14308
|
--pf-c-empty-state__icon--Color: var(--pf-global--icon--Color--light);
|
|
14262
|
-
--pf-c-empty-
|
|
14309
|
+
--pf-c-empty-state--m-xs__icon--MarginBottom: var(--pf-global--spacer--md);
|
|
14310
|
+
--pf-c-empty-state--m-xl__icon--MarginBottom: var(--pf-global--spacer--xl);
|
|
14311
|
+
--pf-c-empty-state--m-xl__icon--FontSize: 6.25rem;
|
|
14312
|
+
--pf-c-empty-state__title-text--FontFamily: var(--pf-global--FontFamily--heading--sans-serif);
|
|
14313
|
+
--pf-c-empty-state__title-text--FontSize: var(--pf-global--FontSize--xl);
|
|
14314
|
+
--pf-c-empty-state__title-text--FontWeight: var(--pf-global--FontWeight--normal);
|
|
14315
|
+
--pf-c-empty-state__title-text--LineHeight: var(--pf-global--LineHeight--md);
|
|
14316
|
+
--pf-c-empty-state--m-xs__title-text--FontSize: var(--pf-global--FontSize--md);
|
|
14317
|
+
--pf-c-empty-state--m-xl__title-text--FontSize: var(--pf-global--FontSize--4xl);
|
|
14318
|
+
--pf-c-empty-state--m-xl__title-text--LineHeight: var(--pf-global--LineHeight--sm);
|
|
14263
14319
|
--pf-c-empty-state__body--MarginTop: var(--pf-global--spacer--md);
|
|
14264
14320
|
--pf-c-empty-state__body--Color: var(--pf-global--Color--200);
|
|
14265
|
-
--pf-c-empty-
|
|
14266
|
-
--pf-c-empty-state__primary--secondary--MarginTop: var(--pf-global--spacer--sm);
|
|
14267
|
-
--pf-c-empty-state__secondary--MarginTop: var(--pf-global--spacer--xl);
|
|
14268
|
-
--pf-c-empty-state__secondary--MarginBottom: calc(var(--pf-global--spacer--xs) * -1);
|
|
14269
|
-
--pf-c-empty-state__secondary--child--MarginRight: calc(var(--pf-global--spacer--xs) / 2);
|
|
14270
|
-
--pf-c-empty-state__secondary--child--MarginBottom: var(--pf-global--spacer--xs);
|
|
14271
|
-
--pf-c-empty-state__secondary--child--MarginLeft: calc(var(--pf-global--spacer--xs) / 2);
|
|
14272
|
-
--pf-c-empty-state--m-xs__content--MaxWidth: 21.875rem;
|
|
14321
|
+
--pf-c-empty-state--body--FontSize: var(--pf-global--FontSize--md);
|
|
14273
14322
|
--pf-c-empty-state--m-xs__body--FontSize: var(--pf-global--FontSize--sm);
|
|
14274
|
-
--pf-c-empty-state--m-xs--button--FontSize: var(--pf-global--FontSize--sm);
|
|
14275
|
-
--pf-c-empty-state--m-xs--PaddingTop: var(--pf-global--spacer--md);
|
|
14276
|
-
--pf-c-empty-state--m-xs--PaddingRight: var(--pf-global--spacer--md);
|
|
14277
|
-
--pf-c-empty-state--m-xs--PaddingBottom: var(--pf-global--spacer--md);
|
|
14278
|
-
--pf-c-empty-state--m-xs--PaddingLeft: var(--pf-global--spacer--md);
|
|
14279
|
-
--pf-c-empty-state--m-xs__icon--MarginBottom: var(--pf-global--spacer--md);
|
|
14280
14323
|
--pf-c-empty-state--m-xs__body--MarginTop: var(--pf-global--spacer--md);
|
|
14281
|
-
--pf-c-empty-state--m-xs__primary--MarginTop: var(--pf-global--spacer--md);
|
|
14282
|
-
--pf-c-empty-state--m-xs__secondary--MarginTop: var(--pf-global--spacer--md);
|
|
14283
|
-
--pf-c-empty-state--m-sm__content--MaxWidth: 25rem;
|
|
14284
|
-
--pf-c-empty-state--m-lg__content--MaxWidth: 37.5rem;
|
|
14285
14324
|
--pf-c-empty-state--m-xl__body--FontSize: var(--pf-global--FontSize--xl);
|
|
14286
14325
|
--pf-c-empty-state--m-xl__body--MarginTop: var(--pf-global--spacer--lg);
|
|
14287
|
-
--pf-c-empty-
|
|
14288
|
-
--pf-c-empty-
|
|
14289
|
-
--pf-c-empty-state--m-
|
|
14326
|
+
--pf-c-empty-state__footer--RowGap: var(--pf-global--spacer--sm);
|
|
14327
|
+
--pf-c-empty-state__footer--MarginTop: var(--pf-global--spacer--xl);
|
|
14328
|
+
--pf-c-empty-state--m-xs__footer--MarginTop: var(--pf-global--spacer--md);
|
|
14329
|
+
--pf-c-empty-state__actions--RowGap: var(--pf-global--spacer--xs);
|
|
14330
|
+
--pf-c-empty-state__actions--ColumnGap: var(--pf-global--spacer--xs);
|
|
14290
14331
|
display: flex;
|
|
14291
14332
|
align-items: center;
|
|
14292
14333
|
justify-content: center;
|
|
@@ -14298,17 +14339,12 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
14298
14339
|
--pf-c-empty-state--PaddingRight: var(--pf-c-empty-state--m-xs--PaddingRight);
|
|
14299
14340
|
--pf-c-empty-state--PaddingBottom: var(--pf-c-empty-state--m-xs--PaddingBottom);
|
|
14300
14341
|
--pf-c-empty-state--PaddingLeft: var(--pf-c-empty-state--m-xs--PaddingLeft);
|
|
14342
|
+
--pf-c-empty-state__title-text--FontSize: var(--pf-c-empty-state--m-xs__title-text--FontSize);
|
|
14301
14343
|
--pf-c-empty-state__content--MaxWidth: var(--pf-c-empty-state--m-xs__content--MaxWidth);
|
|
14302
14344
|
--pf-c-empty-state__icon--MarginBottom: var(--pf-c-empty-state--m-xs__icon--MarginBottom);
|
|
14303
14345
|
--pf-c-empty-state__body--MarginTop: var(--pf-c-empty-state--m-xs__body--MarginTop);
|
|
14304
|
-
--pf-c-empty-
|
|
14305
|
-
--pf-c-empty-
|
|
14306
|
-
}
|
|
14307
|
-
.pf-c-empty-state.pf-m-xs .pf-c-empty-state__body {
|
|
14308
|
-
font-size: var(--pf-c-empty-state--m-xs__body--FontSize);
|
|
14309
|
-
}
|
|
14310
|
-
.pf-c-empty-state.pf-m-xs .pf-c-button {
|
|
14311
|
-
--pf-c-button--FontSize: var(--pf-c-empty-state--m-xs--button--FontSize);
|
|
14346
|
+
--pf-c-empty-state--body--FontSize: var(--pf-c-empty-state--m-xs__body--FontSize);
|
|
14347
|
+
--pf-c-empty-state__footer--MarginTop: var(--pf-c-empty-state--m-xs__footer--MarginTop);
|
|
14312
14348
|
}
|
|
14313
14349
|
.pf-c-empty-state.pf-m-sm {
|
|
14314
14350
|
--pf-c-empty-state__content--MaxWidth: var(--pf-c-empty-state--m-sm__content--MaxWidth);
|
|
@@ -14318,12 +14354,11 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
14318
14354
|
}
|
|
14319
14355
|
.pf-c-empty-state.pf-m-xl {
|
|
14320
14356
|
--pf-c-empty-state__body--MarginTop: var(--pf-c-empty-state--m-xl__body--MarginTop);
|
|
14357
|
+
--pf-c-empty-state--body--FontSize: var(--pf-c-empty-state--m-xl__body--FontSize);
|
|
14321
14358
|
--pf-c-empty-state__icon--MarginBottom: var(--pf-c-empty-state--m-xl__icon--MarginBottom);
|
|
14322
14359
|
--pf-c-empty-state__icon--FontSize: var(--pf-c-empty-state--m-xl__icon--FontSize);
|
|
14323
|
-
--pf-c-empty-
|
|
14324
|
-
|
|
14325
|
-
.pf-c-empty-state.pf-m-xl .pf-c-empty-state__body {
|
|
14326
|
-
font-size: var(--pf-c-empty-state--m-xl__body--FontSize);
|
|
14360
|
+
--pf-c-empty-state__title-text--FontSize: var(--pf-c-empty-state--m-xl__title-text--FontSize);
|
|
14361
|
+
--pf-c-empty-state__title-text--LineHeight: var(--pf-c-empty-state--m-xl__title-text--LineHeight);
|
|
14327
14362
|
}
|
|
14328
14363
|
.pf-c-empty-state.pf-m-full-height {
|
|
14329
14364
|
height: 100%;
|
|
@@ -14332,41 +14367,40 @@ label.pf-c-check, .pf-c-check__label,
|
|
|
14332
14367
|
.pf-c-empty-state__content {
|
|
14333
14368
|
max-width: var(--pf-c-empty-state__content--MaxWidth);
|
|
14334
14369
|
}
|
|
14335
|
-
.pf-c-empty-state__content > .pf-c-title.pf-m-lg {
|
|
14336
|
-
font-size: var(--pf-c-empty-state__content--c-title--m-lg--FontSize);
|
|
14337
|
-
}
|
|
14338
14370
|
|
|
14339
14371
|
.pf-c-empty-state__icon {
|
|
14340
14372
|
margin-bottom: var(--pf-c-empty-state__icon--MarginBottom);
|
|
14341
14373
|
font-size: var(--pf-c-empty-state__icon--FontSize);
|
|
14374
|
+
line-height: 1;
|
|
14342
14375
|
color: var(--pf-c-empty-state__icon--Color);
|
|
14343
14376
|
}
|
|
14344
14377
|
|
|
14378
|
+
.pf-c-empty-state__title-text {
|
|
14379
|
+
font-family: var(--pf-c-empty-state__title-text--FontFamily);
|
|
14380
|
+
font-size: var(--pf-c-empty-state__title-text--FontSize);
|
|
14381
|
+
font-weight: var(--pf-c-empty-state__title-text--FontWeight);
|
|
14382
|
+
line-height: var(--pf-c-empty-state__title-text--LineHeight);
|
|
14383
|
+
}
|
|
14384
|
+
|
|
14345
14385
|
.pf-c-empty-state__body {
|
|
14346
14386
|
margin-top: var(--pf-c-empty-state__body--MarginTop);
|
|
14387
|
+
font-size: var(--pf-c-empty-state--body--FontSize);
|
|
14347
14388
|
color: var(--pf-c-empty-state__body--Color);
|
|
14348
14389
|
}
|
|
14349
14390
|
|
|
14350
|
-
.pf-c-empty-
|
|
14351
|
-
|
|
14352
|
-
|
|
14353
|
-
|
|
14354
|
-
|
|
14355
|
-
|
|
14356
|
-
margin-top: var(--pf-c-empty-state__primary--secondary--MarginTop);
|
|
14391
|
+
.pf-c-empty-state__footer {
|
|
14392
|
+
display: flex;
|
|
14393
|
+
flex-direction: column;
|
|
14394
|
+
align-items: center;
|
|
14395
|
+
row-gap: var(--pf-c-empty-state__footer--RowGap);
|
|
14396
|
+
margin-top: var(--pf-c-empty-state__footer--MarginTop);
|
|
14357
14397
|
}
|
|
14358
14398
|
|
|
14359
|
-
.pf-c-empty-
|
|
14399
|
+
.pf-c-empty-state__actions {
|
|
14360
14400
|
display: flex;
|
|
14361
14401
|
flex-wrap: wrap;
|
|
14362
14402
|
justify-content: center;
|
|
14363
|
-
|
|
14364
|
-
margin-bottom: var(--pf-c-empty-state__secondary--MarginBottom);
|
|
14365
|
-
}
|
|
14366
|
-
.pf-c-empty-state__secondary > * {
|
|
14367
|
-
margin-right: var(--pf-c-empty-state__secondary--child--MarginRight);
|
|
14368
|
-
margin-bottom: var(--pf-c-empty-state__secondary--child--MarginBottom);
|
|
14369
|
-
margin-left: var(--pf-c-empty-state__secondary--child--MarginLeft);
|
|
14403
|
+
gap: var(--pf-c-empty-state__actions--RowGap) var(--pf-c-empty-state__actions--ColumnGap);
|
|
14370
14404
|
}
|
|
14371
14405
|
|
|
14372
14406
|
.pf-c-expandable-section {
|