@patternfly/patternfly 6.0.0-alpha.200 → 6.0.0-alpha.202

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 (77) hide show
  1. package/base/normalize.scss +3 -3
  2. package/base/patternfly-variables.css +2 -6
  3. package/base/tokens/tokens-charts-dark.scss +1 -1
  4. package/base/tokens/tokens-charts.scss +1 -1
  5. package/base/tokens/tokens-dark.scss +1 -1
  6. package/base/tokens/tokens-default.scss +3 -3
  7. package/base/tokens/tokens-local.scss +0 -6
  8. package/base/tokens/tokens-palette.scss +1 -1
  9. package/components/Breadcrumb/breadcrumb.css +9 -6
  10. package/components/Breadcrumb/breadcrumb.scss +9 -6
  11. package/components/Button/button.css +16 -7
  12. package/components/Button/button.scss +17 -7
  13. package/components/Content/content.css +8 -5
  14. package/components/Content/content.scss +8 -5
  15. package/components/DescriptionList/description-list.css +10 -15
  16. package/components/DescriptionList/description-list.scss +10 -16
  17. package/components/JumpLinks/jump-links.css +1 -1
  18. package/components/JumpLinks/jump-links.scss +1 -2
  19. package/components/Label/label.css +15 -14
  20. package/components/Label/label.scss +16 -14
  21. package/components/Masthead/masthead.css +172 -95
  22. package/components/Masthead/masthead.scss +74 -49
  23. package/components/Nav/nav.css +5 -4
  24. package/components/Nav/nav.scss +5 -4
  25. package/components/Page/page.css +18 -12
  26. package/components/Page/page.scss +18 -12
  27. package/components/ProgressStepper/progress-stepper.css +8 -7
  28. package/components/ProgressStepper/progress-stepper.scss +8 -8
  29. package/components/SimpleList/simple-list.css +1 -1
  30. package/components/SimpleList/simple-list.scss +1 -2
  31. package/components/Tabs/tabs.css +1 -1
  32. package/components/Tabs/tabs.scss +1 -3
  33. package/components/Timestamp/timestamp.css +8 -17
  34. package/components/Timestamp/timestamp.scss +8 -18
  35. package/components/ToggleGroup/toggle-group.css +2 -2
  36. package/components/ToggleGroup/toggle-group.scss +2 -4
  37. package/components/_index.css +274 -187
  38. package/docs/components/Alert/examples/Alert.md +4 -4
  39. package/docs/components/Card/examples/Card.md +4 -4
  40. package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +2 -2
  41. package/docs/components/DescriptionList/examples/DescriptionList.md +30 -5
  42. package/docs/components/Form/examples/Form.md +2 -2
  43. package/docs/components/Masthead/examples/masthead.md +506 -493
  44. package/docs/components/Nav/examples/Navigation.md +0 -1
  45. package/docs/components/Page/examples/Page.md +98 -89
  46. package/docs/components/Table/examples/Table.md +58 -58
  47. package/docs/components/Wizard/examples/Wizard.md +1 -1
  48. package/docs/demos/AboutModal/examples/AboutModal.md +87 -83
  49. package/docs/demos/Alert/examples/Alert.md +263 -251
  50. package/docs/demos/BackToTop/examples/BackToTop.md +87 -83
  51. package/docs/demos/Banner/examples/Banner.md +177 -173
  52. package/docs/demos/Card/examples/Card.md +12 -12
  53. package/docs/demos/CardView/examples/CardView.md +90 -88
  54. package/docs/demos/Dashboard/examples/Dashboard.md +92 -88
  55. package/docs/demos/DataList/examples/DataList.md +352 -344
  56. package/docs/demos/DescriptionList/examples/DescriptionList.md +262 -252
  57. package/docs/demos/Drawer/examples/Drawer.md +437 -423
  58. package/docs/demos/Form/examples/BasicForms.md +11 -11
  59. package/docs/demos/JumpLinks/examples/JumpLinks.md +524 -500
  60. package/docs/demos/Masthead/examples/Masthead.md +772 -736
  61. package/docs/demos/Modal/examples/Modal.md +522 -498
  62. package/docs/demos/Nav/examples/Nav.md +511 -487
  63. package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +435 -425
  64. package/docs/demos/Page/examples/Page.md +959 -915
  65. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +611 -584
  66. package/docs/demos/Skeleton/examples/Skeleton.md +87 -83
  67. package/docs/demos/Table/examples/Table.md +1326 -1294
  68. package/docs/demos/Tabs/examples/Tabs.md +526 -504
  69. package/docs/demos/Toolbar/examples/Toolbar.md +174 -166
  70. package/docs/demos/Wizard/examples/Wizard.md +790 -767
  71. package/package.json +1 -1
  72. package/patternfly-base-no-globals.css +2 -6
  73. package/patternfly-base.css +5 -9
  74. package/patternfly-no-globals.css +276 -193
  75. package/patternfly.css +279 -196
  76. package/patternfly.min.css +1 -1
  77. package/patternfly.min.css.map +1 -1
@@ -91,12 +91,12 @@
91
91
 
92
92
  :where(a) {
93
93
  color: var(--pf-t--global--text--color--link--default);
94
- text-decoration: var(--pf-t--global--link--text-decoration);
94
+ text-decoration: var(--pf-t--global--text-decoration--link--line--default);
95
95
  }
96
96
 
