@patternfly/patternfly 4.212.1 → 4.214.1

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/FormControl/form-control.css +7 -0
  2. package/components/FormControl/form-control.scss +11 -0
  3. package/components/Icon/icon.css +119 -0
  4. package/components/Icon/icon.scss +149 -0
  5. package/components/ProgressStepper/progress-stepper.css +7 -4
  6. package/components/ProgressStepper/progress-stepper.scss +7 -4
  7. package/components/_all.scss +1 -0
  8. package/docs/components/DualListSelector/examples/DualListSelector.md +4 -46
  9. package/docs/components/FileUpload/examples/FileUpload.md +1 -1
  10. package/docs/components/Form/examples/Form.md +52 -50
  11. package/docs/components/FormControl/examples/FormControl.md +46 -25
  12. package/docs/components/Icon/examples/Icon.md +255 -0
  13. package/docs/components/LogViewer/examples/LogViewer.md +28 -28
  14. package/docs/components/Login/examples/Login.md +5 -5
  15. package/docs/components/SearchInput/examples/SearchInput.md +2 -2
  16. package/docs/components/TabContent/examples/TabContent.md +21 -11
  17. package/docs/components/TextInputGroup/examples/TextInputGroup.md +2 -2
  18. package/docs/components/Wizard/examples/Wizard.md +5 -5
  19. package/docs/demos/Alert/examples/Alert.md +2 -2
  20. package/docs/demos/Button/examples/Button.md +3 -3
  21. package/docs/demos/Form/examples/BasicForms.md +5 -5
  22. package/docs/demos/HelperText/examples/HelperText.md +1 -1
  23. package/docs/demos/Modal/examples/Modal.md +1 -1
  24. package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +1 -1
  25. package/docs/demos/PasswordStrength/examples/PasswordStrength.md +4 -4
  26. package/docs/demos/Wizard/examples/Wizard.md +1960 -748
  27. package/package.json +1 -1
  28. package/patternfly-no-reset.css +134 -4
  29. package/patternfly.css +134 -4
  30. package/patternfly.min.css +1 -1
  31. package/patternfly.min.css.map +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@patternfly/patternfly",
3
3
  "description": "Assets, source, tooling, and content for PatternFly 4",
4
- "version": "4.212.1",
4
+ "version": "4.214.1",
5
5
  "keywords": [],
6
6
  "license": "MIT",
7
7
  "scripts": {
@@ -15299,6 +15299,8 @@ label.pf-c-check, .pf-c-check__label,
15299
15299
  --pf-c-form-control--readonly--focus--PaddingBottom: calc(var(--pf-global--spacer--form-element) - var(--pf-global--BorderWidth--sm));
15300
15300
  --pf-c-form-control--readonly--focus--BorderBottomWidth: var(--pf-global--BorderWidth--sm);
15301
15301
  --pf-c-form-control--readonly--focus--BorderBottomColor: var(--pf-global--BorderColor--200);
15302
+ --pf-c-form-control--readonly--m-plain--BackgroundColor: transparent;
15303
+ --pf-c-form-control--readonly--m-plain--inset--base: 0;
15302
15304
  --pf-c-form-control--success--BorderBottomWidth: var(--pf-global--BorderWidth--md);
15303
15305
  --pf-c-form-control--success--PaddingBottom: calc(var(--pf-global--spacer--form-element) - var(--pf-c-form-control--success--BorderBottomWidth));
15304
15306
  --pf-c-form-control--success--BorderBottomColor: var(--pf-global--success-color--100);
@@ -15419,6 +15421,11 @@ label.pf-c-check, .pf-c-check__label,
15419
15421
  --pf-c-form-control--focus--BorderBottomWidth: var(--pf-c-form-control--readonly--focus--BorderBottomWidth);
15420
15422
  --pf-c-form-control--focus--BorderBottomColor: var(--pf-c-form-control--readonly--focus--BorderBottomColor);
15421
15423
  }
15424
+ .pf-c-form-control[readonly].pf-m-plain {
15425
+ --pf-c-form-control--readonly--BackgroundColor: var(--pf-c-form-control--readonly--m-plain--BackgroundColor);
15426
+ --pf-c-form-control--inset--base: var(--pf-c-form-control--readonly--m-plain--inset--base);
15427
+ border-color: transparent;
15428
+ }
15422
15429
  .pf-c-form-control:hover {
15423
15430
  --pf-c-form-control--BorderBottomColor: var(--pf-c-form-control--hover--BorderBottomColor);
15424
15431
  }
