@patternfly/patternfly 6.2.0 → 6.2.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 (36) hide show
  1. package/README.md +1 -1
  2. package/components/Card/card.css +3 -0
  3. package/components/Card/card.scss +3 -0
  4. package/components/CodeEditor/code-editor.css +3 -0
  5. package/components/CodeEditor/code-editor.scss +3 -1
  6. package/components/Drawer/drawer.css +28 -14
  7. package/components/Drawer/drawer.scss +28 -9
  8. package/components/FormControl/form-control.css +1 -2
  9. package/components/FormControl/form-control.scss +1 -5
  10. package/components/Page/page.css +4 -3
  11. package/components/Page/page.scss +4 -2
  12. package/components/Tabs/tabs.css +65 -0
  13. package/components/Tabs/tabs.scss +77 -0
  14. package/components/Truncate/truncate.css +5 -0
  15. package/components/Truncate/truncate.scss +6 -0
  16. package/components/_index.css +108 -19
  17. package/docs/components/Divider/examples/Divider.md +1 -1
  18. package/docs/components/Drawer/examples/Drawer.md +4 -0
  19. package/docs/components/Page/examples/Page.md +1 -0
  20. package/docs/components/Table/examples/Table.md +4 -4
  21. package/docs/components/Tabs/examples/Tabs.md +6741 -12
  22. package/docs/components/Truncate/examples/Truncate.md +53 -10
  23. package/docs/demos/Card/examples/Card.md +57 -0
  24. package/docs/demos/DescriptionList/examples/DescriptionList.md +38 -0
  25. package/docs/demos/Drawer/examples/Drawer.md +38 -0
  26. package/docs/demos/Masthead/examples/Masthead.md +1 -1
  27. package/docs/demos/Nav/examples/Nav.md +2 -2
  28. package/docs/demos/Page/examples/Page.md +355 -0
  29. package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +76 -0
  30. package/docs/demos/Table/examples/Table.md +41 -21
  31. package/docs/demos/Tabs/examples/Tabs.md +570 -0
  32. package/package.json +6 -6
  33. package/patternfly-no-globals.css +108 -19
  34. package/patternfly.css +108 -19
  35. package/patternfly.min.css +1 -1
  36. 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": "6.2.0",
4
+ "version": "6.2.1",
5
5
  "keywords": [],
6
6
  "license": "MIT",
7
7
  "scripts": {
@@ -47,11 +47,11 @@
47
47
  "@commitlint/config-conventional": "^19.1.0",
48
48
  "@fortawesome/fontawesome": "^1.1.8",
49
49
  "@octokit/rest": "^20.1.0",
50
- "@patternfly/documentation-framework": "6.5.20",
51
- "@patternfly/patternfly-a11y": "5.0.0",
52
- "@patternfly/react-code-editor": "6.1.0",
53
- "@patternfly/react-core": "6.1.0",
54
- "@patternfly/react-table": "6.1.0",
50
+ "@patternfly/documentation-framework": "6.9.1",
51
+ "@patternfly/patternfly-a11y": "5.1.0",
52
+ "@patternfly/react-code-editor": "6.2.0",
53
+ "@patternfly/react-core": "6.2.0",
54
+ "@patternfly/react-table": "6.2.0",
55
55
  "@starptech/prettyhtml": "^0.10.0",
56
56
  "backstopjs": "^6.3.23",
57
57
  "cheerio": "^1.0.0-rc.12",
@@ -9791,6 +9791,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
9791
9791
  --pf-v6-c-card__title-text--FontSize: var(--pf-t--global--font--size--heading--xs);
9792
9792
  --pf-v6-c-card__title-text--FontWeight: var(--pf-t--global--font--weight--heading--default);
9793
9793
  --pf-v6-c-card__title-text--LineHeight: var(--pf-t--global--font--line-height--heading);
9794
+ --pf-v6-c-card__title-text--OverflowWrap: break-word;
9794
9795
  --pf-v6-c-card--c-button--disabled--Color: var(--pf-t--global--text--color--on-disabled);
9795
9796
  --pf-v6-c-card__body--FontSize: var(--pf-t--global--font--size--body--default);
9796
9797
  --pf-v6-c-card__footer--FontSize: var(--pf-t--global--font--size--body--default);
@@ -10003,11 +10004,13 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
10003
10004
  }
10004
10005
 
10005
10006
  .pf-v6-c-card__title-text {
10007
+ overflow: auto;
10006
10008
  font-family: var(--pf-v6-c-card__title-text--FontFamily);
10007
10009
  font-size: var(--pf-v6-c-card__title-text--FontSize);
10008
10010
  font-weight: var(--pf-v6-c-card__title-text--FontWeight);
10009
10011
  line-height: var(--pf-v6-c-card__title-text--LineHeight);
10010
10012
  color: var(--pf-v6-c-card__title-text--Color);
10013
+ overflow-wrap: var(--pf-v6-c-card__title-text--OverflowWrap);
10011
10014
  }
10012
10015
 