97
- :where(a:hover) {
97
+ :where(a:hover, a:focus) {
98
98
  color: var(--pf-t--global--text--color--link--hover);
99
- text-decoration: var(--pf-t--global--link--text-decoration--hover);
99
+ text-decoration: var(--pf-t--global--text-decoration--link--line--hover);
100
100
  }
101
101
 
102
102
  :where(
@@ -365,8 +365,8 @@
365
365
  --pf-t--global--text-decoration--help-text--line--hover: var(--pf-t--global--text-decoration--line--200);
366
366
  --pf-t--global--text-decoration--help-text--style--default: var(--pf-t--global--text-decoration--style--200);
367
367
  --pf-t--global--text-decoration--help-text--style--hover: var(--pf-t--global--text-decoration--style--200);
368
- --pf-t--global--text-decoration--link--line--default: var(--pf-t--global--text-decoration--style--200);
369
- --pf-t--global--text-decoration--link--line--hover: var(--pf-t--global--text-decoration--style--200);
368
+ --pf-t--global--text-decoration--link--line--default: var(--pf-t--global--text-decoration--line--200);
369
+ --pf-t--global--text-decoration--link--line--hover: var(--pf-t--global--text-decoration--line--200);
370
370
  --pf-t--global--text-decoration--link--style--default: var(--pf-t--global--text-decoration--style--100);
371
371
  --pf-t--global--text-decoration--link--style--hover: var(--pf-t--global--text-decoration--style--100);
372
372
  --pf-t--global--z-index--2xl: var(--pf-t--global--z-index--600);
@@ -737,10 +737,6 @@
737
737
  --pf-t--global--font--weight--body--bold--legacy: 700;
738
738
  --pf-t--global--font--weight--heading--legacy: 400;
739
739
  --pf-t--global--font--weight--heading--bold--legacy: 700;
740
- --pf-t--global--text-decoration--100: none;
741
- --pf-t--global--text-decoration--200: underline;
742
- --pf-t--global--link--text-decoration: var(--pf-t--global--text-decoration--100);
743
- --pf-t--global--link--text-decoration--hover: var(--pf-t--global--text-decoration--200);
744
740
  --pf-t--global--box-shadow--sm:
745
741
  var(--pf-t--global--box-shadow--X--sm--default)
746
742
  var(--pf-t--global--box-shadow--Y--sm--default)
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Tue, 16 Jul 2024 23:44:44 GMT
3
+ // Generated on Thu, 18 Jul 2024 22:27:54 GMT
4
4
 
5
5
  @mixin pf-v6-tokens {
6
6
  --pf-t--chart--global--BorderWidth--lg: 8;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Tue, 16 Jul 2024 23:44:44 GMT
3
+ // Generated on Thu, 18 Jul 2024 22:27:54 GMT
4
4
 
5
5
  @mixin pf-v6-tokens {
6
6
  --pf-t--chart--global--BorderWidth--lg: 8;
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Tue, 16 Jul 2024 23:44:44 GMT
3
+ // Generated on Thu, 18 Jul 2024 22:27:54 GMT
4
4
 
5
5
  @mixin pf-v6-tokens {
6
6
  --pf-t--global--background--color--action--plain--default: rgba(0, 0, 0, 0.0000);
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Tue, 16 Jul 2024 23:44:44 GMT
3
+ // Generated on Thu, 18 Jul 2024 22:27:54 GMT
4
4
 
5
5
  @mixin pf-v6-tokens {
6
6
  --pf-t--global--background--color--500: rgba(21, 21, 21, 0.2000);
@@ -300,8 +300,8 @@
300
300
  --pf-t--global--text-decoration--help-text--line--hover: var(--pf-t--global--text-decoration--line--200);
301
301
  --pf-t--global--text-decoration--help-text--style--default: var(--pf-t--global--text-decoration--style--200);
302
302
  --pf-t--global--text-decoration--help-text--style--hover: var(--pf-t--global--text-decoration--style--200);
303
- --pf-t--global--text-decoration--link--line--default: var(--pf-t--global--text-decoration--style--200);
304
- --pf-t--global--text-decoration--link--line--hover: var(--pf-t--global--text-decoration--style--200);
303
+ --pf-t--global--text-decoration--link--line--default: var(--pf-t--global--text-decoration--line--200);
304
+ --pf-t--global--text-decoration--link--line--hover: var(--pf-t--global--text-decoration--line--200);
305
305
  --pf-t--global--text-decoration--link--style--default: var(--pf-t--global--text-decoration--style--100);
306
306
  --pf-t--global--text-decoration--link--style--hover: var(--pf-t--global--text-decoration--style--100);
307
307
  --pf-t--global--z-index--2xl: var(--pf-t--global--z-index--600);
@@ -19,12 +19,6 @@
19
19
  --pf-t--global--font--weight--heading--bold--legacy: 700;
20
20
 
21
21
  // Other missing ones
22
- // text-decoration
23
- --pf-t--global--text-decoration--100: none;
24
- --pf-t--global--text-decoration--200: underline;
25
- --pf-t--global--link--text-decoration: var(--pf-t--global--text-decoration--100);
26
- --pf-t--global--link--text-decoration--hover: var(--pf-t--global--text-decoration--200);
27
-
28
22
  // sm box-shadow
29
23
  --pf-t--global--box-shadow--sm:
30
24
  var(--pf-t--global--box-shadow--X--sm--default)
@@ -1,6 +1,6 @@
1
1
 
2
2
  // Do not edit directly
3
- // Generated on Tue, 16 Jul 2024 23:44:44 GMT
3
+ // Generated on Thu, 18 Jul 2024 22:27:54 GMT
4
4
 
5
5
  @mixin pf-v6-tokens {
6
6
  --pf-t--color--black: #000000;
@@ -8,9 +8,11 @@
8
8
  --pf-v6-c-breadcrumb__link--PaddingInlineStart: var(--pf-t--global--spacer--sm);
9
9
  --pf-v6-c-breadcrumb__link--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
10
10
  --pf-v6-c-breadcrumb__link--Color: var(--pf-t--global--text--color--link--default);
11
- --pf-v6-c-breadcrumb__link--TextDecoration: var(--pf-t--global--link--text-decoration);
11
+ --pf-v6-c-breadcrumb__link--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--default);
12
+ --pf-v6-c-breadcrumb__link--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--default);
12
13
  --pf-v6-c-breadcrumb__link--hover--Color: var(--pf-t--global--text--color--link--hover);
13
- --pf-v6-c-breadcrumb__link--hover--TextDecoration: var(--pf-t--global--link--text-decoration--hover);
14
+ --pf-v6-c-breadcrumb__link--hover--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--hover);
15
+ --pf-v6-c-breadcrumb__link--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--hover);
14
16
  --pf-v6-c-breadcrumb__link--m-current--Color: var(--pf-t--global--text--color--regular);
15
17
  --pf-v6-c-breadcrumb__link--BackgroundColor: transparent;
16
18
  --pf-v6-c-breadcrumb__heading--FontSize: var( --pf-t--global--font--size--body--sm);
@@ -63,18 +65,19 @@
63
65
  font-weight: var(--pf-v6-c-breadcrumb__link--FontWeight);
64
66
  line-height: inherit;
65
67
  color: var(--pf-v6-c-breadcrumb__link--Color);
66
- text-decoration: var(--pf-v6-c-breadcrumb__link--TextDecoration);
68
+ text-decoration: var(--pf-v6-c-breadcrumb__link--TextDecorationLine) var(--pf-v6-c-breadcrumb__link--TextDecorationStyle);
67
69
  word-break: break-word;
68
70
  background-color: var(--pf-v6-c-breadcrumb__link--BackgroundColor);
69
71
  }
70
- .pf-v6-c-breadcrumb__link:hover {
72
+ .pf-v6-c-breadcrumb__link:is(:hover, :focus) {
71
73
  --pf-v6-c-breadcrumb__link--Color: var(--pf-v6-c-breadcrumb__link--hover--Color);
72
- --pf-v6-c-breadcrumb__link--TextDecoration: var(--pf-v6-c-breadcrumb__link--hover--TextDecoration);
74
+ --pf-v6-c-breadcrumb__link--TextDecorationLine: var(--pf-v6-c-breadcrumb__link--hover--TextDecorationLine);
75
+ --pf-v6-c-breadcrumb__link--TextDecorationStyle: var(--pf-v6-c-breadcrumb__link--hover--TextDecorationStyle);
73
76
  }
74
77
  .pf-v6-c-breadcrumb__link.pf-m-current {
75
78
  cursor: default;
76
79
  }
77
- .pf-v6-c-breadcrumb__link.pf-m-current, .pf-v6-c-breadcrumb__link.pf-m-current:hover {
80
+ .pf-v6-c-breadcrumb__link.pf-m-current, .pf-v6-c-breadcrumb__link.pf-m-current:is(:hover, :focus) {
78
81
  color: var(--pf-v6-c-breadcrumb__link--m-current--Color);
79
82
  text-decoration: none;
80
83
  }
@@ -15,9 +15,11 @@
15
15
  --#{$breadcrumb}__link--PaddingInlineStart: var(--pf-t--global--spacer--sm); // use a mutable value for alignment control
16
16
  --#{$breadcrumb}__link--PaddingInlineEnd: var(--pf-t--global--spacer--sm); // use a mutable value for alignment control
17
17
  --#{$breadcrumb}__link--Color: var(--pf-t--global--text--color--link--default);
18
- --#{$breadcrumb}__link--TextDecoration: var(--pf-t--global--link--text-decoration);
18
+ --#{$breadcrumb}__link--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--default);
19
+ --#{$breadcrumb}__link--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--default);
19
20
  --#{$breadcrumb}__link--hover--Color: var(--pf-t--global--text--color--link--hover);
20
- --#{$breadcrumb}__link--hover--TextDecoration: var(--pf-t--global--link--text-decoration--hover);
21
+ --#{$breadcrumb}__link--hover--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--hover);
22
+ --#{$breadcrumb}__link--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--hover);
21
23
  --#{$breadcrumb}__link--m-current--Color: var(--pf-t--global--text--color--regular);
22
24
  --#{$breadcrumb}__link--BackgroundColor: transparent;
23
25
 
@@ -79,13 +81,14 @@
79
81
  font-weight: var(--#{$breadcrumb}__link--FontWeight);
80
82
  line-height: inherit;
81
83
  color: var(--#{$breadcrumb}__link--Color);
82
- text-decoration: var(--#{$breadcrumb}__link--TextDecoration);
84
+ text-decoration: var(--#{$breadcrumb}__link--TextDecorationLine) var(--#{$breadcrumb}__link--TextDecorationStyle);
83
85
  word-break: break-word;
84
86
  background-color: var(--#{$breadcrumb}__link--BackgroundColor);
85
87
 
86
- &:hover {
88
+ &:is(:hover, :focus) {
87
89
  --#{$breadcrumb}__link--Color: var(--#{$breadcrumb}__link--hover--Color);
88
- --#{$breadcrumb}__link--TextDecoration: var(--#{$breadcrumb}__link--hover--TextDecoration);
90
+ --#{$breadcrumb}__link--TextDecorationLine: var(--#{$breadcrumb}__link--hover--TextDecorationLine);
91
+ --#{$breadcrumb}__link--TextDecorationStyle: var(--#{$breadcrumb}__link--hover--TextDecorationStyle);
89
92
  }
90
93
 
91
94
 
@@ -94,7 +97,7 @@
94
97
  cursor: default;
95
98
 
96
99
  &,
97
- &:hover {
100
+ &:is(:hover, :focus) {
98
101
  color: var(--#{$breadcrumb}__link--m-current--Color);
99
102
  text-decoration: none;
100
103
  }
@@ -15,14 +15,16 @@
15
15
  --pf-v6-c-button--BorderColor: transparent;
16
16
  --pf-v6-c-button--BorderWidth: var(--pf-t--global--border--width--action--default);
17
17
  --pf-v6-c-button--BorderRadius: var(--pf-t--global--border--radius--pill);
18
- --pf-v6-c-button--TextDecoration: none;
18
+ --pf-v6-c-button--TextDecorationLine: none;
19
+ --pf-v6-c-button--TextDecorationStyle: none;
19
20
  --pf-v6-c-button--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
20
21
  --pf-v6-c-button--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
21
22
  --pf-v6-c-button--TransitionProperty: color, background-color, border-width, border-color, padding;
22
23
  --pf-v6-c-button--hover--BackgroundColor: transparent;
23
24
  --pf-v6-c-button--hover--BorderColor: transparent;
24
25
  --pf-v6-c-button--hover--BorderWidth: var(--pf-t--global--border--width--action--hover);
25
- --pf-v6-c-button--hover--TextDecoration: none;
26
+ --pf-v6-c-button--hover--TextDecorationLine: none;
27
+ --pf-v6-c-button--hover--TextDecorationStyle: none;
26
28
  --pf-v6-c-button--m-clicked--BackgroundColor: transparent;
27
29
  --pf-v6-c-button--m-clicked--BorderColor: transparent;
28
30
  --pf-v6-c-button--m-clicked--BorderWidth: var(--pf-t--global--border--width--action--clicked);
@@ -92,7 +94,10 @@
92
94
  --pf-v6-c-button--m-link--m-inline--PaddingInlineEnd: 0;
93
95
  --pf-v6-c-button--m-link--m-inline--PaddingBlockEnd: 0;
94
96
  --pf-v6-c-button--m-link--m-inline--PaddingInlineStart: 0;
95
- --pf-v6-c-button--m-link--m-inline--hover--TextDecoration: var(--pf-t--global--link--text-decoration--hover);
97
+ --pf-v6-c-button--m-link--m-inline--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--default);
98
+ --pf-v6-c-button--m-link--m-inline--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--default);
99
+ --pf-v6-c-button--m-link--m-inline--hover--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--hover);
100
+ --pf-v6-c-button--m-link--m-inline--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--hover);
96
101
  --pf-v6-c-button--m-link--m-inline__progress--InsetInlineStart: var(--pf-t--global--spacer--xs);
97
102
  --pf-v6-c-button--m-link--m-inline--m-in-progress--PaddingInlineStart: calc(var(--pf-v6-c-button--m-link--m-inline__progress--InsetInlineStart) + 1rem + var(--pf-t--global--spacer--sm));
98
103
  --pf-v6-c-button--m-link--m-inline--disabled--Color: var(--pf-t--global--text--color--disabled);
@@ -247,7 +252,7 @@
247
252
  line-height: var(--pf-v6-c-button--LineHeight, inherit);
248
253
  color: var(--pf-v6-c-button--Color);
249
254
  text-align: center;
250
- text-decoration: var(--pf-v6-c-button--TextDecoration);
255
+ text-decoration: var(--pf-v6-c-button--TextDecorationLine) var(--pf-v6-c-button--TextDecorationStyle);
251
256
  white-space: nowrap;
252
257
  cursor: pointer;
253
258
  user-select: none;
@@ -347,7 +352,10 @@
347
352
  --pf-v6-c-button--PaddingInlineStart: var(--pf-v6-c-button--m-link--m-inline--PaddingInlineStart);
348
353
  --pf-v6-c-button--BackgroundColor: transparent;
349
354
  --pf-v6-c-button__progress--InsetInlineStart: var(--pf-v6-c-button--m-link--m-inline__progress--InsetInlineStart);
350
- --pf-v6-c-button--hover--TextDecoration: var(--pf-v6-c-button--m-link--m-inline--hover--TextDecoration);
355
+ --pf-v6-c-button--TextDecorationLine: var(--pf-v6-c-button--m-link--m-inline--TextDecorationLine);
356
+ --pf-v6-c-button--TextDecorationStyle: var(--pf-v6-c-button--m-link--m-inline--TextDecorationStyle);
357
+ --pf-v6-c-button--hover--TextDecorationLine: var(--pf-v6-c-button--m-link--m-inline--hover--TextDecorationLine);
358
+ --pf-v6-c-button--hover--TextDecorationStyle: var(--pf-v6-c-button--m-link--m-inline--hover--TextDecorationStyle);
351
359
  --pf-v6-c-button--hover--BackgroundColor: transparent;
352
360
  --pf-v6-c-button--m-clicked--BackgroundColor: transparent;
353
361
  --pf-v6-c-button--disabled--BackgroundColor: transparent;
@@ -509,8 +517,8 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
509
517
  --pf-v6-c-button--BackgroundColor: var(--pf-v6-c-button--hover--BackgroundColor);
510
518
  --pf-v6-c-button--BorderColor: var(--pf-v6-c-button--hover--BorderColor);
511
519
  --pf-v6-c-button--BorderWidth: var(--pf-v6-c-button--hover--BorderWidth);
512
- --pf-v6-c-button--TextDecoration: var(--pf-v6-c-button--hover--TextDecoration);
513
520
  --pf-v6-c-button__icon--Color: var(--pf-v6-c-button--hover__icon--Color);
521
+ text-decoration: var(--pf-v6-c-button--hover--TextDecorationLine) var(--pf-v6-c-button--hover--TextDecorationStyle);
514
522
  }
515
523
  .pf-v6-c-button.pf-m-clicked {
516
524
  --pf-v6-c-button--Color: var(--pf-v6-c-button--m-clicked--Color);
@@ -533,7 +541,8 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
533
541
  color: var(--pf-v6-c-button--disabled__icon--Color);
534
542
  }
535
543
  .pf-v6-c-button.pf-m-aria-disabled {
536
- --pf-v6-c-button--m-link--m-inline--hover--TextDecoration: none;
544
+ --pf-v6-c-button--m-link--m-inline--hover--TextDecorationLine: var(--pf-v6-c-button--TextDecorationLine);
545
+ --pf-v6-c-button--m-link--m-inline--hover--TextDecorationStyle: var(--pf-v6-c-button--TextDecorationStyle);
537
546
  cursor: default;
538
547
  }
539
548
  .pf-v6-c-button.pf-m-progress {
@@ -17,7 +17,8 @@
17
17
  --#{$button}--BorderColor: transparent;
18
18
  --#{$button}--BorderWidth: var(--pf-t--global--border--width--action--default);
19
19
  --#{$button}--BorderRadius: var(--pf-t--global--border--radius--pill);
20
- --#{$button}--TextDecoration: none;
20
+ --#{$button}--TextDecorationLine: none;
21
+ --#{$button}--TextDecorationStyle: none;
21
22
  --#{$button}--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
22
23
  --#{$button}--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
23
24
  --#{$button}--TransitionProperty: color, background-color, border-width, border-color, padding;
@@ -26,7 +27,8 @@
26
27
  --#{$button}--hover--BackgroundColor: transparent;
27
28
  --#{$button}--hover--BorderColor: transparent;
28
29
  --#{$button}--hover--BorderWidth: var(--pf-t--global--border--width--action--hover);
29
- --#{$button}--hover--TextDecoration: none;
30
+ --#{$button}--hover--TextDecorationLine: none;
31
+ --#{$button}--hover--TextDecorationStyle: none;
30
32
 
31
33
  // Clicked
32
34
  --#{$button}--m-clicked--BackgroundColor: transparent;
@@ -110,7 +112,10 @@
110
112
  --#{$button}--m-link--m-inline--PaddingInlineEnd: 0;
111
113
  --#{$button}--m-link--m-inline--PaddingBlockEnd: 0;
112
114
  --#{$button}--m-link--m-inline--PaddingInlineStart: 0;
113
- --#{$button}--m-link--m-inline--hover--TextDecoration: var(--pf-t--global--link--text-decoration--hover);
115
+ --#{$button}--m-link--m-inline--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--default);
116
+ --#{$button}--m-link--m-inline--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--default);
117
+ --#{$button}--m-link--m-inline--hover--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--hover);
118
+ --#{$button}--m-link--m-inline--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--hover);
114
119
  --#{$button}--m-link--m-inline__progress--InsetInlineStart: var(--pf-t--global--spacer--xs);
115
120
  --#{$button}--m-link--m-inline--m-in-progress--PaddingInlineStart: calc(var(--#{$button}--m-link--m-inline__progress--InsetInlineStart) + 1rem + var(--pf-t--global--spacer--sm));
116
121
  --#{$button}--m-link--m-inline--disabled--Color: var(--pf-t--global--text--color--disabled);
@@ -297,7 +302,7 @@
297
302
  line-height: var(--#{$button}--LineHeight, inherit);
298
303
  color: var(--#{$button}--Color);
299
304
  text-align: center;
300
- text-decoration: var(--#{$button}--TextDecoration);
305
+ text-decoration: var(--#{$button}--TextDecorationLine) var(--#{$button}--TextDecorationStyle);
301
306
  white-space: nowrap;
302
307
  cursor: pointer; // needed for when a button does not use <button> - eg, <span>
303
308
  user-select: none;
@@ -413,7 +418,10 @@
413
418
  --#{$button}--PaddingInlineStart: var(--#{$button}--m-link--m-inline--PaddingInlineStart);
414
419
  --#{$button}--BackgroundColor: transparent;
415
420
  --#{$button}__progress--InsetInlineStart: var(--#{$button}--m-link--m-inline__progress--InsetInlineStart);
416
- --#{$button}--hover--TextDecoration: var(--#{$button}--m-link--m-inline--hover--TextDecoration);
421
+ --#{$button}--TextDecorationLine: var(--#{$button}--m-link--m-inline--TextDecorationLine);
422
+ --#{$button}--TextDecorationStyle: var(--#{$button}--m-link--m-inline--TextDecorationStyle);
423
+ --#{$button}--hover--TextDecorationLine: var(--#{$button}--m-link--m-inline--hover--TextDecorationLine);
424
+ --#{$button}--hover--TextDecorationStyle: var(--#{$button}--m-link--m-inline--hover--TextDecorationStyle);
417
425
  --#{$button}--hover--BackgroundColor: transparent;
418
426
  --#{$button}--m-clicked--BackgroundColor: transparent;
419
427
  --#{$button}--disabled--BackgroundColor: transparent;
@@ -598,8 +606,9 @@
598
606
  --#{$button}--BackgroundColor: var(--#{$button}--hover--BackgroundColor);
599
607
  --#{$button}--BorderColor: var(--#{$button}--hover--BorderColor);
600
608
  --#{$button}--BorderWidth: var(--#{$button}--hover--BorderWidth);
601
- --#{$button}--TextDecoration: var(--#{$button}--hover--TextDecoration);
602
609
  --#{$button}__icon--Color: var(--#{$button}--hover__icon--Color);
610
+
611
+ text-decoration: var(--#{$button}--hover--TextDecorationLine) var(--#{$button}--hover--TextDecorationStyle);
603
612
  }
604
613
 
605
614
  &.pf-m-clicked {
@@ -633,7 +642,8 @@
633
642
  }
634
643
 
635
644
  &.pf-m-aria-disabled {
636
- --#{$button}--m-link--m-inline--hover--TextDecoration: none;
645
+ --#{$button}--m-link--m-inline--hover--TextDecorationLine: var(--#{$button}--TextDecorationLine);
646
+ --#{$button}--m-link--m-inline--hover--TextDecorationStyle: var(--#{$button}--TextDecorationStyle);
637
647
 
638
648
  cursor: default;
639
649
  }
@@ -40,9 +40,11 @@
40
40
  --pf-v6-c-content--small--FontSize: var(--pf-t--global--font--size--body--sm);
41
41
  --pf-v6-c-content--small--Color: var(--pf-t--global--text--color--subtle);
42
42
  --pf-v6-c-content--a--Color: var(--pf-t--global--text--color--link--default);
43
- --pf-v6-c-content--a--TextDecoration: var(--pf-t--global--link--text-decoration);
43
+ --pf-v6-c-content--a--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--default);
44
+ --pf-v6-c-content--a--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--default);
44
45
  --pf-v6-c-content--a--hover--Color: var(--pf-t--global--text--color--link--hover);
45
- --pf-v6-c-content--a--hover--TextDecoration: var(--pf-t--global--link--text-decoration);
46
+ --pf-v6-c-content--a--hover--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--hover);
47
+ --pf-v6-c-content--a--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--hover);
46
48
  --pf-v6-c-content--a--visited--Color: var(--pf-t--global--text--color--link--visited);
47
49
  --pf-v6-c-content--blockquote--PaddingBlockStart: var(--pf-t--global--spacer--md);
48
50
  --pf-v6-c-content--blockquote--PaddingInlineEnd: var(--pf-t--global--spacer--md);
@@ -71,11 +73,12 @@
71
73
  }
72
74
  :is(.pf-v6-c-content--a, .pf-v6-c-content a) {
73
75
  color: var(--pf-v6-c-content--a--Color);
74
- text-decoration: var(--pf-v6-c-content--a--TextDecoration);
76
+ text-decoration: var(--pf-v6-c-content--a--TextDecorationLine) var(--pf-v6-c-content--a--TextDecorationStyle);
75
77
  }
76
- :is(.pf-v6-c-content--a, .pf-v6-c-content a):hover {
78
+ :is(.pf-v6-c-content--a, .pf-v6-c-content a):is(:hover, :focus) {
77
79
  --pf-v6-c-content--a--Color: var(--pf-v6-c-content--a--hover--Color);
78
- --pf-v6-c-content--a--TextDecoration: var(--pf-v6-c-content--a--hover--TextDecoration);
80
+ --pf-v6-c-content--a--TextDecorationLine: var(--pf-v6-c-content--a--hover--TextDecorationLine);
81
+ --pf-v6-c-content--a--TextDecorationStyle: var(--pf-v6-c-content--a--hover--TextDecorationStyle);
79
82
  }
80
83
 
81
84
  :is(.pf-v6-c-content--a.pf-m-visited, .pf-v6-c-content.pf-m-visited a, .pf-v6-c-content a.pf-m-visited):visited {
@@ -63,9 +63,11 @@
63
63
 
64
64
  // Links
65
65
  --#{$content}--a--Color: var(--pf-t--global--text--color--link--default);
66
- --#{$content}--a--TextDecoration: var(--pf-t--global--link--text-decoration);
66
+ --#{$content}--a--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--default);
67
+ --#{$content}--a--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--default);
67
68
  --#{$content}--a--hover--Color: var(--pf-t--global--text--color--link--hover);
68
- --#{$content}--a--hover--TextDecoration: var(--pf-t--global--link--text-decoration);
69
+ --#{$content}--a--hover--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--hover);
70
+ --#{$content}--a--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--hover);
69
71
  --#{$content}--a--visited--Color: var(--pf-t--global--text--color--link--visited);
70
72
 
71
73
  // Blockquote
@@ -103,11 +105,12 @@
103
105
  & a
104
106
  ) {
105
107
  color: var(--#{$content}--a--Color);
106
- text-decoration: var(--#{$content}--a--TextDecoration);
108
+ text-decoration: var(--#{$content}--a--TextDecorationLine) var(--#{$content}--a--TextDecorationStyle);
107
109
 
108
- &:hover {
110
+ &:is(:hover, :focus) {
109
111
  --#{$content}--a--Color: var(--#{$content}--a--hover--Color);
110
- --#{$content}--a--TextDecoration: var(--#{$content}--a--hover--TextDecoration);
112
+ --#{$content}--a--TextDecorationLine: var(--#{$content}--a--hover--TextDecorationLine);
113
+ --#{$content}--a--TextDecorationStyle: var(--#{$content}--a--hover--TextDecorationStyle);
111
114
  }
112
115
  }
113
116
 
@@ -30,11 +30,11 @@
30
30
  --pf-v6-c-description-list--m-3-col--GridTemplateColumns--count: 3;
31
31
  --pf-v6-c-description-list--m-auto-fit--GridTemplateColumns--min: 15.625rem;
32
32
  --pf-v6-c-description-list--m-auto-fit--GridTemplateColumns--minmax--min: var(--pf-v6-c-description-list--m-auto-fit--GridTemplateColumns--min);
33
- --pf-v6-c-description-list__text--m-help-text--TextDecorationColor: currentcolor;
34
- --pf-v6-c-description-list__text--m-help-text--TextDecorationThickness: var(--pf-t--global--border--width--regular);
35
- --pf-v6-c-description-list__text--m-help-text--TextDecorationOffset: 0.25rem;
36
- --pf-v6-c-description-list__text--m-help-text--hover--TextDecorationColor: var(--pf-t--global--border--color--hover);
37
- --pf-v6-c-description-list__text--m-help-text--focus--TextDecorationColor: var(--pf-t--global--border--color--hover);
33
+ --pf-v6-c-description-list__text--m-help-text--TextDecorationLine: var(--pf-t--global--text-decoration--help-text--line--default);
34
+ --pf-v6-c-description-list__text--m-help-text--TextDecorationStyle: var(--pf-t--global--text-decoration--help-text--style--default);
35
+ --pf-v6-c-description-list__text--m-help-text--TextUnderlineOffset: 0.25rem;
36
+ --pf-v6-c-description-list__text--m-help-text--hover--TextDecorationLine: var(--pf-t--global--text-decoration--help-text--line--hover);
37
+ --pf-v6-c-description-list__text--m-help-text--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--help-text--style--hover);
38
38
  --pf-v6-c-description-list--m-display-lg__description--FontSize: var(--pf-t--global--font--size--body--lg);
39
39
  --pf-v6-c-description-list--m-display-2xl__description--FontSize: var(--pf-t--global--font--size--heading--lg);
40
40
  --pf-v6-c-description-list--m-horizontal__term--width-on-sm: inherit;
@@ -196,18 +196,13 @@
196
196
  min-width: 0;
197
197
  }
198
198
  .pf-v6-c-description-list__text.pf-m-help-text {
199
- text-decoration: underline;
200
- text-decoration-thickness: var(--pf-v6-c-description-list__text--m-help-text--TextDecorationThickness);
201
- text-decoration-style: dashed;
202
- text-decoration-color: var(--pf-v6-c-description-list__text--m-help-text--TextDecorationColor);
203
- text-underline-offset: var(--pf-v6-c-description-list__text--m-help-text--TextDecorationOffset);
199
+ text-decoration: var(--pf-v6-c-description-list__text--m-help-text--TextDecorationLine) var(--pf-v6-c-description-list__text--m-help-text--TextDecorationStyle);
200
+ text-underline-offset: var(--pf-v6-c-description-list__text--m-help-text--TextUnderlineOffset);
204
201
  cursor: pointer;
205
202
  }
206
- .pf-v6-c-description-list__text.pf-m-help-text:hover {
207
- --pf-v6-c-description-list__text--m-help-text--TextDecorationColor: var(--pf-v6-c-description-list__text--m-help-text--hover--TextDecorationColor);
208
- }
209
- .pf-v6-c-description-list__text.pf-m-help-text:focus {
210
- --pf-v6-c-description-list__text--m-help-text--TextDecorationColor: var(--pf-v6-c-description-list__text--m-help-text--focus--TextDecorationColor);
203
+ .pf-v6-c-description-list__text.pf-m-help-text:is(:hover, :focus) {
204
+ --pf-v6-c-description-list__text--m-help-text--TextDecorationLine: var(--pf-v6-c-description-list__text--m-help-text--hover--TextDecorationLine);
205
+ --pf-v6-c-description-list__text--m-help-text--TextDecorationStyle: var(--pf-v6-c-description-list__text--m-help-text--hover--TextDecorationStyle);
211
206
  }
212
207
 
213
208
  .pf-v6-c-description-list.pf-m-1-col {
@@ -54,11 +54,11 @@ $pf-v6-c-description-list--breakpoint-map: build-breakpoint-map("base", "sm", "m
54
54
  --#{$description-list}--m-auto-fit--GridTemplateColumns--minmax--min: var(--#{$description-list}--m-auto-fit--GridTemplateColumns--min);
55
55
 
56
56
  // help text
57
- --#{$description-list}__text--m-help-text--TextDecorationColor: currentcolor;
58
- --#{$description-list}__text--m-help-text--TextDecorationThickness: var(--pf-t--global--border--width--regular);
59
- --#{$description-list}__text--m-help-text--TextDecorationOffset: #{pf-size-prem(4px)};
60
- --#{$description-list}__text--m-help-text--hover--TextDecorationColor: var(--pf-t--global--border--color--hover);
61
- --#{$description-list}__text--m-help-text--focus--TextDecorationColor: var(--pf-t--global--border--color--hover);
57
+ --#{$description-list}__text--m-help-text--TextDecorationLine: var(--pf-t--global--text-decoration--help-text--line--default);
58
+ --#{$description-list}__text--m-help-text--TextDecorationStyle: var(--pf-t--global--text-decoration--help-text--style--default);
59
+ --#{$description-list}__text--m-help-text--TextUnderlineOffset: #{pf-size-prem(4px)};
60
+ --#{$description-list}__text--m-help-text--hover--TextDecorationLine: var(--pf-t--global--text-decoration--help-text--line--hover);
61
+ --#{$description-list}__text--m-help-text--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--help-text--style--hover);
62
62
 
63
63
  // Display modifiers
64
64
  --#{$description-list}--m-display-lg__description--FontSize: var(--pf-t--global--font--size--body--lg); // TODO replace with new font tokens when available
@@ -179,19 +179,13 @@ $pf-v6-c-description-list--breakpoint-map: build-breakpoint-map("base", "sm", "m
179
179
  min-width: 0; // this allows overflow-wrap to work
180
180
 
181
181
  &.pf-m-help-text {
182
- text-decoration: underline;
183
- text-decoration-thickness: var(--#{$description-list}__text--m-help-text--TextDecorationThickness);
184
- text-decoration-style: dashed;
185
- text-decoration-color: var(--#{$description-list}__text--m-help-text--TextDecorationColor);
186
- text-underline-offset: var(--#{$description-list}__text--m-help-text--TextDecorationOffset);
182
+ text-decoration: var(--#{$description-list}__text--m-help-text--TextDecorationLine) var(--#{$description-list}__text--m-help-text--TextDecorationStyle);
183
+ text-underline-offset: var(--#{$description-list}__text--m-help-text--TextUnderlineOffset);
187
184
  cursor: pointer;
188
185
 
189
- &:hover {
190
- --#{$description-list}__text--m-help-text--TextDecorationColor: var(--#{$description-list}__text--m-help-text--hover--TextDecorationColor);
191
- }
192
-
193
- &:focus {
194
- --#{$description-list}__text--m-help-text--TextDecorationColor: var(--#{$description-list}__text--m-help-text--focus--TextDecorationColor);
186
+ &:is(:hover, :focus) {
187
+ --#{$description-list}__text--m-help-text--TextDecorationLine: var(--#{$description-list}__text--m-help-text--hover--TextDecorationLine);
188
+ --#{$description-list}__text--m-help-text--TextDecorationStyle: var(--#{$description-list}__text--m-help-text--hover--TextDecorationStyle);
195
189
  }
196
190
  }
197
191
  }
@@ -188,7 +188,7 @@
188
188
  text-decoration: none;
189
189
  outline-offset: var(--pf-v6-c-jump-links__link--OutlineOffset);
190
190
  }
191
- .pf-v6-c-jump-links__link:hover, .pf-v6-c-jump-links__link:focus {
191
+ .pf-v6-c-jump-links__link:is(:hover, :focus) {
192
192
  --pf-v6-c-jump-links__link-text--Color: var(--pf-v6-c-jump-links__link--hover__link-text--Color);
193
193
  }
194
194
  .pf-v6-c-jump-links__link::before {
@@ -162,8 +162,7 @@ $pf-v6-c-jump-links--m-expandable--breakpoint-map: build-breakpoint-map("base",
162
162
  text-decoration: none;
163
163
  outline-offset: var(--#{$jump-links}__link--OutlineOffset);
164
164
 
165
- &:hover,
166
- &:focus {
165
+ &:is(:hover, :focus) {
167
166
  --#{$jump-links}__link-text--Color: var(--#{$jump-links}__link--hover__link-text--Color);
168
167
  }
169
168
 
@@ -159,7 +159,7 @@
159
159
  --pf-v6-c-label--m-compact--PaddingBlockEnd: 0;
160
160
  --pf-v6-c-label--m-compact--PaddingInlineStart: var(--pf-t--global--spacer--sm);
161
161
  --pf-v6-c-label--m-compact--FontSize: var(--pf-t--global--font--size--body--sm);
162
- --pf-v6-c-label--m-compact--m-editable--TextDecorationOffset: 0.0625rem;
162
+ --pf-v6-c-label--m-compact--m-editable--TextUnderlineOffset: 0.0625rem;
163
163
  --pf-v6-c-label__content--MaxWidth: 100%;
164
164
  --pf-v6-c-label__content--Gap: var(--pf-t--global--spacer--xs);
165
165
  --pf-v6-c-label__content--Cursor: initial;
@@ -174,14 +174,14 @@
174
174
  --pf-v6-c-label__actions--c-button--PaddingInlineEnd: var(--pf-t--global--spacer--xs);
175
175
  --pf-v6-c-label__actions--c-button--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
176
176
  --pf-v6-c-label__actions--c-button--PaddingInlineStart: var(--pf-t--global--spacer--xs);
177
- --pf-v6-c-label--m-editable--TextDecoration: underline;
178
- --pf-v6-c-label--m-editable--TextDecorationStyle: dashed;
179
- --pf-v6-c-label--m-editable--TextDecorationThickness: var(--pf-t--global--border--width--regular);
180
- --pf-v6-c-label--m-editable--TextDecorationOffset: 0.25rem;
181
- --pf-v6-c-label--m-editable--TextDecorationColor: currentcolor;
177
+ --pf-v6-c-label--m-editable--TextDecorationLine: var(--pf-t--global--text-decoration--editable-text--line--default);
178
+ --pf-v6-c-label--m-editable--TextDecorationStyle: var(--pf-t--global--text-decoration--editable-text--style--default);
179
+ --pf-v6-c-label--m-editable--hover--TextDecorationLine: var(--pf-t--global--text-decoration--editable-text--line--hover);
180
+ --pf-v6-c-label--m-editable--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--editable-text--style--hover);
181
+ --pf-v6-c-label--m-editable--TextUnderlineOffset: 0.25rem;
182
182
  --pf-v6-c-label--m-editable__content--MaxWidth: 16ch;
183
183
  --pf-v6-c-label--m-editable__content--Cursor: pointer;
184
- --pf-v6-c-label--m-editable--m-editable-active--TextDecoration: none;
184
+ --pf-v6-c-label--m-editable--m-editable-active--TextDecorationLine: none;
185
185
  --pf-v6-c-label--m-editable--m-editable-active--BackgroundColor: transparent;
186
186
  --pf-v6-c-label--m-editable--m-editable-active--Color: var(--pf-t--global--text--color--regular);
187
187
  --pf-v6-c-label--m-editable--m-editable-active__content--Cursor: initial;
@@ -351,7 +351,7 @@
351
351
  --pf-v6-c-label--PaddingBlockEnd: var(--pf-v6-c-label--m-compact--PaddingBlockEnd);
352
352
  --pf-v6-c-label--PaddingInlineStart: var(--pf-v6-c-label--m-compact--PaddingInlineStart);
353
353
  --pf-v6-c-label--FontSize: var(--pf-v6-c-label--m-compact--FontSize);
354
- --pf-v6-c-label--m-editable--TextDecorationOffset: var(--pf-v6-c-label--m-compact--m-editable--TextDecorationOffset);
354
+ --pf-v6-c-label--m-editable--TextUnderlineOffset: var(--pf-v6-c-label--m-compact--m-editable--TextUnderlineOffset);
355
355
  }
356
356
  .pf-v6-c-label.pf-m-filled .pf-v6-c-label__actions .pf-v6-c-button {
357
357
  --pf-v6-c-button__icon--Color: var(--pf-v6-c-label--m-filled__actions--c-button__icon--Color);
@@ -372,15 +372,16 @@
372
372
  --pf-v6-c-label__content--MaxWidth: var(--pf-v6-c-label--m-editable__content--MaxWidth);
373
373
  --pf-v6-c-label__content--Cursor: var(--pf-v6-c-label--m-editable__content--Cursor);
374
374
  }
375
+ .pf-v6-c-label.pf-m-editable .pf-v6-c-label__content:is(:hover, :focus) {
376
+ --pf-v6-c-label--m-editable--TextDecorationLine: var(--pf-v6-c-label--m-editable--hover--TextDecorationLine);
377
+ --pf-v6-c-label--m-editable--TextDecorationStyle: var(--pf-v6-c-label--m-editable--hover--TextDecorationStyle);
378
+ }
375
379
  .pf-v6-c-label.pf-m-editable .pf-v6-c-label__text {
376
- text-decoration: var(--pf-v6-c-label--m-editable--TextDecoration);
377
- text-decoration-thickness: var(--pf-v6-c-label--m-editable--TextDecorationThickness);
378
- text-decoration-style: var(--pf-v6-c-label--m-editable--TextDecorationStyle);
379
- text-decoration-color: var(--pf-v6-c-label--m-editable--TextDecorationColor);
380
- text-underline-offset: var(--pf-v6-c-label--m-editable--TextDecorationOffset);
380
+ text-decoration: var(--pf-v6-c-label--m-editable--TextDecorationLine) var(--pf-v6-c-label--m-editable--TextDecorationStyle);
381
+ text-underline-offset: var(--pf-v6-c-label--m-editable--TextUnderlineOffset);
381
382
  }
382
383
  .pf-v6-c-label.pf-m-editable-active {
383
- --pf-v6-c-label--m-editable--TextDecoration: var(--pf-v6-c-label--m-editable--m-editable-active--TextDecoration);
384
+ --pf-v6-c-label--m-editable--TextDecorationLine: var(--pf-v6-c-label--m-editable--m-editable-active--TextDecorationLine);
384
385
  --pf-v6-c-label--BackgroundColor: var(--pf-v6-c-label--m-editable--m-editable-active--BackgroundColor);
385
386
  --pf-v6-c-label--Color: var(--pf-v6-c-label--m-editable--m-editable-active--Color);
386
387
  --pf-v6-c-label__content--Cursor: var(--pf-v6-c-label--m-editable--m-editable-active__content--Cursor);