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

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 (48) 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/ProgressStepper/progress-stepper.css +8 -7
  22. package/components/ProgressStepper/progress-stepper.scss +8 -8
  23. package/components/SimpleList/simple-list.css +1 -1
  24. package/components/SimpleList/simple-list.scss +1 -2
  25. package/components/Tabs/tabs.css +1 -1
  26. package/components/Tabs/tabs.scss +1 -3
  27. package/components/Timestamp/timestamp.css +8 -17
  28. package/components/Timestamp/timestamp.scss +8 -18
  29. package/components/ToggleGroup/toggle-group.css +2 -2
  30. package/components/ToggleGroup/toggle-group.scss +2 -4
  31. package/components/_index.css +79 -76
  32. package/docs/components/Alert/examples/Alert.md +4 -4
  33. package/docs/components/Card/examples/Card.md +4 -4
  34. package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +2 -2
  35. package/docs/components/DescriptionList/examples/DescriptionList.md +30 -5
  36. package/docs/components/Form/examples/Form.md +2 -2
  37. package/docs/components/Table/examples/Table.md +58 -58
  38. package/docs/demos/Card/examples/Card.md +12 -12
  39. package/docs/demos/Dashboard/examples/Dashboard.md +5 -5
  40. package/docs/demos/Form/examples/BasicForms.md +11 -11
  41. package/docs/demos/Table/examples/Table.md +6 -6
  42. package/package.json +1 -1
  43. package/patternfly-base-no-globals.css +2 -6
  44. package/patternfly-base.css +5 -9
  45. package/patternfly-no-globals.css +81 -82
  46. package/patternfly.css +84 -85
  47. package/patternfly.min.css +1 -1
  48. package/patternfly.min.css.map +1 -1
@@ -1306,9 +1306,11 @@
1306
1306
  --pf-v6-c-breadcrumb__link--PaddingInlineStart: var(--pf-t--global--spacer--sm);
1307
1307
  --pf-v6-c-breadcrumb__link--PaddingInlineEnd: var(--pf-t--global--spacer--sm);
1308
1308
  --pf-v6-c-breadcrumb__link--Color: var(--pf-t--global--text--color--link--default);
1309
- --pf-v6-c-breadcrumb__link--TextDecoration: var(--pf-t--global--link--text-decoration);
1309
+ --pf-v6-c-breadcrumb__link--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--default);
1310
+ --pf-v6-c-breadcrumb__link--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--default);
1310
1311
  --pf-v6-c-breadcrumb__link--hover--Color: var(--pf-t--global--text--color--link--hover);
1311
- --pf-v6-c-breadcrumb__link--hover--TextDecoration: var(--pf-t--global--link--text-decoration--hover);
1312
+ --pf-v6-c-breadcrumb__link--hover--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--hover);
1313
+ --pf-v6-c-breadcrumb__link--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--hover);
1312
1314
  --pf-v6-c-breadcrumb__link--m-current--Color: var(--pf-t--global--text--color--regular);
1313
1315
  --pf-v6-c-breadcrumb__link--BackgroundColor: transparent;
1314
1316
  --pf-v6-c-breadcrumb__heading--FontSize: var( --pf-t--global--font--size--body--sm);
@@ -1361,18 +1363,19 @@
1361
1363
  font-weight: var(--pf-v6-c-breadcrumb__link--FontWeight);
1362
1364
  line-height: inherit;
1363
1365
  color: var(--pf-v6-c-breadcrumb__link--Color);
1364
- text-decoration: var(--pf-v6-c-breadcrumb__link--TextDecoration);
1366
+ text-decoration: var(--pf-v6-c-breadcrumb__link--TextDecorationLine) var(--pf-v6-c-breadcrumb__link--TextDecorationStyle);
1365
1367
  word-break: break-word;
1366
1368
  background-color: var(--pf-v6-c-breadcrumb__link--BackgroundColor);
1367
1369
  }
1368
- .pf-v6-c-breadcrumb__link:hover {
1370
+ .pf-v6-c-breadcrumb__link:is(:hover, :focus) {
1369
1371
  --pf-v6-c-breadcrumb__link--Color: var(--pf-v6-c-breadcrumb__link--hover--Color);
1370
- --pf-v6-c-breadcrumb__link--TextDecoration: var(--pf-v6-c-breadcrumb__link--hover--TextDecoration);
1372
+ --pf-v6-c-breadcrumb__link--TextDecorationLine: var(--pf-v6-c-breadcrumb__link--hover--TextDecorationLine);
1373
+ --pf-v6-c-breadcrumb__link--TextDecorationStyle: var(--pf-v6-c-breadcrumb__link--hover--TextDecorationStyle);
1371
1374
  }
1372
1375
  .pf-v6-c-breadcrumb__link.pf-m-current {
1373
1376
  cursor: default;
1374
1377
  }
1375
- .pf-v6-c-breadcrumb__link.pf-m-current, .pf-v6-c-breadcrumb__link.pf-m-current:hover {
1378
+ .pf-v6-c-breadcrumb__link.pf-m-current, .pf-v6-c-breadcrumb__link.pf-m-current:is(:hover, :focus) {
1376
1379
  color: var(--pf-v6-c-breadcrumb__link--m-current--Color);
1377
1380
  text-decoration: none;
1378
1381
  }
@@ -1418,14 +1421,16 @@ button.pf-v6-c-breadcrumb__link {
1418
1421
  --pf-v6-c-button--BorderColor: transparent;
1419
1422
  --pf-v6-c-button--BorderWidth: var(--pf-t--global--border--width--action--default);
1420
1423
  --pf-v6-c-button--BorderRadius: var(--pf-t--global--border--radius--pill);
1421
- --pf-v6-c-button--TextDecoration: none;
1424
+ --pf-v6-c-button--TextDecorationLine: none;
1425
+ --pf-v6-c-button--TextDecorationStyle: none;
1422
1426
  --pf-v6-c-button--TransitionDuration: var(--pf-t--global--motion--duration--fade--default);
1423
1427
  --pf-v6-c-button--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--default);
1424
1428
  --pf-v6-c-button--TransitionProperty: color, background-color, border-width, border-color, padding;
1425
1429
  --pf-v6-c-button--hover--BackgroundColor: transparent;
1426
1430
  --pf-v6-c-button--hover--BorderColor: transparent;
1427
1431
  --pf-v6-c-button--hover--BorderWidth: var(--pf-t--global--border--width--action--hover);
1428
- --pf-v6-c-button--hover--TextDecoration: none;
1432
+ --pf-v6-c-button--hover--TextDecorationLine: none;
1433
+ --pf-v6-c-button--hover--TextDecorationStyle: none;
1429
1434
  --pf-v6-c-button--m-clicked--BackgroundColor: transparent;
1430
1435
  --pf-v6-c-button--m-clicked--BorderColor: transparent;
1431
1436
  --pf-v6-c-button--m-clicked--BorderWidth: var(--pf-t--global--border--width--action--clicked);
@@ -1495,7 +1500,10 @@ button.pf-v6-c-breadcrumb__link {
1495
1500
  --pf-v6-c-button--m-link--m-inline--PaddingInlineEnd: 0;
1496
1501
  --pf-v6-c-button--m-link--m-inline--PaddingBlockEnd: 0;
1497
1502
  --pf-v6-c-button--m-link--m-inline--PaddingInlineStart: 0;
1498
- --pf-v6-c-button--m-link--m-inline--hover--TextDecoration: var(--pf-t--global--link--text-decoration--hover);
1503
+ --pf-v6-c-button--m-link--m-inline--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--default);
1504
+ --pf-v6-c-button--m-link--m-inline--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--default);
1505
+ --pf-v6-c-button--m-link--m-inline--hover--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--hover);
1506
+ --pf-v6-c-button--m-link--m-inline--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--hover);
1499
1507
  --pf-v6-c-button--m-link--m-inline__progress--InsetInlineStart: var(--pf-t--global--spacer--xs);