@@ -15844,6 +15851,126 @@ textarea.pf-c-form-control {
15844
15851
  --pf-c-helper-text__item-text--m-success--Color: var(--pf-global--success-color--100);
15845
15852
  }
15846
15853
 
15854
+ .pf-c-icon {
15855
+ --pf-c-icon--Width: var(--pf-global--icon--FontSize--md);
15856
+ --pf-c-icon--Height: var(--pf-global--icon--FontSize--md);
15857
+ --pf-c-icon--m-inline--Width: 1em;
15858
+ --pf-c-icon--m-inline--Height: 1em;
15859
+ --pf-c-icon--m-sm--Width: var(--pf-global--icon--FontSize--sm);
15860
+ --pf-c-icon--m-md--Width: var(--pf-global--icon--FontSize--md);
15861
+ --pf-c-icon--m-lg--Width: var(--pf-global--icon--FontSize--lg);
15862
+ --pf-c-icon--m-xl--Width: var(--pf-global--icon--FontSize--xl);
15863
+ --pf-c-icon--m-sm--Height: var(--pf-global--icon--FontSize--sm);
15864
+ --pf-c-icon--m-md--Height: var(--pf-global--icon--FontSize--md);
15865
+ --pf-c-icon--m-lg--Height: var(--pf-global--icon--FontSize--lg);
15866
+ --pf-c-icon--m-xl--Height: var(--pf-global--icon--FontSize--xl);
15867
+ --pf-c-icon__content--Color: var(--pf-global--icon--Color--dark);
15868
+ --pf-c-icon__content--m-danger--Color: var(--pf-global--danger-color--100);
15869
+ --pf-c-icon__content--m-warning--Color: var(--pf-global--warning-color--100);
15870
+ --pf-c-icon__content--m-success--Color: var(--pf-global--success-color--100);
15871
+ --pf-c-icon__content--m-info--Color: var(--pf-global--info-color--100);
15872
+ --pf-c-icon__content--m-default--Color: var(--pf-global--default-color--100);
15873
+ --pf-c-icon__content--FontSize: var(--pf-global--icon--FontSize--md);
15874
+ --pf-c-icon--m-inline__content--FontSize: 1em;
15875
+ --pf-c-icon__content--svg--VerticalAlign: -.125em;
15876
+ --pf-c-icon--m-sm--content--FontSize: var(--pf-global--icon--FontSize--sm);
15877
+ --pf-c-icon--m-md--content--FontSize: var(--pf-global--icon--FontSize--md);
15878
+ --pf-c-icon--m-lg--content--FontSize: var(--pf-global--icon--FontSize--lg);
15879
+ --pf-c-icon--m-xl--content--FontSize: var(--pf-global--icon--FontSize--xl);
15880
+ position: relative;
15881
+ display: inline-flex;
15882
+ align-items: center;
15883
+ justify-content: center;
15884
+ width: var(--pf-c-icon--Width);
15885
+ height: var(--pf-c-icon--Height);
15886
+ }
15887
+ .pf-c-icon.pf-m-inline {
15888
+ --pf-c-icon--Width: var(--pf-c-icon--m-inline--Width);
15889
+ --pf-c-icon--Height: var(--pf-c-icon--m-inline--Height);
15890
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-inline__content--FontSize);
15891
+ --pf-c-icon__content--Color: currentcolor;
15892
+ line-height: 1;
15893
+ }
15894
+ .pf-c-icon.pf-m-inline .pf-c-spinner {
15895
+ --pf-c-spinner--diameter: 1em;
15896
+ }
15897
+ .pf-c-icon.pf-m-sm {
15898
+ --pf-c-icon--Width: var(--pf-c-icon--m-sm--Width);
15899
+ --pf-c-icon--Height: var(--pf-c-icon--m-sm--Height);
15900
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-sm--content--FontSize);
15901
+ }
15902
+ .pf-c-icon.pf-m-md {
15903
+ --pf-c-icon--Width: var(--pf-c-icon--m-md--Width);
15904
+ --pf-c-icon--Height: var(--pf-c-icon--m-md--Height);
15905
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-md--content--FontSize);
15906
+ }
15907
+ .pf-c-icon.pf-m-lg {
15908
+ --pf-c-icon--Width: var(--pf-c-icon--m-lg--Width);
15909
+ --pf-c-icon--Height: var(--pf-c-icon--m-lg--Height);
15910
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-lg--content--FontSize);
15911
+ }
15912
+ .pf-c-icon.pf-m-xl {
15913
+ --pf-c-icon--Width: var(--pf-c-icon--m-xl--Width);
15914
+ --pf-c-icon--Height: var(--pf-c-icon--m-xl--Height);
15915
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-xl--content--FontSize);
15916
+ }
15917
+ .pf-c-icon.pf-m-in-progress {
15918
+ --pf-c-icon__content--Opacity: 0;
15919
+ --pf-c-icon__progress--Opacity: 1;
15920
+ }
15921
+
15922
+ .pf-c-icon__content,
15923
+ .pf-c-icon__progress {
15924
+ font-size: var(--pf-c-icon__content--FontSize);
15925
+ }
15926
+ .pf-c-icon__content svg,
15927
+ .pf-c-icon__progress svg {
15928
+ vertical-align: var(--pf-c-icon__content--svg--VerticalAlign);
15929
+ }
15930
+ .pf-c-icon__content.pf-m-sm,
15931
+ .pf-c-icon__progress.pf-m-sm {
15932
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-sm--content--FontSize);
15933
+ }
15934
+ .pf-c-icon__content.pf-m-md,
15935
+ .pf-c-icon__progress.pf-m-md {
15936
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-md--content--FontSize);
15937
+ }
15938
+ .pf-c-icon__content.pf-m-lg,
15939
+ .pf-c-icon__progress.pf-m-lg {
15940
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-lg--content--FontSize);
15941
+ }
15942
+ .pf-c-icon__content.pf-m-xl,
15943
+ .pf-c-icon__progress.pf-m-xl {
15944
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-xl--content--FontSize);
15945
+ }
15946
+
15947
+ .pf-c-icon__content {
15948
+ color: var(--pf-c-icon__content--Color);
15949
+ opacity: var(--pf-c-icon__content--Opacity, 1);
15950
+ }
15951
+ .pf-c-icon__content.pf-m-danger {
15952
+ --pf-c-icon__content--Color: var(--pf-c-icon__content--m-danger--Color);
15953
+ }
15954
+ .pf-c-icon__content.pf-m-warning {
15955
+ --pf-c-icon__content--Color: var(--pf-c-icon__content--m-warning--Color);
15956
+ }
15957
+ .pf-c-icon__content.pf-m-success {
15958
+ --pf-c-icon__content--Color: var(--pf-c-icon__content--m-success--Color);
15959
+ }
15960
+ .pf-c-icon__content.pf-m-info {
15961
+ --pf-c-icon__content--Color: var(--pf-c-icon__content--m-info--Color);
15962
+ }
15963
+ .pf-c-icon__content.pf-m-default {
15964
+ --pf-c-icon__content--Color: var(--pf-c-icon__content--m-default--Color);
15965
+ }
15966
+
15967
+ .pf-c-icon__progress {
15968
+ position: absolute;
15969
+ top: calc(50% + 0.5 * var(--pf-c-icon__content--svg--VerticalAlign));
15970
+ opacity: var(--pf-c-icon__progress--Opacity, 0);
15971
+ transform: translateY(calc(-50% - 0.5 * var(--pf-c-icon__content--svg--VerticalAlign)));
15972
+ }
15973
+
15847
15974
  .pf-c-inline-edit {
15848
15975
  --pf-c-inline-edit__group--item--MarginRight: var(--pf-global--spacer--sm);
15849
15976
  --pf-c-inline-edit__action--c-button--m-valid--m-plain--Color: var(--pf-global--link--Color);
@@ -23366,8 +23493,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
23366
23493
  --pf-c-progress-stepper--m-center__step-connector--JustifyContent: center;
23367
23494
  --pf-c-progress-stepper--m-center__step-main--MarginRight: var(--pf-global--spacer--xs);
23368
23495
  --pf-c-progress-stepper--m-center__step-main--MarginLeft: var(--pf-global--spacer--xs);
23369
- --pf-c-progress-stepper--m-center__step-title--TextAlign: center;
23370
- --pf-c-progress-stepper--m-center__step-description--TextAlign: center;
23496
+ --pf-c-progress-stepper--m-center__step-main--TextAlign: center;
23371
23497
  --pf-c-progress-stepper--m-center__step-description--MarginRight: 0;
23372
23498
  --pf-c-progress-stepper--m-center__step-description--MarginLeft: 0;
23373
23499
  --pf-c-progress-stepper--GridTemplateRows: auto 1fr;
@@ -23461,10 +23587,11 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
23461
23587
  --pf-c-progress-stepper__step-connector--JustifyContent: var(--pf-c-progress-stepper--m-center__step-connector--JustifyContent);
23462
23588
  --pf-c-progress-stepper__step-main--MarginRight: var(--pf-c-progress-stepper--m-center__step-main--MarginRight);
23463
23589
  --pf-c-progress-stepper__step-main--MarginLeft: var(--pf-c-progress-stepper--m-center__step-main--MarginLeft);
23464
- --pf-c-progress-stepper__step-title--TextAlign: var(--pf-c-progress-stepper--m-center__step-title--TextAlign);
23590
+ --pf-c-progress-stepper--step-main--TextAlign: var(--pf-c-progress-stepper--m-center__step-main--TextAlign, auto);
23591
+ --pf-c-progress-stepper__step-title--TextAlign: var(--pf-c-progress-stepper--m-center__step-title--TextAlign, auto);
23465
23592
  --pf-c-progress-stepper__step-description--MarginRight: var(--pf-c-progress-stepper--m-center__step-description--MarginRight);
23466
23593
  --pf-c-progress-stepper__step-description--MarginLeft: var(--pf-c-progress-stepper--m-center__step-description--MarginLeft);
23467
- --pf-c-progress-stepper__step-description--TextAlign: var(--pf-c-progress-stepper--m-center__step-description--TextAlign);
23594
+ --pf-c-progress-stepper__step-description--TextAlign: var(--pf-c-progress-stepper--m-center__step-description--TextAlign, auto);
23468
23595
  --pf-c-progress-stepper--m-vertical__step-main--MarginRight: var(--pf-c-progress-stepper--m-vertical--m-center__step-main--MarginRight);
23469
23596
  --pf-c-progress-stepper--m-vertical__step-main--MarginLeft: var(--pf-c-progress-stepper--m-vertical--m-center__step-main--MarginLeft);
23470
23597
  grid-template-columns: var(--pf-c-progress-stepper--m-center--GridTemplateColumns);
@@ -23592,7 +23719,10 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
23592
23719
  }