10013
10016
  .pf-v6-c-card__actions {
@@ -10510,6 +10513,9 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
10510
10513
  .pf-v6-c-code-editor__main .monaco-editor {
10511
10514
  background-color: var(--pf-v6-c-code-editor__main--BackgroundColor);
10512
10515
  }
10516
+ .pf-v6-c-code-editor__main a.label-name {
10517
+ text-decoration-line: none;
10518
+ }
10513
10519
 
10514
10520
  .pf-v6-c-code-editor__header + .pf-v6-c-code-editor__main {
10515
10521
  border-block-start-width: 0;
@@ -12766,9 +12772,15 @@ ul) {
12766
12772
  --pf-v6-c-drawer__panel--RowGap: var(--pf-t--global--spacer--sm);
12767
12773
  --pf-v6-c-drawer__panel--PaddingBlockStart: var(--pf-t--global--spacer--sm);
12768
12774
  --pf-v6-c-drawer__panel--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
12775
+ --pf-v6-c-drawer__panel--TransitionDelay: 0s, var(--pf-v6-c-drawer__panel--TransitionDelay--focus), var(--pf-v6-c-drawer__panel--TransitionDelay--focus);
12776
+ --pf-v6-c-drawer__panel--TransitionDelay--focus: var(--pf-v6-c-drawer__panel--TransitionDuration--fade);
12777
+ --pf-v6-c-drawer__panel--TransitionDelay--expand--focus: 0s;
12769
12778
  --pf-v6-c-drawer__panel--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
12770
- --pf-v6-c-drawer__panel--TransitionDuration: var(--pf-t--global--motion--duration--slide-in--short);
12771
- --pf-v6-c-drawer__panel--TransitionProperty: margin, transform, box-shadow, flex-basis;
12779
+ --pf-v6-c-drawer__panel--TransitionDuration--fade: var(--pf-t--global--motion--duration--fade--default);
12780
+ --pf-v6-c-drawer__panel--TransitionDuration: var(--pf-v6-c-drawer__panel--TransitionDuration--fade), 0s, 0s;
12781
+ --pf-v6-c-drawer__panel--TransitionProperty: opacity, visibility, transform;
12782
+ --pf-v6-c-drawer__panel--Opacity: 0;
12783
+ --pf-v6-c-drawer--m-expanded__panel--Opacity: 1;
12772
12784
  --pf-v6-c-drawer__panel--FlexBasis: 100%;
12773
12785
  --pf-v6-c-drawer__panel--md--FlexBasis--min: 1.5rem;
12774
12786
  --pf-v6-c-drawer__panel--md--FlexBasis: 50%;
@@ -12858,6 +12870,17 @@ ul) {
12858
12870
  --pf-v6-c-drawer--m-panel-left--m-inline__panel--PaddingInlineEnd: var(--pf-v6-c-drawer__panel--after--Width);
12859
12871
  --pf-v6-c-drawer--m-panel-bottom--m-inline__panel--PaddingBlockStart: var(--pf-v6-c-drawer__panel--after--Width);
12860
12872
  }
12873
+ @media screen and (prefers-reduced-motion: no-preference) {
12874
+ .pf-v6-c-drawer {
12875
+ --pf-v6-c-drawer__panel--TransitionDuration--slide: var(--pf-t--global--motion--duration--slide-in--short);
12876
+ --pf-v6-c-drawer__panel--TransitionDelay--focus: var(--pf-v6-c-drawer__panel--TransitionDuration--slide);
12877
+ --pf-v6-c-drawer__panel--TransitionDelay: 0s, 0s, 0s, 0s, var(--pf-v6-c-drawer__panel--TransitionDelay--focus);
12878
+ --pf-v6-c-drawer__panel--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
12879
+ --pf-v6-c-drawer__panel--TransitionDuration: 0s, var(--pf-v6-c-drawer__panel--TransitionDuration--slide), 0s, 0s, 0s;
12880
+ --pf-v6-c-drawer__panel--TransitionProperty: margin, transform, box-shadow, flex-basis, visibility;
12881
+ --pf-v6-c-drawer__panel--Opacity: 1;
12882
+ }
12883
+ }
12861
12884
  @media screen and (min-width: 75rem) {
12862
12885
  .pf-v6-c-drawer {
12863
12886
  --pf-v6-c-drawer__panel--MinWidth: var(--pf-v6-c-drawer__panel--xl--MinWidth);
@@ -12905,8 +12928,13 @@ ul) {
12905
12928
  .pf-v6-c-drawer.pf-m-panel-bottom > .pf-v6-c-drawer__main {
12906
12929
  flex-direction: column;
12907
12930
  }
12931
+ .pf-v6-c-drawer.pf-m-expanded {
12932
+ --pf-v6-c-drawer__panel--TransitionDelay--focus: var(--pf-v6-c-drawer__panel--TransitionDelay--expand--focus);
12933
+ }
12908
12934
  .pf-v6-c-drawer.pf-m-expanded > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
12909
12935
  transform: translateX(-100%);
12936
+ --pf-v6-c-drawer__panel--Opacity: var(--pf-v6-c-drawer--m-expanded__panel--Opacity);
12937
+ visibility: visible;
12910
12938
  }
12911
12939
  :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-drawer.pf-m-expanded > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
12912
12940
  transform: translateX(calc(-100% * var(--pf-v6-global--inverse--multiplier)));
@@ -12979,8 +13007,11 @@ ul) {
12979
13007
  order: 1;
12980
13008
  max-height: var(--pf-v6-c-drawer__panel--MaxHeight);
12981
13009
  overflow: auto;
13010
+ visibility: hidden;
12982
13011
  background-color: var(--pf-v6-c-drawer__panel--BackgroundColor);
12983
13012
  box-shadow: var(--pf-v6-c-drawer__panel--BoxShadow);
13013
+ opacity: var(--pf-v6-c-drawer__panel--Opacity);
13014
+ transition-delay: var(--pf-v6-c-drawer__panel--TransitionDelay);
12984
13015
  transition-timing-function: var(--pf-v6-c-drawer__panel--TransitionTimingFunction);
12985
13016
  transition-duration: var(--pf-v6-c-drawer__panel--TransitionDuration);
12986
13017
  transition-property: var(--pf-v6-c-drawer__panel--TransitionProperty);
@@ -13037,17 +13068,6 @@ ul) {
13037
13068
  padding-block-end: var(--pf-v6-c-drawer__panel--PaddingBlockEnd);
13038
13069
  }
13039
13070
 
13040
- @keyframes pf-remove-tab-focus {
13041
- to {
13042
- visibility: hidden;
13043
- }
13044
- }
13045
- .pf-v6-c-drawer__panel[hidden] {
13046
- animation-name: pf-remove-tab-focus;
13047
- animation-delay: var(--pf-v6-c-drawer__panel--TransitionDuration);
13048
- animation-fill-mode: forwards;
13049
- }
13050
-
13051
13071
  .pf-v6-c-drawer__head {
13052
13072
  display: grid;
13053
13073
  grid-template-columns: auto;
@@ -13155,7 +13175,7 @@ ul) {
13155
13175
  .pf-v6-c-drawer {
13156
13176
  min-width: var(--pf-v6-c-drawer__panel--MinWidth);
13157
13177
  }
13158
- .pf-v6-c-drawer.pf-m-expanded > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
13178
+ .pf-v6-c-drawer > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
13159
13179
  box-shadow: var(--pf-v6-c-drawer--m-expanded__panel--BoxShadow);
13160
13180
  }
13161
13181
  .pf-v6-c-drawer > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel.pf-m-resizable {
@@ -14529,12 +14549,11 @@ ul) {
14529
14549
  padding-inline-start: var(--pf-v6-c-form-control--PaddingInlineStart);
14530
14550
  padding-inline-end: var(--pf-v6-c-form-control--PaddingInlineEnd);
14531
14551
  color: var(--pf-v6-c-form-control--Color);
14552
+ appearance: none;
14532
14553
  background-color: transparent;
14533
14554
  border: none;
14534
14555
  border-radius: var(--pf-v6-c-form-control--BorderRadius);
14535
14556
  outline-offset: var(--pf-v6-c-form-control--OutlineOffset);
14536
- -moz-appearance: none;
14537
- -webkit-appearance: none;
14538
14557
  }
14539
14558
  .pf-v6-c-form-control > ::placeholder {
14540
14559
  color: var(--pf-v6-c-form-control--m-placeholder--Color);
@@ -19208,8 +19227,9 @@ ul.pf-v6-c-list {
19208
19227
  --pf-v6-c-page--inset: var(--pf-t--global--spacer--inset--page-chrome);
19209
19228
  --pf-v6-c-page--c-masthead--ZIndex: var(--pf-t--global--z-index--md);
19210
19229
  --pf-v6-c-page__sidebar--ZIndex: var(--pf-t--global--z-index--sm);
19211
- --pf-v6-c-page__sidebar--Width: 18.125rem;
19212
- --pf-v6-c-page__sidebar--xl--Width: 18.125rem;
19230
+ --pf-v6-c-page__sidebar--Width--base: 18.125rem;
19231
+ --pf-v6-c-page__sidebar--Width: var(--pf-v6-c-page__sidebar--Width--base);
19232
+ --pf-v6-c-page__sidebar--xl--Width: var(--pf-v6-c-page__sidebar--Width--base);
19213
19233
  --pf-v6-c-page__sidebar--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
19214
19234
  --pf-v6-c-page__sidebar--BoxShadow: none;
19215
19235
  --pf-v6-c-page__sidebar--TransitionDuration: var(--pf-t--global--motion--duration--slide-in--default);
@@ -19637,7 +19657,7 @@ ul.pf-v6-c-list {
19637
19657
  -webkit-overflow-scrolling: touch;
19638
19658
  }
19639
19659
  @media screen and (min-width: 75rem) {
19640
- .pf-v6-c-masthead + .pf-v6-c-page__main-container, .pf-v6-c-page__sidebar.pf-m-collapsed + .pf-v6-c-page__main-container,
19660
+ .pf-v6-c-page.pf-m-no-sidebar, .pf-v6-c-masthead + .pf-v6-c-page__main-container, .pf-v6-c-page__sidebar.pf-m-collapsed + .pf-v6-c-page__main-container,
19641
19661
  .pf-v6-c-masthead + .pf-v6-c-page__drawer,
19642
19662
  .pf-v6-c-page__sidebar.pf-m-collapsed + .pf-v6-c-page__drawer {
19643
19663
  --pf-v6-c-page__main-container--GridArea: var(--pf-v6-c-page--masthead--main-container--GridArea);
@@ -25777,6 +25797,16 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
25777
25797
  }
25778
25798
  }
25779
25799
 
25800
+ @property --pf-v6-c-tabs--link-accent--length {
25801
+ syntax: "<length>";
25802
+ inherits: true;
25803
+ initial-value: 0px;
25804
+ }
25805
+ @property --pf-v6-c-tabs--link-accent--start {
25806
+ syntax: "<length>";
25807
+ inherits: true;
25808
+ initial-value: 0px;
25809
+ }
25780
25810
  .pf-v6-c-tabs {
25781
25811
  --pf-v6-c-tabs--inset: 0;
25782
25812
  --pf-v6-c-tabs--Width: auto;
@@ -25838,6 +25868,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
25838
25868
  --pf-v6-c-tabs--m-box--m-secondary__link--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
25839
25869
  --pf-v6-c-tabs--m-box--m-secondary__item--m-current__link--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
25840
25870
  --pf-v6-c-tabs--m-subtab__link--FontSize: var(--pf-t--global--font--size--xs);
25871
+ --pf-v6-c-tabs__link--TransitionDuration--background-color: var(--pf-t--global--motion--duration--fade--short);
25872
+ --pf-v6-c-tabs__link--TransitionTimingFunction--background-color: var(--pf-t--global--motion--timing-function--default);
25841
25873
  --pf-v6-c-tabs__link--before--border-color--base: var(--pf-t--global--border--color--default);
25842
25874
  --pf-v6-c-tabs__link--before--border-width--base: var(--pf-t--global--border--width--regular);
25843
25875
  --pf-v6-c-tabs__link--before--BorderBlockStartColor: var(--pf-v6-c-tabs__link--before--border-color--base);
@@ -25862,6 +25894,26 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
25862
25894
  --pf-v6-c-tabs__link--after--BorderInlineStartWidth: 0;
25863
25895
  --pf-v6-c-tabs__item--m-current__link--after--BorderColor: var(--pf-t--global--border--color--clicked);
25864
25896
  --pf-v6-c-tabs__item--m-current__link--after--BorderWidth: var(--pf-t--global--border--width--extra-strong);
25897
+ --pf-v6-c-tabs--link-accent--start: 0;
25898
+ --pf-v6-c-tabs--link-accent--length: auto;
25899
+ --pf-v6-c-tabs--link-accent--color: var(--pf-v6-c-tabs__item--m-current__link--after--BorderColor);
25900
+ --pf-v6-c-tabs--link-accent--border-size: var(--pf-v6-c-tabs__item--m-current__link--after--BorderWidth);
25901
+ --pf-v6-c-tabs--link-accent--InsetBlockStart: auto;
25902
+ --pf-v6-c-tabs--link-accent--InsetBlockEnd: 0;
25903
+ --pf-v6-c-tabs--link-accent--InsetInlineStart: initial;
25904
+ --pf-v6-c-tabs--link-accent--Width: initial;
25905
+ --pf-v6-c-tabs--link-accent--Height: 0;
25906
+ --pf-v6-c-tabs--link-accent--BorderBlockEndWidth: var(--pf-v6-c-tabs--link-accent--border-size);
25907
+ --pf-v6-c-tabs--link-accent--BorderInlineStartWidth: 0;
25908
+ --pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart: initial;
25909
+ --pf-v6-c-tabs--m-vertical--link-accent--InsetBlockEnd: auto;
25910
+ --pf-v6-c-tabs--m-vertical--link-accent--InsetInlineStart: 0;
25911
+ --pf-v6-c-tabs--m-vertical--link-accent--Width: 0;
25912
+ --pf-v6-c-tabs--m-vertical--link-accent--Height: initial;
25913
+ --pf-v6-c-tabs--m-vertical--link-accent--BorderBlockEndWidth: 0;
25914
+ --pf-v6-c-tabs--m-vertical--link-accent--BorderInlineStartWidth: var(--pf-v6-c-tabs--link-accent--border-size);
25915
+ --pf-v6-c-tabs--link-accent--TransitionDuration: var(--pf-t--global--motion--duration--md);
25916
+ --pf-v6-c-tabs--link-accent--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
25865
25917
  --pf-v6-c-tabs__scroll-button--PaddingBlockStart: var(--pf-t--global--spacer--sm);
25866
25918
  --pf-v6-c-tabs__scroll-button--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
25867
25919
  --pf-v6-c-tabs__scroll-button--PaddingInlineStart: var(--pf-t--global--spacer--sm);
@@ -26019,6 +26071,13 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
26019
26071
  --pf-v6-c-tabs__link--after--InsetBlockEnd: 0;
26020
26072
  --pf-v6-c-tabs__link--after--InsetInlineEnd: auto;
26021
26073
  --pf-v6-c-tabs__list--ScrollSnapTypeAxis: var(--pf-v6-c-tabs--m-vertical__list--ScrollSnapTypeAxis);
26074
+ --pf-v6-c-tabs--link-accent--InsetBlockStart: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart);
26075
+ --pf-v6-c-tabs--link-accent--InsetBlockEnd: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockEnd);
26076
+ --pf-v6-c-tabs--link-accent--InsetInlineStart: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetInlineStart);
26077
+ --pf-v6-c-tabs--link-accent--Width: var(--pf-v6-c-tabs--m-vertical--link-accent--Width);
26078
+ --pf-v6-c-tabs--link-accent--Height: var(--pf-v6-c-tabs--m-vertical--link-accent--Height);
26079
+ --pf-v6-c-tabs--link-accent--BorderBlockEndWidth: var(--pf-v6-c-tabs--m-vertical--link-accent--BorderBlockEndWidth);
26080
+ --pf-v6-c-tabs--link-accent--BorderInlineStartWidth: var(--pf-v6-c-tabs--m-vertical--link-accent--BorderInlineStartWidth);
26022
26081
  display: inline-flex;
26023
26082
  flex-direction: column;
26024
26083
  height: 100%;
@@ -26281,6 +26340,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
26281
26340
  text-decoration-line: none;
26282
26341
  background-color: var(--pf-v6-c-tabs__link--BackgroundColor);
26283
26342
  border-radius: var(--pf-v6-c-tabs__link--BorderRadius);
26343
+ transition: background-color var(--pf-v6-c-tabs__link--TransitionDuration--background-color) var(--pf-v6-c-tabs__link--TransitionTimingFunction--background-color);
26284
26344
  }