1500
1508
  --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));
1501
1509
  --pf-v6-c-button--m-link--m-inline--disabled--Color: var(--pf-t--global--text--color--disabled);
@@ -1650,7 +1658,7 @@ button.pf-v6-c-breadcrumb__link {
1650
1658
  line-height: var(--pf-v6-c-button--LineHeight, inherit);
1651
1659
  color: var(--pf-v6-c-button--Color);
1652
1660
  text-align: center;
1653
- text-decoration: var(--pf-v6-c-button--TextDecoration);
1661
+ text-decoration: var(--pf-v6-c-button--TextDecorationLine) var(--pf-v6-c-button--TextDecorationStyle);
1654
1662
  white-space: nowrap;
1655
1663
  cursor: pointer;
1656
1664
  user-select: none;
@@ -1750,7 +1758,10 @@ button.pf-v6-c-breadcrumb__link {
1750
1758
  --pf-v6-c-button--PaddingInlineStart: var(--pf-v6-c-button--m-link--m-inline--PaddingInlineStart);
1751
1759
  --pf-v6-c-button--BackgroundColor: transparent;
1752
1760
  --pf-v6-c-button__progress--InsetInlineStart: var(--pf-v6-c-button--m-link--m-inline__progress--InsetInlineStart);
1753
- --pf-v6-c-button--hover--TextDecoration: var(--pf-v6-c-button--m-link--m-inline--hover--TextDecoration);
1761
+ --pf-v6-c-button--TextDecorationLine: var(--pf-v6-c-button--m-link--m-inline--TextDecorationLine);
1762
+ --pf-v6-c-button--TextDecorationStyle: var(--pf-v6-c-button--m-link--m-inline--TextDecorationStyle);
1763
+ --pf-v6-c-button--hover--TextDecorationLine: var(--pf-v6-c-button--m-link--m-inline--hover--TextDecorationLine);
1764
+ --pf-v6-c-button--hover--TextDecorationStyle: var(--pf-v6-c-button--m-link--m-inline--hover--TextDecorationStyle);
1754
1765
  --pf-v6-c-button--hover--BackgroundColor: transparent;
1755
1766
  --pf-v6-c-button--m-clicked--BackgroundColor: transparent;
1756
1767
  --pf-v6-c-button--disabled--BackgroundColor: transparent;
@@ -1912,8 +1923,8 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
1912
1923
  --pf-v6-c-button--BackgroundColor: var(--pf-v6-c-button--hover--BackgroundColor);
1913
1924
  --pf-v6-c-button--BorderColor: var(--pf-v6-c-button--hover--BorderColor);
1914
1925
  --pf-v6-c-button--BorderWidth: var(--pf-v6-c-button--hover--BorderWidth);
1915
- --pf-v6-c-button--TextDecoration: var(--pf-v6-c-button--hover--TextDecoration);
1916
1926
  --pf-v6-c-button__icon--Color: var(--pf-v6-c-button--hover__icon--Color);
1927
+ text-decoration: var(--pf-v6-c-button--hover--TextDecorationLine) var(--pf-v6-c-button--hover--TextDecorationStyle);
1917
1928
  }
1918
1929
  .pf-v6-c-button.pf-m-clicked {
1919
1930
  --pf-v6-c-button--Color: var(--pf-v6-c-button--m-clicked--Color);
@@ -1936,7 +1947,8 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
1936
1947
  color: var(--pf-v6-c-button--disabled__icon--Color);
1937
1948
  }
1938
1949
  .pf-v6-c-button.pf-m-aria-disabled {
1939
- --pf-v6-c-button--m-link--m-inline--hover--TextDecoration: none;
1950
+ --pf-v6-c-button--m-link--m-inline--hover--TextDecorationLine: var(--pf-v6-c-button--TextDecorationLine);
1951
+ --pf-v6-c-button--m-link--m-inline--hover--TextDecorationStyle: var(--pf-v6-c-button--TextDecorationStyle);
1940
1952
  cursor: default;
1941
1953
  }
1942
1954
  .pf-v6-c-button.pf-m-progress {
@@ -2969,9 +2981,11 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
2969
2981
  --pf-v6-c-content--small--FontSize: var(--pf-t--global--font--size--body--sm);
2970
2982
  --pf-v6-c-content--small--Color: var(--pf-t--global--text--color--subtle);
2971
2983
  --pf-v6-c-content--a--Color: var(--pf-t--global--text--color--link--default);
2972
- --pf-v6-c-content--a--TextDecoration: var(--pf-t--global--link--text-decoration);
2984
+ --pf-v6-c-content--a--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--default);
2985
+ --pf-v6-c-content--a--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--default);
2973
2986
  --pf-v6-c-content--a--hover--Color: var(--pf-t--global--text--color--link--hover);