23593
23720
 
23594
23721
  .pf-c-progress-stepper__step-main {
23722
+ min-width: 0;
23595
23723
  margin: var(--pf-c-progress-stepper__step-main--MarginTop) var(--pf-c-progress-stepper__step-main--MarginRight) var(--pf-c-progress-stepper__step-main--MarginBottom) var(--pf-c-progress-stepper__step-main--MarginLeft);
23724
+ text-align: var(--pf-c-progress-stepper--step-main--TextAlign, auto);
23725
+ overflow-wrap: anywhere;
23596
23726
  }
23597
23727
  .pf-c-progress-stepper__step:not(:last-of-type) > .pf-c-progress-stepper__step-main::before {
23598
23728
  position: absolute;
package/patternfly.css CHANGED
@@ -15426,6 +15426,8 @@ label.pf-c-check, .pf-c-check__label,
15426
15426
  --pf-c-form-control--readonly--focus--PaddingBottom: calc(var(--pf-global--spacer--form-element) - var(--pf-global--BorderWidth--sm));
15427
15427
  --pf-c-form-control--readonly--focus--BorderBottomWidth: var(--pf-global--BorderWidth--sm);
15428
15428
  --pf-c-form-control--readonly--focus--BorderBottomColor: var(--pf-global--BorderColor--200);
15429
+ --pf-c-form-control--readonly--m-plain--BackgroundColor: transparent;
15430
+ --pf-c-form-control--readonly--m-plain--inset--base: 0;
15429
15431
  --pf-c-form-control--success--BorderBottomWidth: var(--pf-global--BorderWidth--md);
15430
15432
  --pf-c-form-control--success--PaddingBottom: calc(var(--pf-global--spacer--form-element) - var(--pf-c-form-control--success--BorderBottomWidth));
15431
15433
  --pf-c-form-control--success--BorderBottomColor: var(--pf-global--success-color--100);
@@ -15546,6 +15548,11 @@ label.pf-c-check, .pf-c-check__label,
15546
15548
  --pf-c-form-control--focus--BorderBottomWidth: var(--pf-c-form-control--readonly--focus--BorderBottomWidth);
15547
15549
  --pf-c-form-control--focus--BorderBottomColor: var(--pf-c-form-control--readonly--focus--BorderBottomColor);
15548
15550
  }