26285
26345
  .pf-v6-c-tabs__item.pf-m-action, .pf-v6-c-tabs__link {
26286
26346
  --pf-v6-c-tabs__link--after--BorderBlockEndWidth: var(--pf-v6-c-tabs__link--after--BorderWidth);
@@ -26593,6 +26653,30 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
26593
26653
  }
26594
26654
  }
26595
26655
 
26656
+ @media (prefers-reduced-motion: no-preference) {
26657
+ .pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__link::after,
26658
+ .pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__item.pf-m-action::after {
26659
+ content: revert;
26660
+ }
26661
+ .pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__list::after {
26662
+ position: absolute;
26663
+ inset-block-start: var(--pf-v6-c-tabs--link-accent--InsetBlockStart, var(--pf-v6-c-tabs--link-accent--start));
26664
+ inset-block-end: var(--pf-v6-c-tabs--link-accent--InsetBlockEnd);
26665
+ inset-inline-start: var(--pf-v6-c-tabs--link-accent--InsetInlineStart, var(--pf-v6-c-tabs--link-accent--start));
26666
+ width: var(--pf-v6-c-tabs--link-accent--Width, var(--pf-v6-c-tabs--link-accent--length));
26667
+ height: var(--pf-v6-c-tabs--link-accent--Height, var(--pf-v6-c-tabs--link-accent--length));
26668
+ content: "";
26669
+ border: 0 solid var(--pf-v6-c-tabs--link-accent--color);
26670
+ border-block-end-width: var(--pf-v6-c-tabs--link-accent--BorderBlockEndWidth);
26671
+ border-inline-start-width: var(--pf-v6-c-tabs--link-accent--BorderInlineStartWidth);
26672
+ transition-timing-function: var(--pf-v6-c-tabs--link-accent--TransitionTimingFunction);
26673
+ transition-duration: var(--pf-v6-c-tabs--link-accent--TransitionDuration);
26674
+ transition-property: --pf-v6-c-tabs--link-accent--length, --pf-v6-c-tabs--link-accent--start, width;
26675
+ }
26676
+ .pf-v6-c-tabs.pf-m-initializing-accent {
26677
+ --pf-v6-c-tabs--link-accent--TransitionDuration: 0;
26678
+ }
26679
+ }
26596
26680
  .pf-v6-c-text-input-group {
26597
26681
  --pf-v6-c-text-input-group--BackgroundColor: var(--pf-t--global--background--color--control--default);
26598
26682
  --pf-v6-c-text-input-group--BorderColor: var(--pf-t--global--border--color--default);
@@ -29204,6 +29288,11 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
29204
29288
  align-items: baseline;
29205
29289
  min-width: var(--pf-v6-c-truncate--MinWidth);
29206
29290
  }
