@patternfly/patternfly 5.0.0-alpha.21 → 5.0.0-alpha.23

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.
Files changed (31) hide show
  1. package/components/Chip/chip.css +33 -24
  2. package/components/Chip/chip.scss +40 -31
  3. package/components/Label/label.css +35 -24
  4. package/components/Label/label.scss +40 -27
  5. package/components/Popover/popover.css +21 -24
  6. package/components/Popover/popover.scss +25 -32
  7. package/components/Table/table-tree-view.css +10 -0
  8. package/components/Table/table-tree-view.scss +15 -0
  9. package/docs/components/Chip/examples/Chip.md +61 -43
  10. package/docs/components/ChipGroup/examples/ChipGroup.md +437 -329
  11. package/docs/components/InlineEdit/examples/InlineEdit.md +5 -3
  12. package/docs/components/Label/examples/Label.md +1399 -718
  13. package/docs/components/LabelGroup/examples/LabelGroup.md +274 -209
  14. package/docs/components/LogViewer/examples/LogViewer.md +10 -4
  15. package/docs/components/Popover/examples/Popover.md +175 -104
  16. package/docs/components/Select/examples/Select.md +224 -170
  17. package/docs/components/Table/examples/Table.md +565 -41
  18. package/docs/components/TextInputGroup/examples/TextInputGroup.md +343 -261
  19. package/docs/components/Toolbar/examples/Toolbar.md +306 -234
  20. package/docs/demos/Card/examples/Card.md +46 -38
  21. package/docs/demos/Dashboard/examples/Dashboard.md +23 -15
  22. package/docs/demos/DescriptionList/examples/DescriptionList.md +21 -9
  23. package/docs/demos/Drawer/examples/Drawer.md +4 -2
  24. package/docs/demos/Form/examples/BasicForms.md +28 -22
  25. package/docs/demos/Tabs/examples/Tabs.md +39 -16
  26. package/docs/demos/Toolbar/examples/Toolbar.md +102 -78
  27. package/package.json +2 -2
  28. package/patternfly-no-reset.css +99 -72
  29. package/patternfly.css +99 -72
  30. package/patternfly.min.css +1 -1
  31. package/patternfly.min.css.map +1 -1
package/patternfly.css CHANGED
@@ -8627,18 +8627,19 @@ label.pf-c-check, .pf-c-check__label,
8627
8627
  --pf-c-chip--m-draggable--BackgroundColor: var(--pf-global--BackgroundColor--200);
8628
8628
  --pf-c-chip--m-draggable--BoxShadow: var(--pf-global--BoxShadow--sm);
8629
8629
  --pf-c-chip--m-draggable__icon--FontSize: var(--pf-global--icon--FontSize--sm);
8630
- --pf-c-chip__text--FontSize: var(--pf-global--FontSize--xs);
8630
+ --pf-c-chip__content--FontSize: var(--pf-global--FontSize--xs);
8631
+ --pf-c-chip__content--ColumnGap: var(--pf-global--spacer--xs);
8631
8632
  --pf-c-chip__text--Color: var(--pf-global--Color--100);
8632
8633
  --pf-c-chip__text--MaxWidth: 16ch;
8633
- --pf-c-chip__c-button--PaddingTop: var(--pf-global--spacer--xs);
8634
- --pf-c-chip__c-button--PaddingRight: var(--pf-global--spacer--sm);
8635
- --pf-c-chip__c-button--PaddingBottom: var(--pf-global--spacer--xs);
8636
- --pf-c-chip__c-button--PaddingLeft: var(--pf-global--spacer--sm);
8637
- --pf-c-chip__c-button--MarginTop: calc(var(--pf-c-chip--PaddingTop) * -1);
8638
- --pf-c-chip__c-button--MarginRight: calc(var(--pf-c-chip--PaddingRight) / 2 * -1);
8639
- --pf-c-chip__c-button--MarginBottom: calc(var(--pf-c-chip--PaddingBottom) * -1);
8640
- --pf-c-chip__c-button--FontSize: var(--pf-global--FontSize--xs);
8641
- --pf-c-chip__c-badge--MarginLeft: var(--pf-global--spacer--xs);
8634
+ --pf-c-chip__actions--FontSize: var(--pf-global--FontSize--xs);
8635
+ --pf-c-chip__actions--c-button--PaddingTop: var(--pf-global--spacer--xs);
8636
+ --pf-c-chip__actions--c-button--PaddingRight: var(--pf-global--spacer--sm);
8637
+ --pf-c-chip__actions--c-button--PaddingBottom: var(--pf-global--spacer--xs);
8638
+ --pf-c-chip__actions--c-button--PaddingLeft: var(--pf-global--spacer--sm);
8639
+ --pf-c-chip__actions--c-button--MarginTop: calc(var(--pf-c-chip--PaddingTop) * -1);
8640
+ --pf-c-chip__actions--c-button--MarginRight: calc(var(--pf-c-chip--PaddingRight) / 2 * -1);
8641
+ --pf-c-chip__actions--c-button--MarginBottom: calc(var(--pf-c-chip--PaddingBottom) * -1);
8642
+ --pf-c-chip__actions--c-button--FontSize: var(--pf-global--FontSize--xs);
8642
8643
  --pf-c-chip__icon--MarginLeft: var(--pf-global--spacer--sm);