2974
- --pf-v6-c-content--a--hover--TextDecoration: var(--pf-t--global--link--text-decoration);
2987
+ --pf-v6-c-content--a--hover--TextDecorationLine: var(--pf-t--global--text-decoration--link--line--hover);
2988
+ --pf-v6-c-content--a--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--link--style--hover);
2975
2989
  --pf-v6-c-content--a--visited--Color: var(--pf-t--global--text--color--link--visited);
2976
2990
  --pf-v6-c-content--blockquote--PaddingBlockStart: var(--pf-t--global--spacer--md);
2977
2991
  --pf-v6-c-content--blockquote--PaddingInlineEnd: var(--pf-t--global--spacer--md);
@@ -3000,11 +3014,12 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
3000
3014
  }
3001
3015
  :is(.pf-v6-c-content--a, .pf-v6-c-content a) {
3002
3016
  color: var(--pf-v6-c-content--a--Color);
3003
- text-decoration: var(--pf-v6-c-content--a--TextDecoration);
3017
+ text-decoration: var(--pf-v6-c-content--a--TextDecorationLine) var(--pf-v6-c-content--a--TextDecorationStyle);
3004
3018
  }
3005
- :is(.pf-v6-c-content--a, .pf-v6-c-content a):hover {
3019
+ :is(.pf-v6-c-content--a, .pf-v6-c-content a):is(:hover, :focus) {
3006
3020
  --pf-v6-c-content--a--Color: var(--pf-v6-c-content--a--hover--Color);
3007
- --pf-v6-c-content--a--TextDecoration: var(--pf-v6-c-content--a--hover--TextDecoration);
3021
+ --pf-v6-c-content--a--TextDecorationLine: var(--pf-v6-c-content--a--hover--TextDecorationLine);
3022
+ --pf-v6-c-content--a--TextDecorationStyle: var(--pf-v6-c-content--a--hover--TextDecorationStyle);
3008
3023
  }
3009
3024
 
3010
3025
  :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 {
@@ -4048,11 +4063,11 @@ ul) {
4048
4063
  --pf-v6-c-description-list--m-3-col--GridTemplateColumns--count: 3;
4049
4064
  --pf-v6-c-description-list--m-auto-fit--GridTemplateColumns--min: 15.625rem;
4050
4065
  --pf-v6-c-description-list--m-auto-fit--GridTemplateColumns--minmax--min: var(--pf-v6-c-description-list--m-auto-fit--GridTemplateColumns--min);
4051
- --pf-v6-c-description-list__text--m-help-text--TextDecorationColor: currentcolor;
4052
- --pf-v6-c-description-list__text--m-help-text--TextDecorationThickness: var(--pf-t--global--border--width--regular);
4053
- --pf-v6-c-description-list__text--m-help-text--TextDecorationOffset: 0.25rem;
4054
- --pf-v6-c-description-list__text--m-help-text--hover--TextDecorationColor: var(--pf-t--global--border--color--hover);
4055
- --pf-v6-c-description-list__text--m-help-text--focus--TextDecorationColor: var(--pf-t--global--border--color--hover);
4066
+ --pf-v6-c-description-list__text--m-help-text--TextDecorationLine: var(--pf-t--global--text-decoration--help-text--line--default);
4067
+ --pf-v6-c-description-list__text--m-help-text--TextDecorationStyle: var(--pf-t--global--text-decoration--help-text--style--default);
4068
+ --pf-v6-c-description-list__text--m-help-text--TextUnderlineOffset: 0.25rem;
4069
+ --pf-v6-c-description-list__text--m-help-text--hover--TextDecorationLine: var(--pf-t--global--text-decoration--help-text--line--hover);
4070
+ --pf-v6-c-description-list__text--m-help-text--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--help-text--style--hover);
4056
4071
  --pf-v6-c-description-list--m-display-lg__description--FontSize: var(--pf-t--global--font--size--body--lg);
4057
4072
  --pf-v6-c-description-list--m-display-2xl__description--FontSize: var(--pf-t--global--font--size--heading--lg);
4058
4073
  --pf-v6-c-description-list--m-horizontal__term--width-on-sm: inherit;
@@ -4214,18 +4229,13 @@ ul) {
4214
4229
  min-width: 0;
4215
4230
  }
4216
4231
  .pf-v6-c-description-list__text.pf-m-help-text {
4217
- text-decoration: underline;
4218
- text-decoration-thickness: var(--pf-v6-c-description-list__text--m-help-text--TextDecorationThickness);
4219
- text-decoration-style: dashed;
4220
- text-decoration-color: var(--pf-v6-c-description-list__text--m-help-text--TextDecorationColor);
4221
- text-underline-offset: var(--pf-v6-c-description-list__text--m-help-text--TextDecorationOffset);
4232
+ text-decoration: var(--pf-v6-c-description-list__text--m-help-text--TextDecorationLine) var(--pf-v6-c-description-list__text--m-help-text--TextDecorationStyle);
4233
+ text-underline-offset: var(--pf-v6-c-description-list__text--m-help-text--TextUnderlineOffset);
4222
4234
  cursor: pointer;
4223
4235
  }