15551
+ .pf-c-form-control[readonly].pf-m-plain {
15552
+ --pf-c-form-control--readonly--BackgroundColor: var(--pf-c-form-control--readonly--m-plain--BackgroundColor);
15553
+ --pf-c-form-control--inset--base: var(--pf-c-form-control--readonly--m-plain--inset--base);
15554
+ border-color: transparent;
15555
+ }
15549
15556
  .pf-c-form-control:hover {
15550
15557
  --pf-c-form-control--BorderBottomColor: var(--pf-c-form-control--hover--BorderBottomColor);
15551
15558
  }
@@ -15971,6 +15978,126 @@ textarea.pf-c-form-control {
15971
15978
  --pf-c-helper-text__item-text--m-success--Color: var(--pf-global--success-color--100);
15972
15979
  }
15973
15980
 
15981
+ .pf-c-icon {
15982
+ --pf-c-icon--Width: var(--pf-global--icon--FontSize--md);
15983
+ --pf-c-icon--Height: var(--pf-global--icon--FontSize--md);
15984
+ --pf-c-icon--m-inline--Width: 1em;
15985
+ --pf-c-icon--m-inline--Height: 1em;
15986
+ --pf-c-icon--m-sm--Width: var(--pf-global--icon--FontSize--sm);
15987
+ --pf-c-icon--m-md--Width: var(--pf-global--icon--FontSize--md);
15988
+ --pf-c-icon--m-lg--Width: var(--pf-global--icon--FontSize--lg);
15989
+ --pf-c-icon--m-xl--Width: var(--pf-global--icon--FontSize--xl);
15990
+ --pf-c-icon--m-sm--Height: var(--pf-global--icon--FontSize--sm);
15991
+ --pf-c-icon--m-md--Height: var(--pf-global--icon--FontSize--md);
15992
+ --pf-c-icon--m-lg--Height: var(--pf-global--icon--FontSize--lg);
15993
+ --pf-c-icon--m-xl--Height: var(--pf-global--icon--FontSize--xl);
15994
+ --pf-c-icon__content--Color: var(--pf-global--icon--Color--dark);
15995
+ --pf-c-icon__content--m-danger--Color: var(--pf-global--danger-color--100);
15996
+ --pf-c-icon__content--m-warning--Color: var(--pf-global--warning-color--100);
15997
+ --pf-c-icon__content--m-success--Color: var(--pf-global--success-color--100);
15998
+ --pf-c-icon__content--m-info--Color: var(--pf-global--info-color--100);
15999
+ --pf-c-icon__content--m-default--Color: var(--pf-global--default-color--100);
16000
+ --pf-c-icon__content--FontSize: var(--pf-global--icon--FontSize--md);
16001
+ --pf-c-icon--m-inline__content--FontSize: 1em;
16002
+ --pf-c-icon__content--svg--VerticalAlign: -.125em;
16003
+ --pf-c-icon--m-sm--content--FontSize: var(--pf-global--icon--FontSize--sm);
16004
+ --pf-c-icon--m-md--content--FontSize: var(--pf-global--icon--FontSize--md);
16005
+ --pf-c-icon--m-lg--content--FontSize: var(--pf-global--icon--FontSize--lg);
16006
+ --pf-c-icon--m-xl--content--FontSize: var(--pf-global--icon--FontSize--xl);
16007
+ position: relative;
16008
+ display: inline-flex;
16009
+ align-items: center;
16010
+ justify-content: center;
16011
+ width: var(--pf-c-icon--Width);
16012
+ height: var(--pf-c-icon--Height);
16013
+ }
16014
+ .pf-c-icon.pf-m-inline {
16015
+ --pf-c-icon--Width: var(--pf-c-icon--m-inline--Width);
16016
+ --pf-c-icon--Height: var(--pf-c-icon--m-inline--Height);
16017
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-inline__content--FontSize);
16018
+ --pf-c-icon__content--Color: currentcolor;
16019
+ line-height: 1;
16020
+ }
16021
+ .pf-c-icon.pf-m-inline .pf-c-spinner {
16022
+ --pf-c-spinner--diameter: 1em;
16023
+ }
16024
+ .pf-c-icon.pf-m-sm {
16025
+ --pf-c-icon--Width: var(--pf-c-icon--m-sm--Width);
16026
+ --pf-c-icon--Height: var(--pf-c-icon--m-sm--Height);
16027
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-sm--content--FontSize);
16028
+ }
16029
+ .pf-c-icon.pf-m-md {
16030
+ --pf-c-icon--Width: var(--pf-c-icon--m-md--Width);
16031
+ --pf-c-icon--Height: var(--pf-c-icon--m-md--Height);
16032
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-md--content--FontSize);
16033
+ }
16034
+ .pf-c-icon.pf-m-lg {
16035
+ --pf-c-icon--Width: var(--pf-c-icon--m-lg--Width);
16036
+ --pf-c-icon--Height: var(--pf-c-icon--m-lg--Height);
16037
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-lg--content--FontSize);
16038
+ }
16039
+ .pf-c-icon.pf-m-xl {
16040
+ --pf-c-icon--Width: var(--pf-c-icon--m-xl--Width);
16041
+ --pf-c-icon--Height: var(--pf-c-icon--m-xl--Height);
16042
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-xl--content--FontSize);
16043
+ }
16044
+ .pf-c-icon.pf-m-in-progress {
16045
+ --pf-c-icon__content--Opacity: 0;
16046
+ --pf-c-icon__progress--Opacity: 1;
16047
+ }
16048
+
16049
+ .pf-c-icon__content,
16050
+ .pf-c-icon__progress {
16051
+ font-size: var(--pf-c-icon__content--FontSize);
16052
+ }
16053
+ .pf-c-icon__content svg,
16054
+ .pf-c-icon__progress svg {
16055
+ vertical-align: var(--pf-c-icon__content--svg--VerticalAlign);
16056
+ }
16057
+ .pf-c-icon__content.pf-m-sm,
16058
+ .pf-c-icon__progress.pf-m-sm {
16059
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-sm--content--FontSize);
16060
+ }
16061
+ .pf-c-icon__content.pf-m-md,
16062
+ .pf-c-icon__progress.pf-m-md {
16063
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-md--content--FontSize);
16064
+ }
16065
+ .pf-c-icon__content.pf-m-lg,
16066
+ .pf-c-icon__progress.pf-m-lg {
16067
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-lg--content--FontSize);
16068
+ }
16069
+ .pf-c-icon__content.pf-m-xl,
16070
+ .pf-c-icon__progress.pf-m-xl {
16071
+ --pf-c-icon__content--FontSize: var(--pf-c-icon--m-xl--content--FontSize);
16072
+ }
16073
+
16074
+ .pf-c-icon__content {
16075
+ color: var(--pf-c-icon__content--Color);
16076
+ opacity: var(--pf-c-icon__content--Opacity, 1);
16077
+ }
16078
+ .pf-c-icon__content.pf-m-danger {
16079
+ --pf-c-icon__content--Color: var(--pf-c-icon__content--m-danger--Color);
16080
+ }
16081
+ .pf-c-icon__content.pf-m-warning {
16082
+ --pf-c-icon__content--Color: var(--pf-c-icon__content--m-warning--Color);
16083
+ }
16084
+ .pf-c-icon__content.pf-m-success {
16085
+ --pf-c-icon__content--Color: var(--pf-c-icon__content--m-success--Color);
16086
+ }
16087
+ .pf-c-icon__content.pf-m-info {
16088
+ --pf-c-icon__content--Color: var(--pf-c-icon__content--m-info--Color);
16089
+ }
16090
+ .pf-c-icon__content.pf-m-default {
16091
+ --pf-c-icon__content--Color: var(--pf-c-icon__content--m-default--Color);
16092
+ }
16093
+
16094
+ .pf-c-icon__progress {
16095
+ position: absolute;
16096
+ top: calc(50% + 0.5 * var(--pf-c-icon__content--svg--VerticalAlign));
16097
+ opacity: var(--pf-c-icon__progress--Opacity, 0);
16098
+ transform: translateY(calc(-50% - 0.5 * var(--pf-c-icon__content--svg--VerticalAlign)));
16099
+ }
16100
+
15974
16101
  .pf-c-inline-edit {
15975
16102
  --pf-c-inline-edit__group--item--MarginRight: var(--pf-global--spacer--sm);
15976
16103
  --pf-c-inline-edit__action--c-button--m-valid--m-plain--Color: var(--pf-global--link--Color);
@@ -23493,8 +23620,7 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
23493
23620
  --pf-c-progress-stepper--m-center__step-connector--JustifyContent: center;
23494
23621
  --pf-c-progress-stepper--m-center__step-main--MarginRight: var(--pf-global--spacer--xs);
23495
23622
  --pf-c-progress-stepper--m-center__step-main--MarginLeft: var(--pf-global--spacer--xs);
23496
- --pf-c-progress-stepper--m-center__step-title--TextAlign: center;
23497
- --pf-c-progress-stepper--m-center__step-description--TextAlign: center;
23623
+ --pf-c-progress-stepper--m-center__step-main--TextAlign: center;
23498
23624
  --pf-c-progress-stepper--m-center__step-description--MarginRight: 0;
23499
23625
  --pf-c-progress-stepper--m-center__step-description--MarginLeft: 0;
23500
23626
  --pf-c-progress-stepper--GridTemplateRows: auto 1fr;
@@ -23588,10 +23714,11 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
23588
23714
  --pf-c-progress-stepper__step-connector--JustifyContent: var(--pf-c-progress-stepper--m-center__step-connector--JustifyContent);
23589
23715
  --pf-c-progress-stepper__step-main--MarginRight: var(--pf-c-progress-stepper--m-center__step-main--MarginRight);
23590
23716
  --pf-c-progress-stepper__step-main--MarginLeft: var(--pf-c-progress-stepper--m-center__step-main--MarginLeft);
23591
- --pf-c-progress-stepper__step-title--TextAlign: var(--pf-c-progress-stepper--m-center__step-title--TextAlign);
23717
+ --pf-c-progress-stepper--step-main--TextAlign: var(--pf-c-progress-stepper--m-center__step-main--TextAlign, auto);
23718
+ --pf-c-progress-stepper__step-title--TextAlign: var(--pf-c-progress-stepper--m-center__step-title--TextAlign, auto);
23592
23719
  --pf-c-progress-stepper__step-description--MarginRight: var(--pf-c-progress-stepper--m-center__step-description--MarginRight);
23593
23720
  --pf-c-progress-stepper__step-description--MarginLeft: var(--pf-c-progress-stepper--m-center__step-description--MarginLeft);
23594
- --pf-c-progress-stepper__step-description--TextAlign: var(--pf-c-progress-stepper--m-center__step-description--TextAlign);
23721
+ --pf-c-progress-stepper__step-description--TextAlign: var(--pf-c-progress-stepper--m-center__step-description--TextAlign, auto);
23595
23722
  --pf-c-progress-stepper--m-vertical__step-main--MarginRight: var(--pf-c-progress-stepper--m-vertical--m-center__step-main--MarginRight);
23596
23723
  --pf-c-progress-stepper--m-vertical__step-main--MarginLeft: var(--pf-c-progress-stepper--m-vertical--m-center__step-main--MarginLeft);
23597
23724
  grid-template-columns: var(--pf-c-progress-stepper--m-center--GridTemplateColumns);
@@ -23719,7 +23846,10 @@ label.pf-c-menu__item:where(:not([disabled], .pf-m-disabled)) {
23719
23846
  }
23720
23847
 
23721
23848
  .pf-c-progress-stepper__step-main {
23849
+ min-width: 0;
23722
23850
  margin: var(--pf-c-progress-stepper__step-main--MarginTop) var(--pf-c-progress-stepper__step-main--MarginRight) var(--pf-c-progress-stepper__step-main--MarginBottom) var(--pf-c-progress-stepper__step-main--MarginLeft);
23851
+ text-align: var(--pf-c-progress-stepper--step-main--TextAlign, auto);
23852
+ overflow-wrap: anywhere;
23723
23853
  }
23724
23854
  .pf-c-progress-stepper__step:not(:last-of-type) > .pf-c-progress-stepper__step-main::before {
23725
23855
  position: absolute;