8643
8644
  color: var(--pf-global--Color--100);
8644
8645
  position: relative;
@@ -8673,19 +8674,6 @@ label.pf-c-check, .pf-c-check__label,
8673
8674
  .pf-c-chip.pf-m-draggable .pf-c-chip__icon {
8674
8675
  font-size: var(--pf-c-chip--m-draggable__icon--FontSize);
8675
8676
  }
8676
- .pf-c-chip .pf-c-button {
8677
- --pf-c-button--PaddingTop: var(--pf-c-chip__c-button--PaddingTop);
8678
- --pf-c-button--PaddingRight: var(--pf-c-chip__c-button--PaddingRight);
8679
- --pf-c-button--PaddingBottom: var(--pf-c-chip__c-button--PaddingBottom);
8680
- --pf-c-button--PaddingLeft: var(--pf-c-chip__c-button--PaddingLeft);
8681
- --pf-c-button--FontSize: var(--pf-c-chip__c-button--FontSize);
8682
- margin-top: var(--pf-c-chip__c-button--MarginTop);
8683
- margin-right: var(--pf-c-chip__c-button--MarginRight);
8684
- margin-bottom: var(--pf-c-chip__c-button--MarginBottom);
8685
- }
8686
- .pf-c-chip .pf-c-badge {
8687
- margin-left: var(--pf-c-chip__c-badge--MarginLeft);
8688
- }
8689
8677
 
8690
8678
  .pf-c-chip__text {
8691
8679
  overflow: hidden;
@@ -8693,7 +8681,6 @@ label.pf-c-check, .pf-c-check__label,
8693
8681
  white-space: nowrap;
8694
8682
  position: relative;
8695
8683
  max-width: var(--pf-c-chip__text--MaxWidth);
8696
- font-size: var(--pf-c-chip__text--FontSize);
8697
8684
  color: var(--pf-c-chip__text--Color);
8698
8685
  }
8699
8686
 
@@ -8702,6 +8689,28 @@ label.pf-c-check, .pf-c-check__label,
8702
8689
  margin-left: var(--pf-c-chip__icon--MarginLeft);
8703
8690
  }
8704
8691
 
8692
+ .pf-c-chip__content {
8693
+ display: flex;
8694
+ align-items: center;
8695
+ column-gap: var(--pf-c-chip__content--ColumnGap);
8696
+ font-size: var(--pf-c-chip__content--FontSize);
8697
+ }
8698
+
8699
+ .pf-c-chip__actions {
8700
+ font-size: var(--pf-c-chip__actions--FontSize);
8701
+ }
8702
+ .pf-c-chip__actions .pf-c-button {
8703
+ --pf-c-button--PaddingTop: var(--pf-c-chip__actions--c-button--PaddingTop);
8704
+ --pf-c-button--PaddingRight: var(--pf-c-chip__actions--c-button--PaddingRight);
8705
+ --pf-c-button--PaddingBottom: var(--pf-c-chip__actions--c-button--PaddingBottom);
8706
+ --pf-c-button--PaddingLeft: var(--pf-c-chip__actions--c-button--PaddingLeft);
8707
+ --pf-c-button--FontSize: var(--pf-c-chip__actions--c-button--FontSize);
8708
+ margin-top: var(--pf-c-chip__actions--c-button--MarginTop);
8709
+ margin-right: var(--pf-c-chip__actions--c-button--MarginRight);
8710
+ margin-bottom: var(--pf-c-chip__actions--c-button--MarginBottom);
8711
+ line-height: 1;
8712
+ }
8713
+
8705
8714
  :where(.pf-theme-dark) .pf-c-wizard__header, :where(.pf-theme-dark) .pf-c-page__sidebar-body.pf-m-menu .pf-c-context-selector,