29291
+ .pf-v6-c-truncate.pf-m-fixed {
29292
+ display: inline;
29293
+ align-items: revert;
29294
+ min-width: revert;
29295
+ }
29207
29296
 
29208
29297
  .pf-v6-c-truncate__start,
29209
29298
  .pf-v6-c-truncate__end {
package/patternfly.css CHANGED
@@ -9927,6 +9927,7 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
9927
9927
  --pf-v6-c-card__title-text--FontSize: var(--pf-t--global--font--size--heading--xs);
9928
9928
  --pf-v6-c-card__title-text--FontWeight: var(--pf-t--global--font--weight--heading--default);
9929
9929
  --pf-v6-c-card__title-text--LineHeight: var(--pf-t--global--font--line-height--heading);
9930
+ --pf-v6-c-card__title-text--OverflowWrap: break-word;
9930
9931
  --pf-v6-c-card--c-button--disabled--Color: var(--pf-t--global--text--color--on-disabled);
9931
9932
  --pf-v6-c-card__body--FontSize: var(--pf-t--global--font--size--body--default);
9932
9933
  --pf-v6-c-card__footer--FontSize: var(--pf-t--global--font--size--body--default);
@@ -10139,11 +10140,13 @@ span.pf-v6-c-button.pf-m-link.pf-m-inline {
10139
10140
  }
10140
10141
 
10141
10142
  .pf-v6-c-card__title-text {
10143
+ overflow: auto;
10142
10144
  font-family: var(--pf-v6-c-card__title-text--FontFamily);
10143
10145
  font-size: var(--pf-v6-c-card__title-text--FontSize);
10144
10146
  font-weight: var(--pf-v6-c-card__title-text--FontWeight);
10145
10147
  line-height: var(--pf-v6-c-card__title-text--LineHeight);
10146
10148
  color: var(--pf-v6-c-card__title-text--Color);
10149
+ overflow-wrap: var(--pf-v6-c-card__title-text--OverflowWrap);
10147
10150
  }
10148
10151
 
10149
10152
  .pf-v6-c-card__actions {
@@ -10646,6 +10649,9 @@ label.pf-v6-c-check, .pf-v6-c-check__label,
10646
10649
  .pf-v6-c-code-editor__main .monaco-editor {
10647
10650
  background-color: var(--pf-v6-c-code-editor__main--BackgroundColor);
10648
10651
  }
10652
+ .pf-v6-c-code-editor__main a.label-name {
10653
+ text-decoration-line: none;
10654
+ }
10649
10655
 
10650
10656
  .pf-v6-c-code-editor__header + .pf-v6-c-code-editor__main {
10651
10657
  border-block-start-width: 0;
@@ -12902,9 +12908,15 @@ ul) {
12902
12908
  --pf-v6-c-drawer__panel--RowGap: var(--pf-t--global--spacer--sm);
12903
12909
  --pf-v6-c-drawer__panel--PaddingBlockStart: var(--pf-t--global--spacer--sm);
12904
12910
  --pf-v6-c-drawer__panel--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
12911
+ --pf-v6-c-drawer__panel--TransitionDelay: 0s, var(--pf-v6-c-drawer__panel--TransitionDelay--focus), var(--pf-v6-c-drawer__panel--TransitionDelay--focus);
12912
+ --pf-v6-c-drawer__panel--TransitionDelay--focus: var(--pf-v6-c-drawer__panel--TransitionDuration--fade);
12913
+ --pf-v6-c-drawer__panel--TransitionDelay--expand--focus: 0s;
12905
12914
  --pf-v6-c-drawer__panel--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
12906
- --pf-v6-c-drawer__panel--TransitionDuration: var(--pf-t--global--motion--duration--slide-in--short);
12907
- --pf-v6-c-drawer__panel--TransitionProperty: margin, transform, box-shadow, flex-basis;
12915
+ --pf-v6-c-drawer__panel--TransitionDuration--fade: var(--pf-t--global--motion--duration--fade--default);
12916
+ --pf-v6-c-drawer__panel--TransitionDuration: var(--pf-v6-c-drawer__panel--TransitionDuration--fade), 0s, 0s;
12917
+ --pf-v6-c-drawer__panel--TransitionProperty: opacity, visibility, transform;
12918
+ --pf-v6-c-drawer__panel--Opacity: 0;
12919
+ --pf-v6-c-drawer--m-expanded__panel--Opacity: 1;
12908
12920
  --pf-v6-c-drawer__panel--FlexBasis: 100%;
12909
12921
  --pf-v6-c-drawer__panel--md--FlexBasis--min: 1.5rem;
12910
12922
  --pf-v6-c-drawer__panel--md--FlexBasis: 50%;
@@ -12994,6 +13006,17 @@ ul) {
12994
13006
  --pf-v6-c-drawer--m-panel-left--m-inline__panel--PaddingInlineEnd: var(--pf-v6-c-drawer__panel--after--Width);
12995
13007
  --pf-v6-c-drawer--m-panel-bottom--m-inline__panel--PaddingBlockStart: var(--pf-v6-c-drawer__panel--after--Width);
12996
13008
  }
13009
+ @media screen and (prefers-reduced-motion: no-preference) {
13010
+ .pf-v6-c-drawer {
13011
+ --pf-v6-c-drawer__panel--TransitionDuration--slide: var(--pf-t--global--motion--duration--slide-in--short);
13012
+ --pf-v6-c-drawer__panel--TransitionDelay--focus: var(--pf-v6-c-drawer__panel--TransitionDuration--slide);
13013
+ --pf-v6-c-drawer__panel--TransitionDelay: 0s, 0s, 0s, 0s, var(--pf-v6-c-drawer__panel--TransitionDelay--focus);
13014
+ --pf-v6-c-drawer__panel--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
13015
+ --pf-v6-c-drawer__panel--TransitionDuration: 0s, var(--pf-v6-c-drawer__panel--TransitionDuration--slide), 0s, 0s, 0s;
13016
+ --pf-v6-c-drawer__panel--TransitionProperty: margin, transform, box-shadow, flex-basis, visibility;
13017
+ --pf-v6-c-drawer__panel--Opacity: 1;
13018
+ }
13019
+ }
12997
13020
  @media screen and (min-width: 75rem) {
12998
13021
  .pf-v6-c-drawer {
12999
13022
  --pf-v6-c-drawer__panel--MinWidth: var(--pf-v6-c-drawer__panel--xl--MinWidth);
@@ -13041,8 +13064,13 @@ ul) {
13041
13064
  .pf-v6-c-drawer.pf-m-panel-bottom > .pf-v6-c-drawer__main {
13042
13065
  flex-direction: column;
13043
13066
  }
13067
+ .pf-v6-c-drawer.pf-m-expanded {
13068
+ --pf-v6-c-drawer__panel--TransitionDelay--focus: var(--pf-v6-c-drawer__panel--TransitionDelay--expand--focus);
13069
+ }
13044
13070
  .pf-v6-c-drawer.pf-m-expanded > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
13045
13071
  transform: translateX(-100%);
13072
+ --pf-v6-c-drawer__panel--Opacity: var(--pf-v6-c-drawer--m-expanded__panel--Opacity);
13073
+ visibility: visible;
13046
13074
  }
13047
13075
  :where(.pf-v6-m-dir-rtl, [dir=rtl]) .pf-v6-c-drawer.pf-m-expanded > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
13048
13076
  transform: translateX(calc(-100% * var(--pf-v6-global--inverse--multiplier)));
@@ -13115,8 +13143,11 @@ ul) {
13115
13143
  order: 1;
13116
13144
  max-height: var(--pf-v6-c-drawer__panel--MaxHeight);
13117
13145
  overflow: auto;
13146
+ visibility: hidden;
13118
13147
  background-color: var(--pf-v6-c-drawer__panel--BackgroundColor);
13119
13148
  box-shadow: var(--pf-v6-c-drawer__panel--BoxShadow);
13149
+ opacity: var(--pf-v6-c-drawer__panel--Opacity);
13150
+ transition-delay: var(--pf-v6-c-drawer__panel--TransitionDelay);
13120
13151
  transition-timing-function: var(--pf-v6-c-drawer__panel--TransitionTimingFunction);
13121
13152
  transition-duration: var(--pf-v6-c-drawer__panel--TransitionDuration);
13122
13153
  transition-property: var(--pf-v6-c-drawer__panel--TransitionProperty);
@@ -13173,17 +13204,6 @@ ul) {
13173
13204
  padding-block-end: var(--pf-v6-c-drawer__panel--PaddingBlockEnd);
13174
13205
  }
13175
13206
 
13176
- @keyframes pf-remove-tab-focus {
13177
- to {
13178
- visibility: hidden;
13179
- }
13180
- }
13181
- .pf-v6-c-drawer__panel[hidden] {
13182
- animation-name: pf-remove-tab-focus;
13183
- animation-delay: var(--pf-v6-c-drawer__panel--TransitionDuration);
13184
- animation-fill-mode: forwards;
13185
- }
13186
-
13187
13207
  .pf-v6-c-drawer__head {
13188
13208
  display: grid;
13189
13209
  grid-template-columns: auto;
@@ -13291,7 +13311,7 @@ ul) {
13291
13311
  .pf-v6-c-drawer {
13292
13312
  min-width: var(--pf-v6-c-drawer__panel--MinWidth);
13293
13313
  }
13294
- .pf-v6-c-drawer.pf-m-expanded > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
13314
+ .pf-v6-c-drawer > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel {
13295
13315
  box-shadow: var(--pf-v6-c-drawer--m-expanded__panel--BoxShadow);
13296
13316
  }
13297
13317
  .pf-v6-c-drawer > .pf-v6-c-drawer__main > .pf-v6-c-drawer__panel.pf-m-resizable {
@@ -14665,12 +14685,11 @@ ul) {
14665
14685
  padding-inline-start: var(--pf-v6-c-form-control--PaddingInlineStart);
14666
14686
  padding-inline-end: var(--pf-v6-c-form-control--PaddingInlineEnd);
14667
14687
  color: var(--pf-v6-c-form-control--Color);
14688
+ appearance: none;
14668
14689
  background-color: transparent;
14669
14690
  border: none;
14670
14691
  border-radius: var(--pf-v6-c-form-control--BorderRadius);
14671
14692
  outline-offset: var(--pf-v6-c-form-control--OutlineOffset);
14672
- -moz-appearance: none;
14673
- -webkit-appearance: none;
14674
14693
  }
14675
14694
  .pf-v6-c-form-control > ::placeholder {
14676
14695
  color: var(--pf-v6-c-form-control--m-placeholder--Color);
@@ -19344,8 +19363,9 @@ ul.pf-v6-c-list {
19344
19363
  --pf-v6-c-page--inset: var(--pf-t--global--spacer--inset--page-chrome);
19345
19364
  --pf-v6-c-page--c-masthead--ZIndex: var(--pf-t--global--z-index--md);
19346
19365
  --pf-v6-c-page__sidebar--ZIndex: var(--pf-t--global--z-index--sm);
19347
- --pf-v6-c-page__sidebar--Width: 18.125rem;
19348
- --pf-v6-c-page__sidebar--xl--Width: 18.125rem;
19366
+ --pf-v6-c-page__sidebar--Width--base: 18.125rem;
19367
+ --pf-v6-c-page__sidebar--Width: var(--pf-v6-c-page__sidebar--Width--base);
19368
+ --pf-v6-c-page__sidebar--xl--Width: var(--pf-v6-c-page__sidebar--Width--base);
19349
19369
  --pf-v6-c-page__sidebar--BackgroundColor: var(--pf-t--global--background--color--secondary--default);
19350
19370
  --pf-v6-c-page__sidebar--BoxShadow: none;
19351
19371
  --pf-v6-c-page__sidebar--TransitionDuration: var(--pf-t--global--motion--duration--slide-in--default);
@@ -19773,7 +19793,7 @@ ul.pf-v6-c-list {
19773
19793
  -webkit-overflow-scrolling: touch;
19774
19794
  }
19775
19795
  @media screen and (min-width: 75rem) {
19776
- .pf-v6-c-masthead + .pf-v6-c-page__main-container, .pf-v6-c-page__sidebar.pf-m-collapsed + .pf-v6-c-page__main-container,
19796
+ .pf-v6-c-page.pf-m-no-sidebar, .pf-v6-c-masthead + .pf-v6-c-page__main-container, .pf-v6-c-page__sidebar.pf-m-collapsed + .pf-v6-c-page__main-container,
19777
19797
  .pf-v6-c-masthead + .pf-v6-c-page__drawer,
19778
19798
  .pf-v6-c-page__sidebar.pf-m-collapsed + .pf-v6-c-page__drawer {
19779
19799
  --pf-v6-c-page__main-container--GridArea: var(--pf-v6-c-page--masthead--main-container--GridArea);
@@ -25913,6 +25933,16 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
25913
25933
  }
25914
25934
  }
25915
25935
 
25936
+ @property --pf-v6-c-tabs--link-accent--length {
25937
+ syntax: "<length>";
25938
+ inherits: true;
25939
+ initial-value: 0px;
25940
+ }
25941
+ @property --pf-v6-c-tabs--link-accent--start {
25942
+ syntax: "<length>";
25943
+ inherits: true;
25944
+ initial-value: 0px;
25945
+ }
25916
25946
  .pf-v6-c-tabs {
25917
25947
  --pf-v6-c-tabs--inset: 0;
25918
25948
  --pf-v6-c-tabs--Width: auto;
@@ -25974,6 +26004,8 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
25974
26004
  --pf-v6-c-tabs--m-box--m-secondary__link--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
25975
26005
  --pf-v6-c-tabs--m-box--m-secondary__item--m-current__link--BackgroundColor: var(--pf-t--global--background--color--action--plain--default);
25976
26006
  --pf-v6-c-tabs--m-subtab__link--FontSize: var(--pf-t--global--font--size--xs);
26007
+ --pf-v6-c-tabs__link--TransitionDuration--background-color: var(--pf-t--global--motion--duration--fade--short);
26008
+ --pf-v6-c-tabs__link--TransitionTimingFunction--background-color: var(--pf-t--global--motion--timing-function--default);
25977
26009
  --pf-v6-c-tabs__link--before--border-color--base: var(--pf-t--global--border--color--default);
25978
26010
  --pf-v6-c-tabs__link--before--border-width--base: var(--pf-t--global--border--width--regular);
25979
26011
  --pf-v6-c-tabs__link--before--BorderBlockStartColor: var(--pf-v6-c-tabs__link--before--border-color--base);
@@ -25998,6 +26030,26 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
25998
26030
  --pf-v6-c-tabs__link--after--BorderInlineStartWidth: 0;
25999
26031
  --pf-v6-c-tabs__item--m-current__link--after--BorderColor: var(--pf-t--global--border--color--clicked);
26000
26032
  --pf-v6-c-tabs__item--m-current__link--after--BorderWidth: var(--pf-t--global--border--width--extra-strong);
26033
+ --pf-v6-c-tabs--link-accent--start: 0;
26034
+ --pf-v6-c-tabs--link-accent--length: auto;
26035
+ --pf-v6-c-tabs--link-accent--color: var(--pf-v6-c-tabs__item--m-current__link--after--BorderColor);
26036
+ --pf-v6-c-tabs--link-accent--border-size: var(--pf-v6-c-tabs__item--m-current__link--after--BorderWidth);
26037
+ --pf-v6-c-tabs--link-accent--InsetBlockStart: auto;
26038
+ --pf-v6-c-tabs--link-accent--InsetBlockEnd: 0;
26039
+ --pf-v6-c-tabs--link-accent--InsetInlineStart: initial;
26040
+ --pf-v6-c-tabs--link-accent--Width: initial;
26041
+ --pf-v6-c-tabs--link-accent--Height: 0;
26042
+ --pf-v6-c-tabs--link-accent--BorderBlockEndWidth: var(--pf-v6-c-tabs--link-accent--border-size);
26043
+ --pf-v6-c-tabs--link-accent--BorderInlineStartWidth: 0;
26044
+ --pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart: initial;
26045
+ --pf-v6-c-tabs--m-vertical--link-accent--InsetBlockEnd: auto;
26046
+ --pf-v6-c-tabs--m-vertical--link-accent--InsetInlineStart: 0;
26047
+ --pf-v6-c-tabs--m-vertical--link-accent--Width: 0;
26048
+ --pf-v6-c-tabs--m-vertical--link-accent--Height: initial;
26049
+ --pf-v6-c-tabs--m-vertical--link-accent--BorderBlockEndWidth: 0;
26050
+ --pf-v6-c-tabs--m-vertical--link-accent--BorderInlineStartWidth: var(--pf-v6-c-tabs--link-accent--border-size);
26051
+ --pf-v6-c-tabs--link-accent--TransitionDuration: var(--pf-t--global--motion--duration--md);
26052
+ --pf-v6-c-tabs--link-accent--TransitionTimingFunction: var(--pf-t--global--motion--timing-function--decelerate);
26001
26053
  --pf-v6-c-tabs__scroll-button--PaddingBlockStart: var(--pf-t--global--spacer--sm);
26002
26054
  --pf-v6-c-tabs__scroll-button--PaddingBlockEnd: var(--pf-t--global--spacer--sm);
26003
26055
  --pf-v6-c-tabs__scroll-button--PaddingInlineStart: var(--pf-t--global--spacer--sm);
@@ -26155,6 +26207,13 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
26155
26207
  --pf-v6-c-tabs__link--after--InsetBlockEnd: 0;
26156
26208
  --pf-v6-c-tabs__link--after--InsetInlineEnd: auto;
26157
26209
  --pf-v6-c-tabs__list--ScrollSnapTypeAxis: var(--pf-v6-c-tabs--m-vertical__list--ScrollSnapTypeAxis);
26210
+ --pf-v6-c-tabs--link-accent--InsetBlockStart: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockStart);
26211
+ --pf-v6-c-tabs--link-accent--InsetBlockEnd: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetBlockEnd);
26212
+ --pf-v6-c-tabs--link-accent--InsetInlineStart: var(--pf-v6-c-tabs--m-vertical--link-accent--InsetInlineStart);
26213
+ --pf-v6-c-tabs--link-accent--Width: var(--pf-v6-c-tabs--m-vertical--link-accent--Width);
26214
+ --pf-v6-c-tabs--link-accent--Height: var(--pf-v6-c-tabs--m-vertical--link-accent--Height);
26215
+ --pf-v6-c-tabs--link-accent--BorderBlockEndWidth: var(--pf-v6-c-tabs--m-vertical--link-accent--BorderBlockEndWidth);
26216
+ --pf-v6-c-tabs--link-accent--BorderInlineStartWidth: var(--pf-v6-c-tabs--m-vertical--link-accent--BorderInlineStartWidth);
26158
26217
  display: inline-flex;
26159
26218
  flex-direction: column;
26160
26219
  height: 100%;
@@ -26417,6 +26476,7 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
26417
26476
  text-decoration-line: none;
26418
26477
  background-color: var(--pf-v6-c-tabs__link--BackgroundColor);
26419
26478
  border-radius: var(--pf-v6-c-tabs__link--BorderRadius);
26479
+ transition: background-color var(--pf-v6-c-tabs__link--TransitionDuration--background-color) var(--pf-v6-c-tabs__link--TransitionTimingFunction--background-color);
26420
26480
  }
26421
26481
  .pf-v6-c-tabs__item.pf-m-action, .pf-v6-c-tabs__link {
26422
26482
  --pf-v6-c-tabs__link--after--BorderBlockEndWidth: var(--pf-v6-c-tabs__link--after--BorderWidth);
@@ -26729,6 +26789,30 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
26729
26789
  }
26730
26790
  }
26731
26791
 
26792
+ @media (prefers-reduced-motion: no-preference) {
26793
+ .pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__link::after,
26794
+ .pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__item.pf-m-action::after {
26795
+ content: revert;
26796
+ }
26797
+ .pf-v6-c-tabs:not(.pf-m-box) .pf-v6-c-tabs__list::after {
26798
+ position: absolute;
26799
+ inset-block-start: var(--pf-v6-c-tabs--link-accent--InsetBlockStart, var(--pf-v6-c-tabs--link-accent--start));
26800
+ inset-block-end: var(--pf-v6-c-tabs--link-accent--InsetBlockEnd);
26801
+ inset-inline-start: var(--pf-v6-c-tabs--link-accent--InsetInlineStart, var(--pf-v6-c-tabs--link-accent--start));
26802
+ width: var(--pf-v6-c-tabs--link-accent--Width, var(--pf-v6-c-tabs--link-accent--length));
26803
+ height: var(--pf-v6-c-tabs--link-accent--Height, var(--pf-v6-c-tabs--link-accent--length));
26804
+ content: "";
26805
+ border: 0 solid var(--pf-v6-c-tabs--link-accent--color);
26806
+ border-block-end-width: var(--pf-v6-c-tabs--link-accent--BorderBlockEndWidth);
26807
+ border-inline-start-width: var(--pf-v6-c-tabs--link-accent--BorderInlineStartWidth);
26808
+ transition-timing-function: var(--pf-v6-c-tabs--link-accent--TransitionTimingFunction);
26809
+ transition-duration: var(--pf-v6-c-tabs--link-accent--TransitionDuration);
26810
+ transition-property: --pf-v6-c-tabs--link-accent--length, --pf-v6-c-tabs--link-accent--start, width;
26811
+ }
26812
+ .pf-v6-c-tabs.pf-m-initializing-accent {
26813
+ --pf-v6-c-tabs--link-accent--TransitionDuration: 0;
26814
+ }
26815
+ }
26732
26816
  .pf-v6-c-text-input-group {
26733
26817
  --pf-v6-c-text-input-group--BackgroundColor: var(--pf-t--global--background--color--control--default);
26734
26818
  --pf-v6-c-text-input-group--BorderColor: var(--pf-t--global--border--color--default);
@@ -29340,6 +29424,11 @@ thead .pf-v6-c-table__check .pf-v6-c-radio.pf-m-standalone {
29340
29424
  align-items: baseline;
29341
29425
  min-width: var(--pf-v6-c-truncate--MinWidth);
29342
29426
  }
29427
+ .pf-v6-c-truncate.pf-m-fixed {
29428
+ display: inline;
29429
+ align-items: revert;
29430
+ min-width: revert;
29431
+ }
29343
29432
 
29344
29433
  .pf-v6-c-truncate__start,
29345
29434
  .pf-v6-c-truncate__end {