4224
- .pf-v6-c-description-list__text.pf-m-help-text:hover {
4225
- --pf-v6-c-description-list__text--m-help-text--TextDecorationColor: var(--pf-v6-c-description-list__text--m-help-text--hover--TextDecorationColor);
4226
- }
4227
- .pf-v6-c-description-list__text.pf-m-help-text:focus {
4228
- --pf-v6-c-description-list__text--m-help-text--TextDecorationColor: var(--pf-v6-c-description-list__text--m-help-text--focus--TextDecorationColor);
4236
+ .pf-v6-c-description-list__text.pf-m-help-text:is(:hover, :focus) {
4237
+ --pf-v6-c-description-list__text--m-help-text--TextDecorationLine: var(--pf-v6-c-description-list__text--m-help-text--hover--TextDecorationLine);
4238
+ --pf-v6-c-description-list__text--m-help-text--TextDecorationStyle: var(--pf-v6-c-description-list__text--m-help-text--hover--TextDecorationStyle);
4229
4239
  }
4230
4240
 
4231
4241
  .pf-v6-c-description-list.pf-m-1-col {
@@ -7816,7 +7826,7 @@ label.pf-v6-c-input-group__text {
7816
7826
  text-decoration: none;
7817
7827
  outline-offset: var(--pf-v6-c-jump-links__link--OutlineOffset);
7818
7828
  }
7819
- .pf-v6-c-jump-links__link:hover, .pf-v6-c-jump-links__link:focus {
7829
+ .pf-v6-c-jump-links__link:is(:hover, :focus) {
7820
7830
  --pf-v6-c-jump-links__link-text--Color: var(--pf-v6-c-jump-links__link--hover__link-text--Color);
7821
7831
  }
7822
7832
  .pf-v6-c-jump-links__link::before {
@@ -8032,7 +8042,7 @@ label.pf-v6-c-input-group__text {
8032
8042
  --pf-v6-c-label--m-compact--PaddingBlockEnd: 0;
8033
8043
  --pf-v6-c-label--m-compact--PaddingInlineStart: var(--pf-t--global--spacer--sm);
8034
8044
  --pf-v6-c-label--m-compact--FontSize: var(--pf-t--global--font--size--body--sm);
8035
- --pf-v6-c-label--m-compact--m-editable--TextDecorationOffset: 0.0625rem;
8045
+ --pf-v6-c-label--m-compact--m-editable--TextUnderlineOffset: 0.0625rem;
8036
8046
  --pf-v6-c-label__content--MaxWidth: 100%;
8037
8047
  --pf-v6-c-label__content--Gap: var(--pf-t--global--spacer--xs);
8038
8048
  --pf-v6-c-label__content--Cursor: initial;
@@ -8047,14 +8057,14 @@ label.pf-v6-c-input-group__text {
8047
8057
  --pf-v6-c-label__actions--c-button--PaddingInlineEnd: var(--pf-t--global--spacer--xs);
8048
8058
  --pf-v6-c-label__actions--c-button--PaddingBlockEnd: var(--pf-t--global--spacer--xs);
8049
8059
  --pf-v6-c-label__actions--c-button--PaddingInlineStart: var(--pf-t--global--spacer--xs);
8050
- --pf-v6-c-label--m-editable--TextDecoration: underline;
8051
- --pf-v6-c-label--m-editable--TextDecorationStyle: dashed;
8052
- --pf-v6-c-label--m-editable--TextDecorationThickness: var(--pf-t--global--border--width--regular);
8053
- --pf-v6-c-label--m-editable--TextDecorationOffset: 0.25rem;
8054
- --pf-v6-c-label--m-editable--TextDecorationColor: currentcolor;
8060
+ --pf-v6-c-label--m-editable--TextDecorationLine: var(--pf-t--global--text-decoration--editable-text--line--default);
8061
+ --pf-v6-c-label--m-editable--TextDecorationStyle: var(--pf-t--global--text-decoration--editable-text--style--default);
8062
+ --pf-v6-c-label--m-editable--hover--TextDecorationLine: var(--pf-t--global--text-decoration--editable-text--line--hover);
8063
+ --pf-v6-c-label--m-editable--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--editable-text--style--hover);
8064
+ --pf-v6-c-label--m-editable--TextUnderlineOffset: 0.25rem;
8055
8065
  --pf-v6-c-label--m-editable__content--MaxWidth: 16ch;
8056
8066
  --pf-v6-c-label--m-editable__content--Cursor: pointer;
8057
- --pf-v6-c-label--m-editable--m-editable-active--TextDecoration: none;
8067
+ --pf-v6-c-label--m-editable--m-editable-active--TextDecorationLine: none;
8058
8068
  --pf-v6-c-label--m-editable--m-editable-active--BackgroundColor: transparent;
8059
8069
  --pf-v6-c-label--m-editable--m-editable-active--Color: var(--pf-t--global--text--color--regular);
8060
8070
  --pf-v6-c-label--m-editable--m-editable-active__content--Cursor: initial;
@@ -8224,7 +8234,7 @@ label.pf-v6-c-input-group__text {
8224
8234
  --pf-v6-c-label--PaddingBlockEnd: var(--pf-v6-c-label--m-compact--PaddingBlockEnd);
8225
8235
  --pf-v6-c-label--PaddingInlineStart: var(--pf-v6-c-label--m-compact--PaddingInlineStart);
8226
8236
  --pf-v6-c-label--FontSize: var(--pf-v6-c-label--m-compact--FontSize);
8227
- --pf-v6-c-label--m-editable--TextDecorationOffset: var(--pf-v6-c-label--m-compact--m-editable--TextDecorationOffset);
8237
+ --pf-v6-c-label--m-editable--TextUnderlineOffset: var(--pf-v6-c-label--m-compact--m-editable--TextUnderlineOffset);
8228
8238
  }
8229
8239
  .pf-v6-c-label.pf-m-filled .pf-v6-c-label__actions .pf-v6-c-button {
8230
8240
  --pf-v6-c-button__icon--Color: var(--pf-v6-c-label--m-filled__actions--c-button__icon--Color);
@@ -8245,15 +8255,16 @@ label.pf-v6-c-input-group__text {
8245
8255
  --pf-v6-c-label__content--MaxWidth: var(--pf-v6-c-label--m-editable__content--MaxWidth);
8246
8256
  --pf-v6-c-label__content--Cursor: var(--pf-v6-c-label--m-editable__content--Cursor);
8247
8257
  }
8258
+ .pf-v6-c-label.pf-m-editable .pf-v6-c-label__content:is(:hover, :focus) {
8259
+ --pf-v6-c-label--m-editable--TextDecorationLine: var(--pf-v6-c-label--m-editable--hover--TextDecorationLine);
8260
+ --pf-v6-c-label--m-editable--TextDecorationStyle: var(--pf-v6-c-label--m-editable--hover--TextDecorationStyle);
8261
+ }
8248
8262
  .pf-v6-c-label.pf-m-editable .pf-v6-c-label__text {
8249
- text-decoration: var(--pf-v6-c-label--m-editable--TextDecoration);
8250
- text-decoration-thickness: var(--pf-v6-c-label--m-editable--TextDecorationThickness);
8251
- text-decoration-style: var(--pf-v6-c-label--m-editable--TextDecorationStyle);
8252
- text-decoration-color: var(--pf-v6-c-label--m-editable--TextDecorationColor);
8253
- text-underline-offset: var(--pf-v6-c-label--m-editable--TextDecorationOffset);
8263
+ text-decoration: var(--pf-v6-c-label--m-editable--TextDecorationLine) var(--pf-v6-c-label--m-editable--TextDecorationStyle);
8264
+ text-underline-offset: var(--pf-v6-c-label--m-editable--TextUnderlineOffset);
8254
8265
  }
8255
8266
  .pf-v6-c-label.pf-m-editable-active {
8256
- --pf-v6-c-label--m-editable--TextDecoration: var(--pf-v6-c-label--m-editable--m-editable-active--TextDecoration);
8267
+ --pf-v6-c-label--m-editable--TextDecorationLine: var(--pf-v6-c-label--m-editable--m-editable-active--TextDecorationLine);
8257
8268
  --pf-v6-c-label--BackgroundColor: var(--pf-v6-c-label--m-editable--m-editable-active--BackgroundColor);
8258
8269
  --pf-v6-c-label--Color: var(--pf-v6-c-label--m-editable--m-editable-active--Color);
8259
8270
  --pf-v6-c-label__content--Cursor: var(--pf-v6-c-label--m-editable--m-editable-active__content--Cursor);
@@ -12835,9 +12846,11 @@ ul.pf-v6-c-list {
12835
12846
  --pf-v6-c-progress-stepper__step--m-danger__step-title--Color: var(--pf-t--global--text--color--status--danger--default);
12836
12847
  --pf-v6-c-progress-stepper__step-title--m-help-text--PaddingInlineStart: 0;
12837
12848
  --pf-v6-c-progress-stepper__step-title--m-help-text--PaddingInlineEnd: 0;
12838
- --pf-v6-c-progress-stepper__step-title--m-help-text--TextDecorationColor: currentcolor;
12839
- --pf-v6-c-progress-stepper__step-title--m-help-text--TextDecorationThickness: var(--pf-t--global--link--text-decoration);
12849
+ --pf-v6-c-progress-stepper__step-title--m-help-text--TextDecorationLine: var(--pf-t--global--text-decoration--help-text--line--default);
12850
+ --pf-v6-c-progress-stepper__step-title--m-help-text--TextDecorationStyle: var(--pf-t--global--text-decoration--help-text--style--default);
12840
12851
  --pf-v6-c-progress-stepper__step-title--m-help-text--TextUnderlineOffset: 0.25rem;
12852
+ --pf-v6-c-progress-stepper__step-title--m-help-text--hover--TextDecorationLine: var(--pf-t--global--text-decoration--help-text--line--hover);
12853
+ --pf-v6-c-progress-stepper__step-title--m-help-text--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--help-text--style--hover);
12841
12854
  --pf-v6-c-progress-stepper__step-title--m-help-text--hover--Color: var(--pf-t--global--text--color--brand--hover);
12842
12855
  --pf-v6-c-progress-stepper__step--m-danger__step-title--m-help-text--hover--Color: var(--pf-t--global--text--color--status--danger--hover);
12843
12856
  --pf-v6-c-progress-stepper__step-description--MarginBlockStart: var(--pf-t--global--spacer--xs);
@@ -13063,14 +13076,13 @@ ul.pf-v6-c-list {
13063
13076
  .pf-v6-c-progress-stepper__step-title.pf-m-help-text {
13064
13077
  padding-inline-start: var(--pf-v6-c-progress-stepper__step-title--m-help-text--PaddingInlineStart);
13065
13078
  padding-inline-end: var(--pf-v6-c-progress-stepper__step-title--m-help-text--PaddingInlineEnd);
13066
- text-decoration: underline;
13067
- text-decoration-thickness: var(--pf-v6-c-progress-stepper__step-title--m-help-text--TextDecorationThickness);
13068
- text-decoration-style: dashed;
13069
- text-decoration-color: var(--pf-v6-c-progress-stepper__step-title--m-help-text--TextDecorationColor);
13079
+ text-decoration: var(--pf-v6-c-progress-stepper__step-title--m-help-text--TextDecorationLine) var(--pf-v6-c-progress-stepper__step-title--m-help-text--TextDecorationStyle);
13070
13080
  text-underline-offset: var(--pf-v6-c-progress-stepper__step-title--m-help-text--TextUnderlineOffset);
13071
13081
  cursor: pointer;
13072
13082
  }
13073
- .pf-v6-c-progress-stepper__step-title.pf-m-help-text:hover, .pf-v6-c-progress-stepper__step-title.pf-m-help-text:focus {
13083
+ .pf-v6-c-progress-stepper__step-title.pf-m-help-text:is(:hover, :focus) {
13084
+ --pf-v6-c-progress-stepper__step-title--m-help-text--TextDecorationLine: var(--pf-v6-c-progress-stepper__step-title--m-help-text--hover--TextDecorationLine);
13085
+ --pf-v6-c-progress-stepper__step-title--m-help-text--TextDecorationStyle: var(--pf-v6-c-progress-stepper__step-title--m-help-text--hover--TextDecorationStyle);
13074
13086
  --pf-v6-c-progress-stepper__step-title--Color: var(--pf-v6-c-progress-stepper__step-title--m-help-text--hover--Color);
13075
13087
  }
13076
13088
 
@@ -13827,7 +13839,7 @@ label.pf-v6-c-radio, .pf-v6-c-radio__label,
13827
13839
  --pf-v6-c-simple-list__item-link--hover--Color: var(--pf-v6-c-simple-list__item-link--m-link--m-current--Color);
13828
13840
  --pf-v6-c-simple-list__item-link--m-current--Color: var(--pf-v6-c-simple-list__item-link--m-link--hover--Color);
13829
13841
  }
13830
- .pf-v6-c-simple-list__item-link:hover, .pf-v6-c-simple-list__item-link:focus {
13842
+ .pf-v6-c-simple-list__item-link:is(:hover, :focus) {
13831
13843
  --pf-v6-c-simple-list__item-link--BackgroundColor: var(--pf-v6-c-simple-list__item-link--hover--BackgroundColor);
13832
13844
  --pf-v6-c-simple-list__item-link--Color: var(--pf-v6-c-simple-list__item-link--hover--Color);
13833
13845
  text-decoration: none;
@@ -18374,7 +18386,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
18374
18386
  --pf-v6-c-tabs__link--after--BorderWidth: 0;
18375
18387
  }
18376
18388
 
18377
- .pf-v6-c-tabs__link:disabled, .pf-v6-c-tabs__link.pf-m-disabled, .pf-v6-c-tabs__link.pf-m-aria-disabled {
18389
+ .pf-v6-c-tabs__link:is(:disabled, .pf-m-disabled, .pf-m-aria-disabled) {
18378
18390
  --pf-v6-c-tabs__link--BackgroundColor: var(--pf-v6-c-tabs__link--disabled--BackgroundColor);
18379
18391
  }
18380
18392
  .pf-v6-c-tabs__item.pf-m-action.pf-m-disabled {
@@ -18947,15 +18959,12 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
18947
18959
  --pf-v6-c-timestamp--FontSize: var(--pf-t--global--font--size--body--sm);
18948
18960
  --pf-v6-c-timestamp--Color: var(--pf-t--global--text--color--subtle);
18949
18961
  --pf-v6-c-timestamp--OutlineOffset: 0.1875rem;
18950
- --pf-v6-c-timestamp--m-help-text--TextDecorationLine: underline;
18951
- --pf-v6-c-timestamp--m-help-text--TextDecorationStyle: dashed;
18952
- --pf-v6-c-timestamp--m-help-text--TextDecorationThickness: var(--pf-t--global--border--width--regular);
18962
+ --pf-v6-c-timestamp--m-help-text--TextDecorationLine: var(--pf-t--global--text-decoration--help-text--line--default);
18963
+ --pf-v6-c-timestamp--m-help-text--TextDecorationStyle: var(--pf-t--global--text-decoration--help-text--style--default);
18953
18964
  --pf-v6-c-timestamp--m-help-text--TextUnderlineOffset: 0.25rem;
18954
- --pf-v6-c-timestamp--m-help-text--TextDecorationColor: var(--pf-t--global--border--color--default);
18955
18965
  --pf-v6-c-timestamp--m-help-text--hover--Color: var(--pf-t--global--text--color--regular);
18956
- --pf-v6-c-timestamp--m-help-text--focus--Color: var(--pf-t--global--text--color--regular);
18957
- --pf-v6-c-timestamp--m-help-text--hover--TextDecorationColor: var(--pf-t--global--text--color--regular);
18958
- --pf-v6-c-timestamp--m-help-text--focus--TextDecorationColor: var(--pf-t--global--text--color--regular);
18966
+ --pf-v6-c-timestamp--m-help-text--hover--TextDecorationLine: var(--pf-t--global--text-decoration--help-text--line--hover);
18967
+ --pf-v6-c-timestamp--m-help-text--hover--TextDecorationStyle: var(--pf-t--global--text-decoration--help-text--style--hover);
18959
18968
  }
18960
18969
 
18961
18970
  .pf-v6-c-timestamp {
@@ -18965,20 +18974,14 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
18965
18974
  outline-offset: var(--pf-v6-c-timestamp--OutlineOffset);
18966
18975
  }
18967
18976
  .pf-v6-c-timestamp.pf-m-help-text {
18968
- text-decoration-line: var(--pf-v6-c-timestamp--m-help-text--TextDecorationLine);
18969
- text-decoration-thickness: var(--pf-v6-c-timestamp--m-help-text--TextDecorationThickness);
18970
- text-decoration-style: var(--pf-v6-c-timestamp--m-help-text--TextDecorationStyle);
18971
- text-decoration-color: var(--pf-v6-c-timestamp--m-help-text--TextDecorationColor);
18977
+ text-decoration: var(--pf-v6-c-timestamp--m-help-text--TextDecorationLine) var(--pf-v6-c-timestamp--m-help-text--TextDecorationStyle);
18972
18978
  text-underline-offset: var(--pf-v6-c-timestamp--m-help-text--TextUnderlineOffset);
18973
18979
  cursor: pointer;
18974
18980
  }
18975
- .pf-v6-c-timestamp.pf-m-help-text:hover {
18981
+ .pf-v6-c-timestamp.pf-m-help-text:is(:hover, :focus) {
18976
18982
  --pf-v6-c-timestamp--Color: var(--pf-v6-c-timestamp--m-help-text--hover--Color);
18977
- --pf-v6-c-timestamp--m-help-text--TextDecorationColor: var(--pf-v6-c-timestamp--m-help-text--hover--TextDecorationColor);
18978
- }
18979
- .pf-v6-c-timestamp.pf-m-help-text:focus {
18980
- --pf-v6-c-timestamp--Color: var(--pf-v6-c-timestamp--m-help-text--focus--Color);
18981
- --pf-v6-c-timestamp--m-help-text--TextDecorationColor: var(--pf-v6-c-timestamp--m-help-text--focus--TextDecorationColor);
18983
+ --pf-v6-c-timestamp--m-help-text--TextDecorationLine: var(--pf-v6-c-timestamp--m-help-text--hover--TextDecorationLine);
18984
+ --pf-v6-c-timestamp--m-help-text--TextDecorationStyle: var(--pf-v6-c-timestamp--m-help-text--hover--TextDecorationStyle);
18982
18985
  }
18983
18986
 
18984
18987
  :where(:root, .pf-v6-c-title) {
@@ -19176,7 +19179,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
19176
19179
  border-inline-start-color: var(--pf-v6-c-toggle-group__button--before--BorderInlineStartColor, var(--pf-v6-c-toggle-group__button--before--BorderColor));
19177
19180
  border-inline-end-color: var(--pf-v6-c-toggle-group__button--before--BorderInlineEndColor, var(--pf-v6-c-toggle-group__button--before--BorderColor));
19178
19181
  }
19179
- .pf-v6-c-toggle-group__button:hover, .pf-v6-c-toggle-group__button:focus {
19182
+ .pf-v6-c-toggle-group__button:is(:hover, :focus) {
19180
19183
  --pf-v6-c-toggle-group__button--BackgroundColor: var(--pf-v6-c-toggle-group__button--hover--BackgroundColor);
19181
19184
  --pf-v6-c-toggle-group__button--ZIndex: var(--pf-v6-c-toggle-group__button--hover--ZIndex);
19182
19185
  --pf-v6-c-toggle-group__button--before--BorderColor: var(--pf-v6-c-toggle-group__button--hover--before--BorderColor);
@@ -19188,7 +19191,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
19188
19191
  --pf-v6-c-toggle-group__button--ZIndex: var(--pf-v6-c-toggle-group__button--m-selected--ZIndex);
19189
19192
  --pf-v6-c-toggle-group__button--before--BorderColor: var(--pf-v6-c-toggle-group__button--m-selected--before--BorderColor);
19190
19193
  }
19191
- .pf-v6-c-toggle-group__button:disabled, .pf-v6-c-toggle-group__button.pf-m-disabled {
19194
+ .pf-v6-c-toggle-group__button:is(:disabled, .pf-m-disabled) {
19192
19195
  --pf-v6-c-toggle-group__button--BackgroundColor: var(--pf-v6-c-toggle-group__button--disabled--BackgroundColor);
19193
19196
  --pf-v6-c-toggle-group__button--Color: var(--pf-v6-c-toggle-group__button--disabled--Color);
19194
19197
  --pf-v6-c-toggle-group__button--ZIndex: var(--pf-v6-c-toggle-group__button--disabled--ZIndex);
@@ -444,7 +444,7 @@ cssPrefix: ['pf-v6-c-alert','pf-v6-c-alert-group']
444
444
  <div class="pf-v6-c-alert__toggle">
445
445
  <button
446
446
  class="pf-v6-c-button pf-m-plain"
447
- id&#x26;#x3D;&#x26;quot;alert-expandable-example-1-toggle&#x26;quot;
447
+ id="alert-expandable-example-1-toggle"
448
448
  type="button"
449
449
  aria-labelledby="alert-expandable-example-1-title alert-expandable-example-1-toggle"
450
450
  aria-label="Details"
@@ -494,7 +494,7 @@ cssPrefix: ['pf-v6-c-alert','pf-v6-c-alert-group']
494
494
  <div class="pf-v6-c-alert__toggle">
495
495
  <button
496
496
  class="pf-v6-c-button pf-m-expanded pf-m-plain"
497
- id&#x26;#x3D;&#x26;quot;alert-expandable-example-2-toggle&#x26;quot;
497
+ id="alert-expandable-example-2-toggle"
498
498
  type="button"
499
499
  aria-expanded="true"
500
500
  aria-labelledby="alert-expandable-example-2-title alert-expandable-example-2-toggle"
@@ -545,7 +545,7 @@ cssPrefix: ['pf-v6-c-alert','pf-v6-c-alert-group']
545
545
  <div class="pf-v6-c-alert__toggle">
546
546
  <button
547
547
  class="pf-v6-c-button pf-m-plain"
548
- id&#x26;#x3D;&#x26;quot;alert-expandable-example-3-toggle&#x26;quot;
548
+ id="alert-expandable-example-3-toggle"
549
549
  type="button"
550
550
  aria-labelledby="alert-expandable-example-3-title alert-expandable-example-3-toggle"
551
551
  aria-label="Details"
@@ -595,7 +595,7 @@ cssPrefix: ['pf-v6-c-alert','pf-v6-c-alert-group']
595
595
  <div class="pf-v6-c-alert__toggle">
596
596
  <button
597
597
  class="pf-v6-c-button pf-m-expanded pf-m-plain"
598
- id&#x26;#x3D;&#x26;quot;alert-expandable-example-4-toggle&#x26;quot;
598
+ id="alert-expandable-example-4-toggle"
599
599
  type="button"
600
600
  aria-expanded="true"
601
601
  aria-labelledby="alert-expandable-example-4-title alert-expandable-example-4-toggle"
@@ -1368,7 +1368,7 @@ cssPrefix: pf-v6-c-card
1368
1368
  <div class="pf-v6-c-card__header-toggle">
1369
1369
  <button
1370
1370
  class="pf-v6-c-button pf-m-plain"
1371
- id&#x26;#x3D;&#x26;quot;card-expandable-example-toggle&#x26;quot;
1371
+ id="card-expandable-example-toggle"
1372
1372
  type="button"
1373
1373
  aria-labelledby="card-expandable-example-title card-expandable-example-toggle"
1374
1374
  aria-label="Details"
@@ -1424,7 +1424,7 @@ cssPrefix: pf-v6-c-card
1424
1424
  <div class="pf-v6-c-card__header-toggle">
1425
1425
  <button
1426
1426
  class="pf-v6-c-button pf-m-plain"
1427
- id&#x26;#x3D;&#x26;quot;card-expandable-image-example-toggle&#x26;quot;
1427
+ id="card-expandable-image-example-toggle"
1428
1428
  type="button"
1429
1429
  aria-labelledby="card-expandable-image-example-title card-expandable-image-example-toggle"
1430
1430
  aria-label="Details"
@@ -1479,7 +1479,7 @@ cssPrefix: pf-v6-c-card
1479
1479
  <div class="pf-v6-c-card__header-toggle">
1480
1480
  <button
1481
1481
  class="pf-v6-c-button pf-m-plain"
1482
- id&#x26;#x3D;&#x26;quot;card-expanded-example-toggle&#x26;quot;
1482
+ id="card-expanded-example-toggle"
1483
1483
  type="button"
1484
1484
  aria-labelledby="card-expanded-example-title card-expanded-example-toggle"
1485
1485
  aria-label="Details"
@@ -1611,7 +1611,7 @@ cssPrefix: pf-v6-c-card
1611
1611
  <div class="pf-v6-c-card__header-toggle">
1612
1612
  <button
1613
1613
  class="pf-v6-c-button pf-m-plain"
1614
- id&#x26;#x3D;&#x26;quot;card-toggle-on-right-example-toggle&#x26;quot;
1614
+ id="card-toggle-on-right-example-toggle"
1615
1615
  type="button"
1616
1616
  aria-labelledby="card-toggle-on-right-example-title card-toggle-on-right-example-toggle"
1617
1617
  aria-label="Details"
@@ -19,7 +19,7 @@ cssPrefix: pf-v6-c-clipboard-copy
19
19
  </span>
20
20
  <button
21
21
  class="pf-v6-c-button pf-m-control"
22
- id&#x26;#x3D;&#x26;quot;basic-editable-copy-button&#x26;quot;
22
+ id="basic-editable-copy-button"
23
23
  type="button"
24
24
  aria-labelledby="basic-editable-copy-button basic-editable-text-input"
25
25
  aria-label="Copy to clipboard"
@@ -44,7 +44,7 @@ cssPrefix: pf-v6-c-clipboard-copy
44
44
  </span>
45
45
  <button
46
46
  class="pf-v6-c-button pf-m-control"
47
- id&#x26;#x3D;&#x26;quot;basic-readonly-copy-button&#x26;quot;
47
+ id="basic-readonly-copy-button"
48
48
  type="button"
49
49
  aria-labelledby="basic-readonly-copy-button basic-readonly-text-input"
50
50
  aria-label="Copy to clipboard"
@@ -67,7 +67,12 @@ cssPrefix: pf-v6-c-description-list
67
67
  <dl class="pf-v6-c-description-list">
68
68
  <div class="pf-v6-c-description-list__group">
69
69
  <dt class="pf-v6-c-description-list__term">
70
- <span class="pf-v6-c-description-list__text">Name</span>
70
+ <span
71
+ class="pf-v6-c-description-list__text pf-m-help-text"
72
+ role="button"
73
+ type="button"
74
+ tabindex="0"
75
+ >Name</span>
71
76
  </dt>
72
77
  <dd class="pf-v6-c-description-list__description">
73
78
  <div class="pf-v6-c-description-list__text">example</div>
@@ -75,7 +80,12 @@ cssPrefix: pf-v6-c-description-list
75
80
  </div>
76
81
  <div class="pf-v6-c-description-list__group">
77
82
  <dt class="pf-v6-c-description-list__term">
78
- <span class="pf-v6-c-description-list__text">Namespace</span>
83
+ <span
84
+ class="pf-v6-c-description-list__text pf-m-help-text"
85
+ role="button"
86
+ type="button"
87
+ tabindex="0"
88
+ >Namespace</span>
79
89
  </dt>
80
90
  <dd class="pf-v6-c-description-list__description">
81
91
  <div class="pf-v6-c-description-list__text">
@@ -85,7 +95,12 @@ cssPrefix: pf-v6-c-description-list
85
95
  </div>
86
96
  <div class="pf-v6-c-description-list__group">
87
97
  <dt class="pf-v6-c-description-list__term">
88
- <span class="pf-v6-c-description-list__text">Labels</span>
98
+ <span
99
+ class="pf-v6-c-description-list__text pf-m-help-text"
100
+ role="button"
101
+ type="button"
102
+ tabindex="0"
103
+ >Labels</span>
89
104
  </dt>
90
105
  <dd class="pf-v6-c-description-list__description">
91
106
  <div class="pf-v6-c-description-list__text">example</div>
@@ -93,7 +108,12 @@ cssPrefix: pf-v6-c-description-list
93
108
  </div>
94
109
  <div class="pf-v6-c-description-list__group">
95
110
  <dt class="pf-v6-c-description-list__term">
96
- <span class="pf-v6-c-description-list__text">Pod selector</span>
111
+ <span
112
+ class="pf-v6-c-description-list__text pf-m-help-text"
113
+ role="button"
114
+ type="button"
115
+ tabindex="0"
116
+ >Pod selector</span>
97
117
  </dt>
98
118
  <dd class="pf-v6-c-description-list__description">
99
119
  <div class="pf-v6-c-description-list__text">
@@ -108,7 +128,12 @@ cssPrefix: pf-v6-c-description-list
108
128
  </div>
109
129
  <div class="pf-v6-c-description-list__group">
110
130
  <dt class="pf-v6-c-description-list__term">
111
- <span class="pf-v6-c-description-list__text">Annotation</span>
131
+ <span
132
+ class="pf-v6-c-description-list__text pf-m-help-text"
133
+ role="button"
134
+ type="button"
135
+ tabindex="0"
136
+ >Annotation</span>
112
137
  </dt>
113
138
  <dd class="pf-v6-c-description-list__description">
114
139
  <div class="pf-v6-c-description-list__text">2 Annotations</div>
@@ -658,7 +658,7 @@ cssPrefix: pf-v6-c-form
658
658
  <div class="pf-v6-c-form__field-group-toggle-button">
659
659
  <button
660
660
  class="pf-v6-c-button pf-m-plain"
661
- id&#x26;#x3D;&#x26;quot;form-expandable-field-groups-field-group-1-toggle&#x26;quot;
661
+ id="form-expandable-field-groups-field-group-1-toggle"
662
662
  type="button"
663
663
  aria-labelledby="form-expandable-field-groups-field-group-1-title form-expandable-field-groups-field-group-1-toggle"
664
664
  aria-label="Details"
@@ -699,7 +699,7 @@ cssPrefix: pf-v6-c-form
699
699
  <div class="pf-v6-c-form__field-group-toggle-button">
700
700
  <button
701
701
  class="pf-v6-c-button pf-m-expanded pf-m-plain"
702
- id&#x26;#x3D;&#x26;quot;form-expandable-field-groups-field-group-2-toggle&#x26;quot;
702
+ id="form-expandable-field-groups-field-group-2-toggle"
703
703
  type="button"
704
704
  aria-expanded="true"
705
705
  aria-labelledby="form-expandable-field-groups-field-group-2-title form-expandable-field-groups-field-group-2-toggle"