8706
8715
  :where(.pf-theme-dark) .pf-c-page__main-section[class*=pf-m-dark-],
8707
8716
  :where(.pf-theme-dark) .pf-c-page__header, :where(.pf-theme-dark) .pf-c-masthead, :where(.pf-theme-dark) .pf-c-login__header,
@@ -16471,6 +16480,7 @@ label.pf-c-input-group__text {
16471
16480
  --pf-c-label--PaddingRight: var(--pf-global--spacer--sm);
16472
16481
  --pf-c-label--PaddingBottom: var(--pf-global--spacer--xs);
16473
16482
  --pf-c-label--PaddingLeft: var(--pf-global--spacer--sm);
16483
+ --pf-c-label--MaxWidth: 100%;
16474
16484
  --pf-c-label--BorderRadius: var(--pf-global--BorderRadius--lg);
16475
16485
  --pf-c-label--BackgroundColor: var(--pf-global--palette--black-150);
16476
16486
  --pf-c-label--Color: var(--pf-global--Color--100);
@@ -16577,18 +16587,18 @@ label.pf-c-input-group__text {
16577
16587
  --pf-c-label__content--MaxWidth: 100%;
16578
16588
  --pf-c-label--m-outline__content--Color: var(--pf-global--Color--100);
16579
16589
  --pf-c-label--m-editable__content--MaxWidth: 16ch;
16580
- --pf-c-label__text--MaxWidth: 16ch;
16590
+ --pf-c-label__text--MaxWidth: 100%;
16581
16591
  --pf-c-label__icon--Color: var(--pf-global--Color--100);
16582
16592
  --pf-c-label__icon--MarginRight: var(--pf-global--spacer--xs);
16583
- --pf-c-label__c-button--FontSize: var(--pf-global--FontSize--xs);
16584
- --pf-c-label__c-button--MarginTop: calc(var(--pf-global--spacer--form-element) * -1);
16585
- --pf-c-label__c-button--MarginRight: calc(var(--pf-global--spacer--form-element) * -1);
16586
- --pf-c-label__c-button--MarginBottom: calc(var(--pf-global--spacer--form-element) * -1);
16587
- --pf-c-label__c-button--MarginLeft: var(--pf-global--spacer--xs);
16588
- --pf-c-label__c-button--PaddingTop: var(--pf-global--spacer--xs);
16589
- --pf-c-label__c-button--PaddingRight: var(--pf-global--spacer--sm);
16590
- --pf-c-label__c-button--PaddingBottom: var(--pf-global--spacer--xs);
16591
- --pf-c-label__c-button--PaddingLeft: var(--pf-global--spacer--sm);
16593
+ --pf-c-label__actions--FontSize: var(--pf-global--FontSize--xs);
16594
+ --pf-c-label__actions--MarginRight: calc(var(--pf-c-label__actions--c-button--PaddingRight) * -1);
16595
+ --pf-c-label__actions--c-button--FontSize: var(--pf-global--FontSize--xs);
16596
+ --pf-c-label__actions--c-button--MarginTop: calc(var(--pf-c-label__actions--c-button--PaddingTop) * -1);
16597
+ --pf-c-label__actions--c-button--MarginBottom: calc(var(--pf-c-label__actions--c-button--PaddingBottom) * -1);
16598
+ --pf-c-label__actions--c-button--PaddingTop: var(--pf-global--spacer--xs);
16599
+ --pf-c-label__actions--c-button--PaddingRight: var(--pf-global--spacer--sm);
16600
+ --pf-c-label__actions--c-button--PaddingBottom: var(--pf-global--spacer--xs);
16601
+ --pf-c-label__actions--c-button--PaddingLeft: var(--pf-global--spacer--sm);
16592
16602
  --pf-c-label--m-editable--Cursor: pointer;
16593
16603
  --pf-c-label--m-editable--TextDecoration: underline;
16594
16604
  --pf-c-label--m-editable--TextDecorationStyle: dashed;
@@ -16609,6 +16619,7 @@ label.pf-c-input-group__text {
16609
16619
  --pf-c-label--m-editable--m-editable-active__content--before--BorderWidth: 0;
16610
16620
  --pf-c-label--m-editable--m-editable-active__content--before--BorderColor: transparent;
16611
16621
  position: relative;
16622
+ max-width: var(--pf-c-label--MaxWidth);
16612
16623
  padding: var(--pf-c-label--PaddingTop) var(--pf-c-label--PaddingRight) var(--pf-c-label--PaddingBottom) var(--pf-c-label--PaddingLeft);
16613
16624
  font-size: var(--pf-c-label--FontSize);
16614
16625
  color: var(--pf-c-label--Color);
@@ -16780,17 +16791,6 @@ label.pf-c-input-group__text {
16780
16791
  --pf-c-label--m-editable--TextDecoration: var(--pf-c-label--m-editable--m-editable-active--TextDecoration);
16781
16792
  --pf-c-label--BackgroundColor: var(--pf-c-label--m-editable--m-editable-active--BackgroundColor);
16782
16793
  }
16783
- .pf-c-label .pf-c-button {
16784
- --pf-c-button--FontSize: var(--pf-c-label__c-button--FontSize);
16785
- --pf-c-button--PaddingTop: var(--pf-c-label__c-button--PaddingTop);
16786
- --pf-c-button--PaddingRight: var(--pf-c-label__c-button--PaddingRight);
16787
- --pf-c-button--PaddingBottom: var(--pf-c-label__c-button--PaddingBottom);
16788
- --pf-c-button--PaddingLeft: var(--pf-c-label__c-button--PaddingLeft);
16789
- margin-top: var(--pf-c-label__c-button--MarginTop);
16790
- margin-right: var(--pf-c-label__c-button--MarginRight);
16791
- margin-bottom: var(--pf-c-label__c-button--MarginBottom);
16792
- margin-left: var(--pf-c-label__c-button--MarginLeft);
16793
- }
16794
16794
  .pf-c-label.pf-m-overflow, .pf-c-label.pf-m-add {
16795
16795
  --pf-c-label__content--Color: var(--pf-c-label--m-overflow__content--Color);
16796
16796
  --pf-c-label--BackgroundColor: var(--pf-c-label--m-overflow__content--BackgroundColor);
@@ -16816,10 +16816,8 @@ label.pf-c-input-group__text {
16816
16816
  }
16817
16817
 
16818
16818
  .pf-c-label__content {
16819
- overflow: hidden;
16820
- text-overflow: ellipsis;
16821
- white-space: nowrap;
16822
16819
  max-width: var(--pf-c-label__content--MaxWidth);
16820
+ overflow: hidden;
16823
16821
  color: var(--pf-c-label__content--Color);
16824
16822
  background-color: var(--pf-c-label__content--BackgroundColor);
16825
16823
  border-width: 0;
@@ -16835,9 +16833,17 @@ label.pf-c-input-group__text {
16835
16833
  border: var(--pf-c-label__content--before--BorderWidth) solid var(--pf-c-label__content--before--BorderColor);
16836
16834
  border-radius: var(--pf-c-label--BorderRadius);
16837
16835
  }
16836
+ input.pf-c-label__content {
16837
+ overflow: hidden;
16838
+ text-overflow: ellipsis;
16839
+ white-space: nowrap;
16840
+ }
16841
+
16838
16842
  a.pf-c-label__content,
16839
16843
  button.pf-c-label__content {
16844
+ padding: 0;
16840
16845
  cursor: pointer;
16846
+ background-color: transparent;
16841
16847
  border: none;
16842
16848
  }
16843
16849
  a.pf-c-label__content, a.pf-c-label__content:hover, a.pf-c-label__content:focus,
@@ -16862,6 +16868,20 @@ button.pf-c-label__content:focus {
16862
16868
  color: var(--pf-c-label__icon--Color);
16863
16869
  }
16864
16870
 
16871
+ .pf-c-label__actions {
16872
+ margin-right: var(--pf-c-label__actions--MarginRight);
16873
+ font-size: var(--pf-c-label__actions--FontSize);
16874
+ }
16875
+ .pf-c-label__actions .pf-c-button {
16876
+ --pf-c-button--FontSize: var(--pf-c-label__actions--c-button--FontSize);
16877
+ --pf-c-button--PaddingTop: var(--pf-c-label__actions--c-button--PaddingTop);
16878
+ --pf-c-button--PaddingRight: var(--pf-c-label__actions--c-button--PaddingRight);
16879
+ --pf-c-button--PaddingBottom: var(--pf-c-label__actions--c-button--PaddingBottom);
16880
+ --pf-c-button--PaddingLeft: var(--pf-c-label__actions--c-button--PaddingLeft);
16881
+ margin-top: var(--pf-c-label__actions--c-button--MarginTop);
16882
+ margin-bottom: var(--pf-c-label__actions--c-button--MarginBottom);
16883
+ }
16884
+
16865
16885
  :where(.pf-theme-dark) .pf-c-wizard__header, :where(.pf-theme-dark) .pf-c-page__sidebar-body.pf-m-menu .pf-c-context-selector,
16866
16886
  :where(.pf-theme-dark) .pf-c-page__main-section[class*=pf-m-dark-],
16867
16887
  :where(.pf-theme-dark) .pf-c-page__header, :where(.pf-theme-dark) .pf-c-masthead, :where(.pf-theme-dark) .pf-c-login__header,
@@ -23120,15 +23140,13 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
23120
23140
  --pf-c-popover__arrow--m-left--TranslateX: 50%;
23121
23141
  --pf-c-popover__arrow--m-left--TranslateY: -50%;
23122
23142
  --pf-c-popover__arrow--m-left--Rotate: 45deg;
23123
- --pf-c-popover--c-button--MarginLeft: var(--pf-global--spacer--sm);
23124
- --pf-c-popover--c-button--Top: calc(var(--pf-c-popover__content--PaddingTop) - var(--pf-global--spacer--form-element));
23125
- --pf-c-popover--c-button--Right: calc(var(--pf-c-popover__content--PaddingRight) - var(--pf-global--spacer--md));
23126
- --pf-c-popover--c-button--sibling--PaddingRight: var(--pf-global--spacer--2xl);
23127
- --pf-c-popover--c-title--MarginBottom: var(--pf-global--spacer--sm);
23128
- --pf-c-popover__title--MarginBottom: var(--pf-global--spacer--sm);
23129
- --pf-c-popover__title--LineHeight: var(--pf-global--LineHeight--md);
23130
- --pf-c-popover__title--FontFamily: var(--pf-global--FontFamily--heading--sans-serif);
23131
- --pf-c-popover__title--FontSize: var(--pf-global--FontSize--md);
23143
+ --pf-c-popover__close--Top: calc(var(--pf-c-popover__content--PaddingTop) - var(--pf-global--spacer--form-element));
23144
+ --pf-c-popover__close--Right: calc(var(--pf-c-popover__content--PaddingRight) - var(--pf-global--spacer--md));
23145
+ --pf-c-popover__close--sibling--PaddingRight: var(--pf-global--spacer--2xl);
23146
+ --pf-c-popover__header--MarginBottom: var(--pf-global--spacer--sm);
23147
+ --pf-c-popover__title-text--LineHeight: var(--pf-global--LineHeight--md);
23148
+ --pf-c-popover__title-text--FontFamily: var(--pf-global--FontFamily--heading--sans-serif);
23149
+ --pf-c-popover__title-text--FontSize: var(--pf-global--FontSize--md);
23132
23150
  --pf-c-popover__title-icon--MarginRight: var(--pf-global--spacer--sm);
23133
23151
  --pf-c-popover__title-icon--Color: var(--pf-global--Color--100);
23134
23152
  --pf-c-popover__footer--MarginTop: var(--pf-global--spacer--md);
@@ -23208,16 +23226,14 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
23208
23226
  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);
23209
23227
  background-color: var(--pf-c-popover__content--BackgroundColor);
23210
23228
  }
23211
- .pf-c-popover__content > .pf-c-title {
23212
- margin-bottom: var(--pf-c-popover--c-title--MarginBottom);
23213
- }
23214
- .pf-c-popover__content > .pf-c-button {
23229
+
23230
+ .pf-c-popover__close {
23215
23231
  position: absolute;
23216
- top: var(--pf-c-popover--c-button--Top);
23217
- right: var(--pf-c-popover--c-button--Right);
23232
+ top: var(--pf-c-popover__close--Top);
23233
+ right: var(--pf-c-popover__close--Right);
23218
23234
  }
23219
- .pf-c-popover__content > .pf-c-button + * {
23220
- padding-right: var(--pf-c-popover--c-button--sibling--PaddingRight);
23235
+ .pf-c-popover__close + * {
23236
+ padding-right: var(--pf-c-popover__close--sibling--PaddingRight);
23221
23237
  }
23222
23238
 
23223
23239
  .pf-c-popover__arrow {
@@ -23229,15 +23245,13 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
23229
23245
  box-shadow: var(--pf-c-popover__arrow--BoxShadow);
23230
23246
  }
23231
23247
 
23232
- .pf-c-popover__title {
23233
- flex: 0 0 auto;
23234
- margin-bottom: var(--pf-c-popover__title--MarginBottom);
23235
- font-family: var(--pf-c-popover__title--FontFamily);
23236
- font-size: var(--pf-c-popover__title--FontSize);
23237
- line-height: var(--pf-c-popover__title--LineHeight);
23248
+ .pf-c-popover__header {
23249
+ margin-bottom: var(--pf-c-popover__header--MarginBottom);
23238
23250
  }
23239
- .pf-c-popover__title.pf-m-icon {
23251
+
23252
+ .pf-c-popover__title {
23240
23253
  display: flex;
23254
+ flex: 0 0 auto;
23241
23255
  }
23242
23256
 
23243
23257
  .pf-c-popover__title-icon {
@@ -23246,6 +23260,9 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
23246
23260
  }
23247
23261
 
23248
23262
  .pf-c-popover__title-text {
23263
+ font-family: var(--pf-c-popover__title-text--FontFamily);
23264
+ font-size: var(--pf-c-popover__title-text--FontSize);
23265
+ line-height: var(--pf-c-popover__title-text--LineHeight);
23249
23266
  color: var(--pf-c-popover__title-text--Color, inherit);
23250
23267
  }
23251
23268
 
@@ -29055,10 +29072,20 @@ svg.pf-c-spinner.pf-m-xl {
29055
29072
  --pf-c-table--m-tree-view__toggle--Left: var(--pf-c-table__tree-view-main--PaddingLeft);
29056
29073
  --pf-c-table--m-tree-view__toggle--TranslateX: -100%;
29057
29074
  --pf-c-table--m-tree-view__toggle__toggle-icon--MinWidth: var(--pf-global--FontSize--md);
29075
+ --pf-c-table--m-no-inset__tree-view-main--PaddingLeft: 0;
29076
+ --pf-c-table--m-no-inset__tree-view-main--MarginLeft: 0;
29058
29077
  }
29059
29078
  .pf-c-table.pf-m-tree-view > tbody > tr {
29060
29079
  --pf-c-table--m-tree-view__toggle--Left: var(--pf-c-table__tree-view-main--PaddingLeft);
29061
29080
  }
29081
+ .pf-c-table.pf-m-tree-view > tbody > tr.pf-m-no-inset {
29082
+ --pf-c-table__tree-view-main--PaddingLeft: var(--pf-c-table--m-no-inset__tree-view-main--PaddingLeft);
29083
+ --pf-c-table__tree-view-main--MarginLeft: var(--pf-c-table--m-no-inset__tree-view-main--MarginLeft);
29084
+ }
29085
+ .pf-c-table.pf-m-tree-view.pf-m-no-inset {
29086
+ --pf-c-table__tree-view-main--PaddingLeft: var(--pf-c-table--m-no-inset__tree-view-main--PaddingLeft);
29087
+ --pf-c-table__tree-view-main--MarginLeft: var(--pf-c-table--m-no-inset__tree-view-main--MarginLeft);
29088
+ }
29062
29089
  .pf-c-table.pf-m-tree-view tr[aria-level="2"] {
29063
29090
  --pf-c-table__tree-view-main--PaddingLeft: calc(var(--pf-c-table__tree-view-main--nested-indent--base) * 1 + var(--pf-c-table__tree-view-main--indent--base));
29064
29091
  }