@carbon/ibm-products 2.2.0 → 2.3.0

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 (225) hide show
  1. package/css/index-full-carbon.css +965 -434
  2. package/css/index-full-carbon.css.map +1 -1
  3. package/css/index-full-carbon.min.css +4 -4
  4. package/css/index-full-carbon.min.css.map +1 -1
  5. package/css/index-without-carbon-released-only.css +354 -155
  6. package/css/index-without-carbon-released-only.css.map +1 -1
  7. package/css/index-without-carbon-released-only.min.css +2 -2
  8. package/css/index-without-carbon-released-only.min.css.map +1 -1
  9. package/css/index-without-carbon.css +600 -236
  10. package/css/index-without-carbon.css.map +1 -1
  11. package/css/index-without-carbon.min.css +4 -4
  12. package/css/index-without-carbon.min.css.map +1 -1
  13. package/css/index.css +516 -293
  14. package/css/index.css.map +1 -1
  15. package/css/index.min.css +4 -4
  16. package/css/index.min.css.map +1 -1
  17. package/es/components/APIKeyModal/APIKeyModal.docs-page.js +26 -0
  18. package/es/components/AboutModal/AboutModal.docs-page.js +21 -0
  19. package/es/components/AboutModal/AboutModal.js +2 -4
  20. package/es/components/ActionBar/ActionBar.js +2 -6
  21. package/es/components/AddSelect/AddSelectFormControl.js +6 -6
  22. package/es/components/AddSelect/AddSelectRow.js +15 -5
  23. package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +5 -6
  24. package/es/components/ButtonMenu/ButtonMenu.js +4 -4
  25. package/es/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +3 -9
  26. package/es/components/Cascade/Cascade.docs-page.js +22 -0
  27. package/es/components/Cascade/Cascade.js +11 -1
  28. package/es/components/CreateFullPage/CreateFullPage.docs-page.js +39 -0
  29. package/es/components/CreateFullPage/CreateFullPage.js +13 -0
  30. package/es/components/CreateModal/CreateModal.docs-page.js +24 -0
  31. package/es/components/CreateModal/CreateModal.js +7 -0
  32. package/es/components/CreateSidePanel/CreateSidePanel.docs-page.js +18 -0
  33. package/es/components/CreateSidePanel/CreateSidePanel.js +1 -1
  34. package/es/components/CreateTearsheet/CreateTearsheet.docs-page.js +29 -0
  35. package/es/components/DataSpreadsheet/DataSpreadsheet.js +3 -3
  36. package/es/components/Datagrid/Datagrid/DatagridContent.js +1 -1
  37. package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +3 -3
  38. package/es/components/Datagrid/Datagrid/DatagridToolbar.js +25 -10
  39. package/es/components/Datagrid/Datagrid/DatagridVirtualBody.js +1 -3
  40. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +1 -1
  41. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +39 -47
  42. package/es/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +20 -24
  43. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/index.js +2 -2
  44. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +13 -0
  45. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +44 -15
  46. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +16 -30
  47. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +2 -2
  48. package/es/components/Datagrid/index.js +2 -1
  49. package/es/components/Datagrid/useActionsColumn.js +10 -7
  50. package/es/components/Datagrid/useCustomizeColumns.js +9 -7
  51. package/es/components/Datagrid/useExpandedRow.js +11 -7
  52. package/es/components/Datagrid/useFiltering.js +12 -8
  53. package/es/components/Datagrid/useInlineEdit.js +3 -0
  54. package/es/components/Datagrid/useNestedRows.js +10 -6
  55. package/es/components/Datagrid/useStickyColumn.js +10 -3
  56. package/es/components/Datagrid/utils/DatagridActions.js +12 -20
  57. package/es/components/EditFullPage/EditFullPage.docs-page.js +39 -0
  58. package/es/components/EditFullPage/EditFullPage.js +2 -1
  59. package/es/components/EditSidePanel/EditSidePanel.js +1 -1
  60. package/es/components/EditTearsheet/EditTearsheet.docs-page.js +25 -0
  61. package/es/components/EditTearsheet/EditTearsheet.js +4 -0
  62. package/es/components/EditTearsheetNarrow/EditTearsheetNarrow.js +1 -1
  63. package/es/components/EditUpdateCards/EditUpdateCards.js +3 -2
  64. package/es/components/EmptyStates/EmptyState.js +4 -0
  65. package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +4 -0
  66. package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +4 -0
  67. package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +4 -0
  68. package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +4 -0
  69. package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +4 -0
  70. package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +4 -0
  71. package/es/components/ExampleComponent/ExampleComponent.docs-page.js +22 -0
  72. package/es/components/ExportModal/ExportModal.js +4 -0
  73. package/es/components/HTTPErrors/HTTPError403/HTTPError403.js +6 -0
  74. package/es/components/HTTPErrors/HTTPError404/HTTPError404.js +6 -0
  75. package/es/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +6 -0
  76. package/es/components/ImportModal/ImportModal.docs-page.js +18 -0
  77. package/es/components/ImportModal/ImportModal.js +13 -6
  78. package/es/components/MultiAddSelect/MultiAddSelect.docs-page.js +17 -0
  79. package/es/components/MultiAddSelect/MultiAddSelect.js +4 -0
  80. package/es/components/NotificationsPanel/preview-components/UnreadNotificationBell.js +2 -17
  81. package/es/components/PageHeader/PageHeader.js +2 -6
  82. package/es/components/PageHeader/PageHeaderUtils.js +2 -2
  83. package/es/components/RemoveModal/RemoveModal.docs-page.js +18 -0
  84. package/es/components/RemoveModal/RemoveModal.js +6 -0
  85. package/es/components/SidePanel/SidePanel.js +1 -3
  86. package/es/components/SingleAddSelect/SingleAddSelect.docs-page.js +15 -0
  87. package/es/components/SingleAddSelect/SingleAddSelect.js +4 -0
  88. package/es/components/StatusIcon/StatusIcon.docs-page.js +17 -0
  89. package/es/components/StatusIcon/StatusIcon.js +10 -0
  90. package/es/components/TagSet/TagSet.js +4 -7
  91. package/es/components/Tearsheet/TearsheetShell.js +11 -6
  92. package/es/components/Toolbar/Toolbar.docs-page.js +14 -0
  93. package/es/components/UserProfileImage/UserProfileImage.docs-page.js +17 -0
  94. package/es/components/UserProfileImage/UserProfileImage.js +14 -3
  95. package/es/components/WebTerminal/WebTerminal.docs-page.js +52 -0
  96. package/es/components/WebTerminal/WebTerminal.js +4 -0
  97. package/es/components/index.js +1 -1
  98. package/es/global/js/hooks/useCreateComponentStepChange.js +16 -15
  99. package/es/global/js/hooks/useResizeObserver.js +14 -28
  100. package/es/global/js/package-settings.js +14 -1
  101. package/es/global/js/utils/StoryDocsPage.js +218 -0
  102. package/es/global/js/utils/story-helper.js +108 -6
  103. package/lib/components/APIKeyModal/APIKeyModal.docs-page.js +37 -0
  104. package/lib/components/AboutModal/AboutModal.docs-page.js +32 -0
  105. package/lib/components/AboutModal/AboutModal.js +2 -4
  106. package/lib/components/ActionBar/ActionBar.js +2 -6
  107. package/lib/components/AddSelect/AddSelectFormControl.js +6 -6
  108. package/lib/components/AddSelect/AddSelectRow.js +15 -5
  109. package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +5 -6
  110. package/lib/components/ButtonMenu/ButtonMenu.js +4 -4
  111. package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +3 -9
  112. package/lib/components/Cascade/Cascade.docs-page.js +33 -0
  113. package/lib/components/Cascade/Cascade.js +11 -1
  114. package/lib/components/CreateFullPage/CreateFullPage.docs-page.js +50 -0
  115. package/lib/components/CreateFullPage/CreateFullPage.js +13 -0
  116. package/lib/components/CreateModal/CreateModal.docs-page.js +35 -0
  117. package/lib/components/CreateModal/CreateModal.js +7 -0
  118. package/lib/components/CreateSidePanel/CreateSidePanel.docs-page.js +29 -0
  119. package/lib/components/CreateSidePanel/CreateSidePanel.js +1 -1
  120. package/lib/components/CreateTearsheet/CreateTearsheet.docs-page.js +40 -0
  121. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +3 -3
  122. package/lib/components/Datagrid/Datagrid/DatagridContent.js +1 -1
  123. package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +3 -3
  124. package/lib/components/Datagrid/Datagrid/DatagridToolbar.js +25 -10
  125. package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +1 -3
  126. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/TearsheetWrapper.js +1 -1
  127. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterFlyout.js +37 -45
  128. package/lib/components/Datagrid/Datagrid/addons/Filtering/FilterPanel.js +20 -24
  129. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/index.js +6 -6
  130. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilterContext.js +20 -0
  131. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +42 -13
  132. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +16 -30
  133. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +2 -2
  134. package/lib/components/Datagrid/index.js +8 -1
  135. package/lib/components/Datagrid/useActionsColumn.js +12 -7
  136. package/lib/components/Datagrid/useCustomizeColumns.js +10 -8
  137. package/lib/components/Datagrid/useExpandedRow.js +9 -6
  138. package/lib/components/Datagrid/useFiltering.js +10 -7
  139. package/lib/components/Datagrid/useInlineEdit.js +3 -0
  140. package/lib/components/Datagrid/useNestedRows.js +9 -6
  141. package/lib/components/Datagrid/useStickyColumn.js +10 -3
  142. package/lib/components/Datagrid/utils/DatagridActions.js +49 -57
  143. package/lib/components/EditFullPage/EditFullPage.docs-page.js +50 -0
  144. package/lib/components/EditFullPage/EditFullPage.js +2 -1
  145. package/lib/components/EditSidePanel/EditSidePanel.js +1 -1
  146. package/lib/components/EditTearsheet/EditTearsheet.docs-page.js +36 -0
  147. package/lib/components/EditTearsheet/EditTearsheet.js +4 -0
  148. package/lib/components/EditTearsheetNarrow/EditTearsheetNarrow.js +1 -1
  149. package/lib/components/EditUpdateCards/EditUpdateCards.js +3 -2
  150. package/lib/components/EmptyStates/EmptyState.js +4 -0
  151. package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +4 -0
  152. package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +4 -0
  153. package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +4 -0
  154. package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +4 -0
  155. package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +4 -0
  156. package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +4 -0
  157. package/lib/components/ExampleComponent/ExampleComponent.docs-page.js +33 -0
  158. package/lib/components/ExportModal/ExportModal.js +4 -0
  159. package/lib/components/HTTPErrors/HTTPError403/HTTPError403.js +6 -0
  160. package/lib/components/HTTPErrors/HTTPError404/HTTPError404.js +6 -0
  161. package/lib/components/HTTPErrors/HTTPErrorOther/HTTPErrorOther.js +6 -0
  162. package/lib/components/ImportModal/ImportModal.docs-page.js +26 -0
  163. package/lib/components/ImportModal/ImportModal.js +13 -6
  164. package/lib/components/MultiAddSelect/MultiAddSelect.docs-page.js +25 -0
  165. package/lib/components/MultiAddSelect/MultiAddSelect.js +4 -0
  166. package/lib/components/NotificationsPanel/preview-components/UnreadNotificationBell.js +2 -17
  167. package/lib/components/PageHeader/PageHeader.js +2 -6
  168. package/lib/components/PageHeader/PageHeaderUtils.js +2 -2
  169. package/lib/components/RemoveModal/RemoveModal.docs-page.js +26 -0
  170. package/lib/components/RemoveModal/RemoveModal.js +6 -0
  171. package/lib/components/SidePanel/SidePanel.js +1 -3
  172. package/lib/components/SingleAddSelect/SingleAddSelect.docs-page.js +23 -0
  173. package/lib/components/SingleAddSelect/SingleAddSelect.js +4 -0
  174. package/lib/components/StatusIcon/StatusIcon.docs-page.js +28 -0
  175. package/lib/components/StatusIcon/StatusIcon.js +10 -0
  176. package/lib/components/TagSet/TagSet.js +4 -7
  177. package/lib/components/Tearsheet/TearsheetShell.js +11 -6
  178. package/lib/components/Toolbar/Toolbar.docs-page.js +25 -0
  179. package/lib/components/UserProfileImage/UserProfileImage.docs-page.js +28 -0
  180. package/lib/components/UserProfileImage/UserProfileImage.js +14 -3
  181. package/lib/components/WebTerminal/WebTerminal.docs-page.js +63 -0
  182. package/lib/components/WebTerminal/WebTerminal.js +4 -0
  183. package/lib/components/index.js +6 -0
  184. package/lib/global/js/hooks/useCreateComponentStepChange.js +16 -15
  185. package/lib/global/js/hooks/useResizeObserver.js +13 -27
  186. package/lib/global/js/package-settings.js +14 -1
  187. package/lib/global/js/utils/StoryDocsPage.js +225 -0
  188. package/lib/global/js/utils/story-helper.js +115 -7
  189. package/package.json +4 -4
  190. package/scss/components/AddSelect/_add-select.scss +10 -6
  191. package/scss/components/BreadcrumbWithOverflow/_breadcrumb-with-overflow.scss +0 -1
  192. package/scss/components/ButtonMenu/_button-menu.scss +32 -1
  193. package/scss/components/Cascade/_storybook-styles.scss +3 -2
  194. package/scss/components/CreateFullPage/_create-full-page.scss +3 -3
  195. package/scss/components/CreateModal/_create-modal.scss +3 -3
  196. package/scss/components/CreateSidePanel/_create-side-panel.scss +4 -4
  197. package/scss/components/CreateTearsheet/_create-tearsheet.scss +2 -2
  198. package/scss/components/CreateTearsheet/_storybook-styles.scss +1 -1
  199. package/scss/components/CreateTearsheetNarrow/_create-tearsheet-narrow.scss +2 -2
  200. package/scss/components/DataSpreadsheet/_data-spreadsheet.scss +5 -5
  201. package/scss/components/DataSpreadsheet/_storybook-styles.scss +6 -0
  202. package/scss/components/Datagrid/_datagrid.scss +4 -2
  203. package/scss/components/Datagrid/_storybook-styles.scss +18 -4
  204. package/scss/components/Datagrid/styles/_datagrid.scss +26 -13
  205. package/scss/components/Datagrid/styles/addons/_FilterFlyout.scss +7 -0
  206. package/scss/components/Datagrid/styles/addons/_FilterPanel.scss +4 -0
  207. package/scss/components/EditSidePanel/_edit-side-panel.scss +2 -2
  208. package/scss/components/EditTearsheet/_edit-tearsheet.scss +2 -2
  209. package/scss/components/EditTearsheet/_storybook-styles.scss +1 -1
  210. package/scss/components/ImportModal/_import-modal.scss +1 -1
  211. package/scss/components/NotificationsPanel/_notifications-panel.scss +3 -3
  212. package/scss/components/NotificationsPanel/_storybook-styles.scss +10 -2
  213. package/scss/components/OptionsTile/_storybook-styles.scss +1 -1
  214. package/scss/components/PageHeader/_page-header.scss +4 -5
  215. package/scss/components/PageHeader/_storybook-styles.scss +24 -14
  216. package/scss/components/Saving/_saving.scss +1 -1
  217. package/scss/components/SidePanel/_side-panel.scss +3 -5
  218. package/scss/components/TagSet/_tag-set.scss +1 -1
  219. package/scss/components/Tearsheet/_tearsheet.scss +9 -8
  220. package/scss/components/UserProfileImage/_user-profile-image.scss +2 -2
  221. package/scss/components/WebTerminal/_storybook-styles.scss +11 -1
  222. package/scss/global/styles/_display-box.scss +1 -0
  223. package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useInitialStateFromFilters.js +0 -21
  224. package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useInitialStateFromFilters.js +0 -30
  225. package/scss/components/HTTPErrors/_storybook-styles.scss +0 -6
package/css/index.css CHANGED
@@ -76,8 +76,6 @@
76
76
  .cds--copy-btn {
77
77
  position: relative;
78
78
  display: flex;
79
- width: 2.5rem;
80
- height: 2.5rem;
81
79
  align-items: center;
82
80
  justify-content: center;
83
81
  padding: 0;
@@ -487,11 +485,13 @@
487
485
  transition: all 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
488
486
  }
489
487
 
488
+ .cds--btn > .cds--snippet__icon {
489
+ margin-block-start: 0;
490
+ }
491
+
490
492
  .cds--copy-btn {
491
493
  display: flex;
492
494
  overflow: visible;
493
- width: 2.5rem;
494
- height: 2.5rem;
495
495
  align-items: center;
496
496
  justify-content: center;
497
497
  padding: 0;
@@ -534,16 +534,13 @@
534
534
  right: 0;
535
535
  }
536
536
 
537
- .cds--snippet--inline.cds--btn--md.cds--btn--icon-only {
538
- padding-right: 0;
539
- padding-left: 0;
540
- }
541
-
542
- .cds--snippet--inline.cds--btn--md {
543
- min-height: 1.25rem;
537
+ .cds--snippet--inline.cds--btn {
538
+ width: initial;
539
+ height: 1.25rem;
540
+ padding-inline: 0;
544
541
  }
545
542
 
546
- .cds--snippet--inline.cds--btn--primary:hover {
543
+ .cds--snippet--inline.cds--btn.cds--btn--primary:hover {
547
544
  color: var(--cds-text-primary, #161616);
548
545
  }
549
546
 
@@ -552,12 +549,8 @@
552
549
  right: 0.5rem;
553
550
  }
554
551
 
555
- .cds--snippet--multi .cds--copy-btn.cds--btn--md {
552
+ .cds--snippet--multi .cds--copy-btn {
556
553
  z-index: 10;
557
- width: 2rem;
558
- height: 2rem;
559
- min-height: 2rem;
560
- padding: 0;
561
554
  }
562
555
 
563
556
  .cds--snippet-btn--expand {
@@ -807,7 +800,167 @@
807
800
  }
808
801
 
809
802
  /* stylelint-enable */
803
+ :root {
804
+ --cds-layout-size-height-xs: 1.5rem;
805
+ --cds-layout-size-height-sm: 2rem;
806
+ --cds-layout-size-height-md: 2.5rem;
807
+ --cds-layout-size-height-lg: 3rem;
808
+ --cds-layout-size-height-xl: 4rem;
809
+ --cds-layout-size-height-2xl: 5rem;
810
+ --cds-layout-size-height-min: 0px;
811
+ --cds-layout-size-height-max: 999999999px;
812
+ --cds-layout-density-padding-inline-condensed: 0.5rem;
813
+ --cds-layout-density-padding-inline-normal: 1rem;
814
+ --cds-layout-density-padding-inline-min: 0px;
815
+ --cds-layout-density-padding-inline-max: 999999999px;
816
+ }
817
+
818
+ .cds--layout--size-xs {
819
+ --cds-layout-size-height-context: var(--cds-layout-size-height-xs, 1.5rem);
820
+ --cds-layout-size-height: var(--cds-layout-size-height-context);
821
+ }
822
+
823
+ .cds--layout-constraint--size\:default-xs {
824
+ --cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-xs, 1.5rem));
825
+ }
826
+
827
+ .cds--layout-constraint--size\:min-xs {
828
+ --cds-layout-size-height-min: var(--cds-layout-size-height-xs, 1.5rem);
829
+ }
830
+
831
+ .cds--layout-constraint--size\:max-xs {
832
+ --cds-layout-size-height-max: var(--cds-layout-size-height-xs, 1.5rem);
833
+ }
834
+
835
+ .cds--layout--size-sm {
836
+ --cds-layout-size-height-context: var(--cds-layout-size-height-sm, 2rem);
837
+ --cds-layout-size-height: var(--cds-layout-size-height-context);
838
+ }
839
+
840
+ .cds--layout-constraint--size\:default-sm {
841
+ --cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-sm, 2rem));
842
+ }
843
+
844
+ .cds--layout-constraint--size\:min-sm {
845
+ --cds-layout-size-height-min: var(--cds-layout-size-height-sm, 2rem);
846
+ }
847
+
848
+ .cds--layout-constraint--size\:max-sm {
849
+ --cds-layout-size-height-max: var(--cds-layout-size-height-sm, 2rem);
850
+ }
851
+
852
+ .cds--layout--size-md {
853
+ --cds-layout-size-height-context: var(--cds-layout-size-height-md, 2.5rem);
854
+ --cds-layout-size-height: var(--cds-layout-size-height-context);
855
+ }
856
+
857
+ .cds--layout-constraint--size\:default-md {
858
+ --cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-md, 2.5rem));
859
+ }
860
+
861
+ .cds--layout-constraint--size\:min-md {
862
+ --cds-layout-size-height-min: var(--cds-layout-size-height-md, 2.5rem);
863
+ }
864
+
865
+ .cds--layout-constraint--size\:max-md {
866
+ --cds-layout-size-height-max: var(--cds-layout-size-height-md, 2.5rem);
867
+ }
868
+
869
+ .cds--layout--size-lg {
870
+ --cds-layout-size-height-context: var(--cds-layout-size-height-lg, 3rem);
871
+ --cds-layout-size-height: var(--cds-layout-size-height-context);
872
+ }
873
+
874
+ .cds--layout-constraint--size\:default-lg {
875
+ --cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-lg, 3rem));
876
+ }
877
+
878
+ .cds--layout-constraint--size\:min-lg {
879
+ --cds-layout-size-height-min: var(--cds-layout-size-height-lg, 3rem);
880
+ }
881
+
882
+ .cds--layout-constraint--size\:max-lg {
883
+ --cds-layout-size-height-max: var(--cds-layout-size-height-lg, 3rem);
884
+ }
885
+
886
+ .cds--layout--size-xl {
887
+ --cds-layout-size-height-context: var(--cds-layout-size-height-xl, 4rem);
888
+ --cds-layout-size-height: var(--cds-layout-size-height-context);
889
+ }
890
+
891
+ .cds--layout-constraint--size\:default-xl {
892
+ --cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-xl, 4rem));
893
+ }
894
+
895
+ .cds--layout-constraint--size\:min-xl {
896
+ --cds-layout-size-height-min: var(--cds-layout-size-height-xl, 4rem);
897
+ }
898
+
899
+ .cds--layout-constraint--size\:max-xl {
900
+ --cds-layout-size-height-max: var(--cds-layout-size-height-xl, 4rem);
901
+ }
902
+
903
+ .cds--layout--size-2xl {
904
+ --cds-layout-size-height-context: var(--cds-layout-size-height-2xl, 5rem);
905
+ --cds-layout-size-height: var(--cds-layout-size-height-context);
906
+ }
907
+
908
+ .cds--layout-constraint--size\:default-2xl {
909
+ --cds-layout-size-height: var(--cds-layout-size-height-context, var(--cds-layout-size-height-2xl, 5rem));
910
+ }
911
+
912
+ .cds--layout-constraint--size\:min-2xl {
913
+ --cds-layout-size-height-min: var(--cds-layout-size-height-2xl, 5rem);
914
+ }
915
+
916
+ .cds--layout-constraint--size\:max-2xl {
917
+ --cds-layout-size-height-max: var(--cds-layout-size-height-2xl, 5rem);
918
+ }
919
+
920
+ .cds--layout--density-condensed {
921
+ --cds-layout-density-padding-inline-context: var(--cds-layout-density-padding-inline-condensed, 0.5rem);
922
+ --cds-layout-density-padding-inline: var(--cds-layout-density-padding-inline-context);
923
+ }
924
+
925
+ .cds--layout-constraint--density\:default-condensed {
926
+ --cds-layout-density-padding-inline: var(--cds-layout-density-padding-inline-context, var(--cds-layout-density-padding-inline-condensed, 0.5rem));
927
+ }
928
+
929
+ .cds--layout-constraint--density\:min-condensed {
930
+ --cds-layout-density-padding-inline-min: var(--cds-layout-density-padding-inline-condensed, 0.5rem);
931
+ }
932
+
933
+ .cds--layout-constraint--density\:max-condensed {
934
+ --cds-layout-density-padding-inline-max: var(--cds-layout-density-padding-inline-condensed, 0.5rem);
935
+ }
936
+
937
+ .cds--layout--density-normal {
938
+ --cds-layout-density-padding-inline-context: var(--cds-layout-density-padding-inline-normal, 1rem);
939
+ --cds-layout-density-padding-inline: var(--cds-layout-density-padding-inline-context);
940
+ }
941
+
942
+ .cds--layout-constraint--density\:default-normal {
943
+ --cds-layout-density-padding-inline: var(--cds-layout-density-padding-inline-context, var(--cds-layout-density-padding-inline-normal, 1rem));
944
+ }
945
+
946
+ .cds--layout-constraint--density\:min-normal {
947
+ --cds-layout-density-padding-inline-min: var(--cds-layout-density-padding-inline-normal, 1rem);
948
+ }
949
+
950
+ .cds--layout-constraint--density\:max-normal {
951
+ --cds-layout-density-padding-inline-max: var(--cds-layout-density-padding-inline-normal, 1rem);
952
+ }
953
+
810
954
  .cds--btn {
955
+ --cds-layout-size-height-local: clamp(var(--cds-layout-size-height-min), var(--cds-layout-size-height, var(--cds-layout-size-height-lg)), var(--cds-layout-size-height-max));
956
+ --cds-layout-density-padding-inline-local: clamp(var(--cds-layout-density-padding-inline-min), var(--cds-layout-density-padding-inline, var(--cds-layout-density-padding-inline-normal)), var(--cds-layout-density-padding-inline-max));
957
+ --temp-1lh: (
958
+ var(--cds-body-compact-01-line-height, 1.28572) * 1em
959
+ );
960
+ --temp-padding-block-max: calc(
961
+ (var(--cds-layout-size-height-lg) - var(--temp-1lh)) / 2 -
962
+ 0.0625rem
963
+ );
811
964
  box-sizing: border-box;
812
965
  padding: 0;
813
966
  border: 0;
@@ -823,15 +976,16 @@
823
976
  display: inline-flex;
824
977
  width: max-content;
825
978
  max-width: 20rem;
826
- min-height: 3rem;
979
+ height: var(--cds-layout-size-height-local);
827
980
  flex-shrink: 0;
828
- align-items: center;
829
981
  justify-content: space-between;
830
- padding: calc(0.875rem - 3px) calc(4rem - 1px) calc(0.875rem - 3px) calc(1rem - 1px);
831
982
  margin: 0;
832
983
  border-radius: 0;
833
984
  cursor: pointer;
834
985
  outline: none;
986
+ padding-block-start: min((var(--cds-layout-size-height-local) - var(--temp-1lh)) / 2 - 0.0625rem, var(--temp-padding-block-max));
987
+ padding-inline-end: calc(var(--cds-layout-density-padding-inline-local) * 3 + 1rem - 0.0625rem);
988
+ padding-inline-start: calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);
835
989
  text-align: left;
836
990
  text-decoration: none;
837
991
  transition: background 70ms cubic-bezier(0, 0, 0.38, 0.9), box-shadow 70ms cubic-bezier(0, 0, 0.38, 0.9), border-color 70ms cubic-bezier(0, 0, 0.38, 0.9), outline 70ms cubic-bezier(0, 0, 0.38, 0.9);
@@ -851,10 +1005,12 @@
851
1005
  }
852
1006
  .cds--btn .cds--btn__icon {
853
1007
  position: absolute;
854
- right: 1rem;
1008
+ top: min((var(--cds-layout-size-height-local) - 1rem) / 2 - 0.0625rem, var(--temp-padding-block-max));
1009
+ right: var(--cds-layout-density-padding-inline-local);
855
1010
  width: 1rem;
856
1011
  height: 1rem;
857
1012
  flex-shrink: 0;
1013
+ margin-block-start: 0.0625rem;
858
1014
  }
859
1015
 
860
1016
  .cds--btn::-moz-focus-inner {
@@ -957,7 +1113,7 @@
957
1113
  border-color: transparent;
958
1114
  background-color: transparent;
959
1115
  color: var(--cds-link-primary, #0f62fe);
960
- padding: calc(0.875rem - 3px) 1rem;
1116
+ padding-inline-end: calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);
961
1117
  }
962
1118
  .cds--btn--ghost:hover {
963
1119
  background-color: var(--cds-layer-hover);
@@ -989,19 +1145,19 @@
989
1145
  color: var(--cds-text-on-color-disabled, #8d8d8d);
990
1146
  outline: none;
991
1147
  }
992
- .cds--btn--ghost.cds--btn--sm {
993
- padding: calc(0.375rem - 3px) 1rem;
994
- }
995
- .cds--btn--ghost.cds--btn--field, .cds--btn--ghost.cds--btn--md {
996
- padding: calc(0.675rem - 3px) 1rem;
997
- }
998
1148
  .cds--btn--ghost:not([disabled]) svg {
999
1149
  fill: var(--cds-icon-primary, #161616);
1000
1150
  }
1001
1151
 
1002
1152
  .cds--btn--icon-only {
1003
- padding-right: 0.9375rem;
1004
- padding-left: 0.9375rem;
1153
+ width: var(--cds-layout-size-height-local);
1154
+ height: var(--cds-layout-size-height-local);
1155
+ justify-content: center;
1156
+ padding: 0;
1157
+ padding-block-start: min((var(--cds-layout-size-height-local) - 1rem) / 2 - 0.0625rem, var(--temp-padding-block-max));
1158
+ }
1159
+ .cds--btn--icon-only > :first-child {
1160
+ margin-block-start: 0.0625rem;
1005
1161
  }
1006
1162
  .cds--btn--icon-only .cds--btn__icon {
1007
1163
  position: static;
@@ -1033,15 +1189,12 @@
1033
1189
  cursor: not-allowed;
1034
1190
  }
1035
1191
 
1036
- .cds--btn--field.cds--btn--icon-only,
1037
- .cds--btn--md.cds--btn--icon-only {
1038
- padding-right: 0.6875rem;
1039
- padding-left: 0.6875rem;
1192
+ .cds--icon-tooltip--disabled .cds--tooltip-trigger__wrapper {
1193
+ cursor: not-allowed;
1040
1194
  }
1041
1195
 
1042
- .cds--btn--sm.cds--btn--icon-only {
1043
- padding-right: 0.4375rem;
1044
- padding-left: 0.4375rem;
1196
+ .cds--icon-tooltip--disabled .cds--btn--icon-only[disabled] {
1197
+ pointer-events: none;
1045
1198
  }
1046
1199
 
1047
1200
  .cds--btn--danger {
@@ -1113,7 +1266,7 @@
1113
1266
  border-color: transparent;
1114
1267
  background-color: transparent;
1115
1268
  color: var(--cds-button-danger-secondary, #da1e28);
1116
- padding: calc(0.875rem - 3px) 1rem;
1269
+ padding-inline-end: calc(var(--cds-layout-density-padding-inline-local) - 0.0625rem);
1117
1270
  }
1118
1271
  .cds--btn--danger--ghost:hover {
1119
1272
  background-color: var(--cds-button-danger-hover, #b81921);
@@ -1142,46 +1295,12 @@
1142
1295
  color: var(--cds-text-disabled, rgba(22, 22, 22, 0.25));
1143
1296
  outline: none;
1144
1297
  }
1145
- .cds--btn--danger--ghost.cds--btn--sm {
1146
- padding: calc(0.375rem - 3px) 1rem;
1147
- }
1148
- .cds--btn--danger--ghost.cds--btn--field, .cds--btn--danger--ghost.cds--btn--md {
1149
- padding: calc(0.675rem - 3px) 1rem;
1150
- }
1151
-
1152
- .cds--btn--sm {
1153
- min-height: 2rem;
1154
- padding: calc(0.375rem - 3px) calc(4rem - 4px) calc(0.375rem - 3px) calc(1rem - 4px);
1155
- }
1156
-
1157
- .cds--btn--2xl:not(.cds--btn--icon-only) {
1158
- align-items: baseline;
1159
- padding-top: 1rem;
1160
- padding-right: 4rem;
1161
- padding-left: 1rem;
1162
- min-height: 5rem;
1163
- }
1164
-
1165
- .cds--btn--xl:not(.cds--btn--icon-only) {
1166
- align-items: baseline;
1167
- padding-top: 1rem;
1168
- padding-right: 4rem;
1169
- padding-left: 1rem;
1170
- min-height: 4rem;
1171
- }
1172
-
1173
- .cds--btn--field,
1174
- .cds--btn--md {
1175
- min-height: 2.5rem;
1176
- padding: calc(0.675rem - 3px) calc(4rem - 4px) calc(0.675rem - 3px) calc(1rem - 4px);
1177
- }
1178
1298
 
1179
1299
  .cds--btn--expressive {
1180
1300
  font-size: var(--cds-body-compact-02-font-size, 1rem);
1181
1301
  font-weight: var(--cds-body-compact-02-font-weight, 400);
1182
1302
  line-height: var(--cds-body-compact-02-line-height, 1.375);
1183
1303
  letter-spacing: var(--cds-body-compact-02-letter-spacing, 0);
1184
- min-height: 3rem;
1185
1304
  }
1186
1305
 
1187
1306
  .cds--btn--icon-only.cds--btn--expressive {
@@ -1854,6 +1973,7 @@ input[data-invalid] ~ .cds--form-requirement,
1854
1973
  .cds--date-picker-input__wrapper--warn ~ .cds--form-requirement,
1855
1974
  .cds--date-picker-input__wrapper--invalid ~ .cds--form-requirement,
1856
1975
  .cds--time-picker--invalid ~ .cds--form-requirement,
1976
+ .cds--time-picker--warning ~ .cds--form-requirement,
1857
1977
  .cds--text-input__field-wrapper[data-invalid] ~ .cds--form-requirement,
1858
1978
  .cds--text-input__field-wrapper--warning ~ .cds--form-requirement,
1859
1979
  .cds--text-input__field-wrapper--warning > .cds--text-input ~ .cds--form-requirement,
@@ -1954,6 +2074,8 @@ fieldset[disabled] .cds--form__helper-text {
1954
2074
  }
1955
2075
 
1956
2076
  .cds--text-input {
2077
+ --cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-sm)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-lg)));
2078
+ --cds-layout-density-padding-inline-local: clamp(var(--cds-layout-density-padding-inline-min), var(--cds-layout-density-padding-inline, var(--cds-layout-density-padding-inline-normal)), var(--cds-layout-density-padding-inline-max));
1957
2079
  font-size: var(--cds-body-compact-01-font-size, 0.875rem);
1958
2080
  font-weight: var(--cds-body-compact-01-font-weight, 400);
1959
2081
  line-height: var(--cds-body-compact-01-line-height, 1.28572);
@@ -1961,8 +2083,8 @@ fieldset[disabled] .cds--form__helper-text {
1961
2083
  outline: 2px solid transparent;
1962
2084
  outline-offset: -2px;
1963
2085
  width: 100%;
1964
- height: 2.5rem;
1965
- padding: 0 1rem;
2086
+ height: var(--cds-layout-size-height-local);
2087
+ padding: 0 var(--cds-layout-density-padding-inline-local);
1966
2088
  border: none;
1967
2089
  border-bottom: 1px solid var(--cds-border-strong);
1968
2090
  background-color: var(--cds-field);
@@ -1999,14 +2121,6 @@ fieldset[disabled] .cds--form__helper-text {
1999
2121
  display: none;
2000
2122
  }
2001
2123
 
2002
- .cds--text-input--lg {
2003
- height: 3rem;
2004
- }
2005
-
2006
- .cds--text-input--sm {
2007
- height: 2rem;
2008
- }
2009
-
2010
2124
  .cds--password-input {
2011
2125
  padding-right: 2.5rem;
2012
2126
  }
@@ -2866,11 +2980,47 @@ fieldset[disabled] .cds--form__helper-text {
2866
2980
  .cds--tabs .cds--tabs__nav-item .cds--tabs__nav-link {
2867
2981
  transition: color 70ms cubic-bezier(0.2, 0, 0.38, 0.9), border-bottom-color 70ms cubic-bezier(0.2, 0, 0.38, 0.9), outline 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
2868
2982
  }
2983
+ .cds--tabs.cds--tabs--contained .cds--tabs__nav-item:not(.cds--tabs__nav-item--disabled) .cds--tabs__nav-item--icon .cds--tabs__nav-item--close-icon {
2984
+ padding: 1rem;
2985
+ margin-top: -0.5rem;
2986
+ margin-right: -1rem;
2987
+ margin-left: -1rem;
2988
+ }
2989
+ .cds--tabs.cds--tabs--contained .cds--tabs__nav-item:not(.cds--tabs__nav-item--disabled) .cds--tabs__nav-item--icon .cds--tabs__nav-item--close-icon:hover {
2990
+ background-color: inherit;
2991
+ }
2992
+ .cds--tabs.cds--tabs--contained .cds--tabs__nav-item:not(.cds--tabs__nav-item--disabled) .cds--tabs__nav-item--icon .cds--tabs__nav-item--close-icon svg {
2993
+ width: 24px;
2994
+ height: 24px;
2995
+ padding: 0.25rem;
2996
+ margin: -0.25rem;
2997
+ }
2998
+ .cds--tabs.cds--tabs--contained .cds--tabs__nav-item:not(.cds--tabs__nav-item--disabled) .cds--tabs__nav-item--icon .cds--tabs__nav-item--close-icon svg:hover {
2999
+ background-color: var(--cds-layer-accent-hover);
3000
+ }
3001
+ .cds--tabs.cds--tabs--contained .cds--tabs__nav-item:not(.cds--tabs__nav-item--disabled).cds--tabs__nav-item--selected .cds--tabs__nav-item--icon .cds--tabs__nav-item--close-icon svg:hover {
3002
+ background-color: var(--cds-layer-hover);
3003
+ }
3004
+ .cds--tabs .cds--tabs__nav-item:not(.cds--tabs__nav-item--disabled) .cds--tabs__nav-item--icon .cds--tabs__nav-item--close-icon:hover {
3005
+ background-color: var(--cds-background-hover, rgba(141, 141, 141, 0.12));
3006
+ }
2869
3007
  .cds--tabs .cds--tabs__nav-item--icon {
2870
3008
  display: flex;
2871
3009
  align-items: center;
2872
3010
  padding-left: 0.5rem;
2873
3011
  }
3012
+ .cds--tabs .cds--tabs__nav-item--icon .cds--tabs__nav-item--close-icon {
3013
+ padding: 0.25rem;
3014
+ margin: -0.25rem;
3015
+ line-height: 0;
3016
+ pointer-events: auto;
3017
+ }
3018
+ .cds--tabs .cds--tabs__nav-item--icon-left {
3019
+ display: flex;
3020
+ align-items: center;
3021
+ padding-right: 0.5rem;
3022
+ margin-top: -2px;
3023
+ }
2874
3024
  .cds--tabs.cds--tabs--contained .cds--tabs__nav-item--icon {
2875
3025
  padding-left: 1rem;
2876
3026
  }
@@ -2961,7 +3111,7 @@ fieldset[disabled] .cds--form__helper-text {
2961
3111
  border-bottom: 2px solid var(--cds-border-strong);
2962
3112
  color: var(--cds-text-primary, #161616);
2963
3113
  }
2964
- .cds--tabs.cds--tabs--contained .cds--tabs__nav-item:not(.cds--tabs__nav-item--disabled):hover {
3114
+ .cds--tabs.cds--tabs--contained .cds--tabs__nav-item:not(.cds--tabs__nav-item--selected):not(.cds--tabs__nav-item--disabled):not(.cds--tabs__nav-item--hover-off):hover {
2965
3115
  background-color: var(--cds-layer-accent-hover);
2966
3116
  color: var(--cds-text-primary, #161616);
2967
3117
  }
@@ -3342,6 +3492,10 @@ p.c4p--about-modal__copyright-text:first-child {
3342
3492
  background-color: var(--cds-layer-hover);
3343
3493
  }
3344
3494
 
3495
+ .cds--overflow-menu > :first-child {
3496
+ margin-block-start: 0;
3497
+ }
3498
+
3345
3499
  .cds--overflow-menu--sm {
3346
3500
  width: 2rem;
3347
3501
  height: 2rem;
@@ -3666,8 +3820,33 @@ a.cds--overflow-menu-options__btn::before {
3666
3820
  .c4p--button-menu {
3667
3821
  min-width: 160px;
3668
3822
  }
3823
+ .c4p--button-menu.c4p--button-menu__wrapper--primary, .c4p--button-menu.c4p--button-menu__wrapper--primary.cds--overflow-menu.cds--overflow-menu--open {
3824
+ background-color: var(--cds-button-primary, #0f62fe);
3825
+ }
3826
+ .c4p--button-menu.cds--overflow-menu.c4p--button-menu__wrapper--primary:hover {
3827
+ background-color: var(--cds-button-primary-hover, #0050e6);
3828
+ }
3829
+ .c4p--button-menu.c4p--button-menu__wrapper--tertiary, .c4p--button-menu.c4p--button-menu__wrapper--tertiary.cds--overflow-menu.cds--overflow-menu--open {
3830
+ background-color: var(--cds-button-tertiary, #0f62fe);
3831
+ }
3832
+ .c4p--button-menu.cds--overflow-menu.c4p--button-menu__wrapper--tertiary:hover {
3833
+ background-color: var(--cds-button-tertiary-hover, #0050e6);
3834
+ }
3835
+ .c4p--button-menu.c4p--button-menu__wrapper--ghost, .c4p--button-menu.c4p--button-menu__wrapper--ghost.cds--overflow-menu.cds--overflow-menu--open {
3836
+ background-color: transparent;
3837
+ }
3838
+ .c4p--button-menu.cds--overflow-menu.c4p--button-menu__wrapper--ghost:hover {
3839
+ background-color: var(--cds-layer-hover);
3840
+ }
3669
3841
  .c4p--button-menu .c4p--button-menu__trigger {
3842
+ font-size: var(--cds-body-compact-01-font-size, 0.875rem);
3843
+ font-weight: var(--cds-body-compact-01-font-weight, 400);
3844
+ line-height: var(--cds-body-compact-01-line-height, 1.28572);
3845
+ letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
3846
+ display: flex;
3670
3847
  width: 100%;
3848
+ align-items: center;
3849
+ justify-content: space-between;
3671
3850
  padding: 0 1rem;
3672
3851
  }
3673
3852
 
@@ -5951,18 +6130,18 @@ a.cds--overflow-menu-options__btn::before {
5951
6130
  }
5952
6131
 
5953
6132
  .c4p--create-full-page .c4p--create-full-page__step-subtitle {
5954
- font-size: var(--cds-productive-heading-01-font-size, 0.875rem);
5955
- font-weight: var(--cds-productive-heading-01-font-weight, 600);
5956
- line-height: var(--cds-productive-heading-01-line-height, 1.28572);
5957
- letter-spacing: var(--cds-productive-heading-01-letter-spacing, 0.16px);
6133
+ font-size: var(--cds-heading-compact-01-font-size, 0.875rem);
6134
+ font-weight: var(--cds-heading-compact-01-font-weight, 600);
6135
+ line-height: var(--cds-heading-compact-01-line-height, 1.28572);
6136
+ letter-spacing: var(--cds-heading-compact-01-letter-spacing, 0.16px);
5958
6137
  margin-bottom: 0.5rem;
5959
6138
  }
5960
6139
 
5961
6140
  .c4p--create-full-page .c4p--create-full-page__step-description {
5962
- font-size: var(--cds-body-long-01-font-size, 0.875rem);
5963
- font-weight: var(--cds-body-long-01-font-weight, 400);
5964
- line-height: var(--cds-body-long-01-line-height, 1.42857);
5965
- letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
6141
+ font-size: var(--cds-body-01-font-size, 0.875rem);
6142
+ font-weight: var(--cds-body-01-font-weight, 400);
6143
+ line-height: var(--cds-body-01-line-height, 1.42857);
6144
+ letter-spacing: var(--cds-body-01-letter-spacing, 0.16px);
5966
6145
  margin-bottom: 1.5rem;
5967
6146
  }
5968
6147
 
@@ -6051,10 +6230,10 @@ a.cds--overflow-menu-options__btn::before {
6051
6230
  }
6052
6231
 
6053
6232
  .c4p--create-full-page .c4p--create-full-page__step-title {
6054
- font-size: var(--cds-productive-heading-04-font-size, 1.75rem);
6055
- font-weight: var(--cds-productive-heading-04-font-weight, 400);
6056
- line-height: var(--cds-productive-heading-04-line-height, 1.28572);
6057
- letter-spacing: var(--cds-productive-heading-04-letter-spacing, 0);
6233
+ font-size: var(--cds-heading-04-font-size, 1.75rem);
6234
+ font-weight: var(--cds-heading-04-font-weight, 400);
6235
+ line-height: var(--cds-heading-04-line-height, 1.28572);
6236
+ letter-spacing: var(--cds-heading-04-letter-spacing, 0);
6058
6237
  margin-bottom: 1rem;
6059
6238
  }
6060
6239
 
@@ -6112,27 +6291,27 @@ a.cds--overflow-menu-options__btn::before {
6112
6291
  }
6113
6292
 
6114
6293
  .c4p--create-modal__title {
6115
- font-size: var(--cds-productive-heading-03-font-size, 1.25rem);
6116
- font-weight: var(--cds-productive-heading-03-font-weight, 400);
6117
- line-height: var(--cds-productive-heading-03-line-height, 1.4);
6118
- letter-spacing: var(--cds-productive-heading-03-letter-spacing, 0);
6294
+ font-size: var(--cds-heading-03-font-size, 1.25rem);
6295
+ font-weight: var(--cds-heading-03-font-weight, 400);
6296
+ line-height: var(--cds-heading-03-line-height, 1.4);
6297
+ letter-spacing: var(--cds-heading-03-letter-spacing, 0);
6119
6298
  margin-bottom: 0.25rem;
6120
6299
  }
6121
6300
 
6122
6301
  .c4p--create-modal__subtitle {
6123
- font-size: var(--cds-body-short-01-font-size, 0.875rem);
6124
- font-weight: var(--cds-body-short-01-font-weight, 400);
6125
- line-height: var(--cds-body-short-01-line-height, 1.28572);
6126
- letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
6302
+ font-size: var(--cds-body-compact-01-font-size, 0.875rem);
6303
+ font-weight: var(--cds-body-compact-01-font-weight, 400);
6304
+ line-height: var(--cds-body-compact-01-line-height, 1.28572);
6305
+ letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
6127
6306
  margin-bottom: 0.5rem;
6128
6307
  color: var(--cds-text-secondary, #525252);
6129
6308
  }
6130
6309
 
6131
6310
  .c4p--create-modal__description {
6132
- font-size: var(--cds-body-long-01-font-size, 0.875rem);
6133
- font-weight: var(--cds-body-long-01-font-weight, 400);
6134
- line-height: var(--cds-body-long-01-line-height, 1.42857);
6135
- letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
6311
+ font-size: var(--cds-body-01-font-size, 0.875rem);
6312
+ font-weight: var(--cds-body-01-font-weight, 400);
6313
+ line-height: var(--cds-body-01-line-height, 1.42857);
6314
+ letter-spacing: var(--cds-body-01-letter-spacing, 0.16px);
6136
6315
  padding-right: calc(20% - 1rem);
6137
6316
  margin: 0.5rem 0 1rem 0;
6138
6317
  }
@@ -6162,7 +6341,6 @@ a.cds--overflow-menu-options__btn::before {
6162
6341
  --c4p--side-panel--collapsed-title-y-position: 1rem;
6163
6342
  --c4p--side-panel--label-text-height: 0;
6164
6343
  position: fixed;
6165
- /* stylelint-disable-next-line function-no-unknown */
6166
6344
  z-index: 9000;
6167
6345
  top: 3rem;
6168
6346
  height: calc(100% - 3rem);
@@ -6341,10 +6519,10 @@ a.cds--overflow-menu-options__btn::before {
6341
6519
  top: calc(var(--c4p--side-panel--title-text-height) + var(--c4p--side-panel--subtitle-container-height));
6342
6520
  }
6343
6521
  .c4p--side-panel__container .c4p--side-panel__title-text {
6344
- font-size: var(--cds-productive-heading-03-font-size, 1.25rem);
6345
- font-weight: var(--cds-productive-heading-03-font-weight, 400);
6346
- line-height: var(--cds-productive-heading-03-line-height, 1.4);
6347
- letter-spacing: var(--cds-productive-heading-03-letter-spacing, 0);
6522
+ font-size: var(--cds-heading-03-font-size, 1.25rem);
6523
+ font-weight: var(--cds-heading-03-font-weight, 400);
6524
+ line-height: var(--cds-heading-03-line-height, 1.4);
6525
+ letter-spacing: var(--cds-heading-03-letter-spacing, 0);
6348
6526
  display: -webkit-box;
6349
6527
  overflow: hidden;
6350
6528
  padding-right: 3rem;
@@ -6369,10 +6547,10 @@ a.cds--overflow-menu-options__btn::before {
6369
6547
  white-space: nowrap;
6370
6548
  }
6371
6549
  .c4p--side-panel__container .c4p--side-panel__collapsed-title-text {
6372
- font-size: var(--cds-productive-heading-02-font-size, 1rem);
6373
- font-weight: var(--cds-productive-heading-02-font-weight, 600);
6374
- line-height: var(--cds-productive-heading-02-line-height, 1.375);
6375
- letter-spacing: var(--cds-productive-heading-02-letter-spacing, 0);
6550
+ font-size: var(--cds-heading-compact-02-font-size, 1rem);
6551
+ font-weight: var(--cds-heading-compact-02-font-weight, 600);
6552
+ line-height: var(--cds-heading-compact-02-line-height, 1.375);
6553
+ letter-spacing: var(--cds-heading-compact-02-letter-spacing, 0);
6376
6554
  display: -webkit-box;
6377
6555
  overflow: hidden;
6378
6556
  padding-right: 3rem;
@@ -6384,10 +6562,10 @@ a.cds--overflow-menu-options__btn::before {
6384
6562
  transform: translateY(var(--c4p--side-panel--collapsed-title-y-position));
6385
6563
  }
6386
6564
  .c4p--side-panel__container .c4p--side-panel__subtitle-text {
6387
- font-size: var(--cds-body-short-01-font-size, 0.875rem);
6388
- font-weight: var(--cds-body-short-01-font-weight, 400);
6389
- line-height: var(--cds-body-short-01-line-height, 1.28572);
6390
- letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
6565
+ font-size: var(--cds-body-compact-01-font-size, 0.875rem);
6566
+ font-weight: var(--cds-body-compact-01-font-weight, 400);
6567
+ line-height: var(--cds-body-compact-01-line-height, 1.28572);
6568
+ letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
6391
6569
  overflow: hidden;
6392
6570
  padding: 0 3rem 1rem 1rem;
6393
6571
  -webkit-box-orient: vertical;
@@ -6568,7 +6746,6 @@ a.cds--overflow-menu-options__btn::before {
6568
6746
 
6569
6747
  .c4p--side-panel__overlay {
6570
6748
  position: fixed;
6571
- /* stylelint-disable-next-line function-no-unknown */
6572
6749
  z-index: 6000;
6573
6750
  width: 100%;
6574
6751
  height: 100%;
@@ -6663,18 +6840,18 @@ a.cds--overflow-menu-options__btn::before {
6663
6840
  }
6664
6841
 
6665
6842
  .c4p--create-side-panel__form-title-text {
6666
- font-size: var(--cds-productive-heading-02-font-size, 1rem);
6667
- font-weight: var(--cds-productive-heading-02-font-weight, 600);
6668
- line-height: var(--cds-productive-heading-02-line-height, 1.375);
6669
- letter-spacing: var(--cds-productive-heading-02-letter-spacing, 0);
6843
+ font-size: var(--cds-heading-compact-02-font-size, 1rem);
6844
+ font-weight: var(--cds-heading-compact-02-font-weight, 600);
6845
+ line-height: var(--cds-heading-compact-02-line-height, 1.375);
6846
+ letter-spacing: var(--cds-heading-compact-02-letter-spacing, 0);
6670
6847
  padding-bottom: 0.5rem;
6671
6848
  }
6672
6849
 
6673
6850
  .c4p--create-side-panel__form-description-text {
6674
- font-size: var(--cds-body-long-01-font-size, 0.875rem);
6675
- font-weight: var(--cds-body-long-01-font-weight, 400);
6676
- line-height: var(--cds-body-long-01-line-height, 1.42857);
6677
- letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
6851
+ font-size: var(--cds-body-01-font-size, 0.875rem);
6852
+ font-weight: var(--cds-body-01-font-weight, 400);
6853
+ line-height: var(--cds-body-01-line-height, 1.42857);
6854
+ letter-spacing: var(--cds-body-01-letter-spacing, 0.16px);
6678
6855
  }
6679
6856
 
6680
6857
  .c4p--create-side-panel.c4p--side-panel .cds--btn.c4p--side-panel__close-button {
@@ -6682,18 +6859,18 @@ a.cds--overflow-menu-options__btn::before {
6682
6859
  }
6683
6860
 
6684
6861
  .c4p--create-side-panel__title {
6685
- font-size: var(--cds-productive-heading-03-font-size, 1.25rem);
6686
- font-weight: var(--cds-productive-heading-03-font-weight, 400);
6687
- line-height: var(--cds-productive-heading-03-line-height, 1.4);
6688
- letter-spacing: var(--cds-productive-heading-03-letter-spacing, 0);
6862
+ font-size: var(--cds-heading-03-font-size, 1.25rem);
6863
+ font-weight: var(--cds-heading-03-font-weight, 400);
6864
+ line-height: var(--cds-heading-03-line-height, 1.4);
6865
+ letter-spacing: var(--cds-heading-03-letter-spacing, 0);
6689
6866
  margin-bottom: 0.25rem;
6690
6867
  }
6691
6868
 
6692
6869
  .c4p--create-side-panel__subtitle {
6693
- font-size: var(--cds-body-short-01-font-size, 0.875rem);
6694
- font-weight: var(--cds-body-short-01-font-weight, 400);
6695
- line-height: var(--cds-body-short-01-line-height, 1.28572);
6696
- letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
6870
+ font-size: var(--cds-body-compact-01-font-size, 0.875rem);
6871
+ font-weight: var(--cds-body-compact-01-font-weight, 400);
6872
+ line-height: var(--cds-body-compact-01-line-height, 1.28572);
6873
+ letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
6697
6874
  margin-bottom: 0.5rem;
6698
6875
  color: var(--cds-text-secondary, #525252);
6699
6876
  }
@@ -6708,7 +6885,6 @@ a.cds--overflow-menu-options__btn::before {
6708
6885
  }
6709
6886
 
6710
6887
  .c4p--tearsheet.c4p--tearsheet {
6711
- /* stylelint-disable-next-line function-no-unknown */
6712
6888
  z-index: 9001;
6713
6889
  align-items: flex-end;
6714
6890
  color: var(--cds-text-primary, #161616);
@@ -6717,7 +6893,6 @@ a.cds--overflow-menu-options__btn::before {
6717
6893
  --c4p--tearsheet--stacking-scale-factor-double: 0.9;
6718
6894
  }
6719
6895
  .c4p--tearsheet.is-visible {
6720
- /* stylelint-disable-next-line function-no-unknown */
6721
6896
  z-index: 9000;
6722
6897
  align-items: flex-end;
6723
6898
  transition: visibility 0s linear, background-color 240ms cubic-bezier(0, 0, 0.3, 1), opacity 240ms cubic-bezier(0, 0, 0.3, 1);
@@ -6728,17 +6903,14 @@ a.cds--overflow-menu-options__btn::before {
6728
6903
  }
6729
6904
  }
6730
6905
  .c4p--tearsheet.c4p--tearsheet--stacked-1-of-2 {
6731
- /* stylelint-disable-next-line function-no-unknown */
6732
6906
  z-index: 8999;
6733
6907
  background-color: rgba(22, 22, 22, 0.33);
6734
6908
  }
6735
6909
  .c4p--tearsheet.c4p--tearsheet--stacked-1-of-3 {
6736
- /* stylelint-disable-next-line function-no-unknown */
6737
6910
  z-index: 8998;
6738
6911
  background-color: rgba(22, 22, 22, 0.11);
6739
6912
  }
6740
6913
  .c4p--tearsheet.c4p--tearsheet--stacked-2-of-3 {
6741
- /* stylelint-disable-next-line function-no-unknown */
6742
6914
  z-index: 8999;
6743
6915
  background-color: rgba(22, 22, 22, 0.25);
6744
6916
  }
@@ -6787,11 +6959,13 @@ a.cds--overflow-menu-options__btn::before {
6787
6959
  padding: 1.5rem 2rem;
6788
6960
  border-bottom: 1px solid var(--cds-border-subtle-01, #c6c6c6);
6789
6961
  margin: 0;
6962
+ background-color: var(--cds-layer);
6790
6963
  }
6791
6964
  .c4p--tearsheet.c4p--tearsheet--narrow .c4p--tearsheet__header {
6792
6965
  padding: 1rem;
6793
6966
  border-bottom: 1px solid var(--cds-border-subtle-01, #c6c6c6);
6794
6967
  margin: 0;
6968
+ background-color: var(--cds-layer);
6795
6969
  }
6796
6970
  .c4p--tearsheet .c4p--tearsheet__header-content {
6797
6971
  display: flex;
@@ -6811,20 +6985,20 @@ a.cds--overflow-menu-options__btn::before {
6811
6985
  display: none;
6812
6986
  }
6813
6987
  .c4p--tearsheet.c4p--tearsheet--wide .cds--modal-header__heading.c4p--tearsheet__heading {
6814
- font-size: var(--cds-productive-heading-04-font-size, 1.75rem);
6815
- font-weight: var(--cds-productive-heading-04-font-weight, 400);
6816
- line-height: var(--cds-productive-heading-04-line-height, 1.28572);
6817
- letter-spacing: var(--cds-productive-heading-04-letter-spacing, 0);
6988
+ font-size: var(--cds-heading-04-font-size, 1.75rem);
6989
+ font-weight: var(--cds-heading-04-font-weight, 400);
6990
+ line-height: var(--cds-heading-04-line-height, 1.28572);
6991
+ letter-spacing: var(--cds-heading-04-letter-spacing, 0);
6818
6992
  }
6819
6993
  .c4p--tearsheet .c4p--tearsheet__header-description {
6820
6994
  display: -webkit-box;
6821
6995
  overflow: hidden;
6822
6996
  max-width: 100%;
6823
6997
  margin-top: 1rem;
6824
- font-size: var(--cds-body-short-01-font-size, 0.875rem);
6825
- font-weight: var(--cds-body-short-01-font-weight, 400);
6826
- line-height: var(--cds-body-short-01-line-height, 1.28572);
6827
- letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
6998
+ font-size: var(--cds-body-compact-01-font-size, 0.875rem);
6999
+ font-weight: var(--cds-body-compact-01-font-weight, 400);
7000
+ line-height: var(--cds-body-compact-01-line-height, 1.28572);
7001
+ letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
6828
7002
  -webkit-box-orient: vertical;
6829
7003
  -webkit-line-clamp: 2;
6830
7004
  word-break: break-word;
@@ -6882,10 +7056,13 @@ a.cds--overflow-menu-options__btn::before {
6882
7056
  .c4p--tearsheet .c4p--tearsheet__main {
6883
7057
  display: flex;
6884
7058
  flex-direction: row;
6885
- background-color: var(--cds-layer);
7059
+ background-color: var(--cds-background, #ffffff);
6886
7060
  grid-column: 1/-1;
6887
7061
  grid-row: 1/-1;
6888
7062
  }
7063
+ .c4p--tearsheet.c4p--tearsheet--narrow .c4p--tearsheet__main {
7064
+ background-color: var(--cds-layer);
7065
+ }
6889
7066
  .c4p--tearsheet .c4p--tearsheet__main .c4p--tearsheet__influencer {
6890
7067
  border-right: none;
6891
7068
  border-left: 1px solid var(--cds-border-subtle-01, #c6c6c6);
@@ -7019,19 +7196,19 @@ a.cds--overflow-menu-options__btn::before {
7019
7196
 
7020
7197
  .c4p--tearsheet-create .c4p--tearsheet-create__section--subtitle,
7021
7198
  .c4p--tearsheet-create .c4p--tearsheet-create__step--subtitle {
7022
- font-size: var(--cds-productive-heading-01-font-size, 0.875rem);
7023
- font-weight: var(--cds-productive-heading-01-font-weight, 600);
7024
- line-height: var(--cds-productive-heading-01-line-height, 1.28572);
7025
- letter-spacing: var(--cds-productive-heading-01-letter-spacing, 0.16px);
7199
+ font-size: var(--cds-heading-compact-01-font-size, 0.875rem);
7200
+ font-weight: var(--cds-heading-compact-01-font-weight, 600);
7201
+ line-height: var(--cds-heading-compact-01-line-height, 1.28572);
7202
+ letter-spacing: var(--cds-heading-compact-01-letter-spacing, 0.16px);
7026
7203
  margin-bottom: 0.5rem;
7027
7204
  }
7028
7205
 
7029
7206
  .c4p--tearsheet-create .c4p--tearsheet-create__section--description,
7030
7207
  .c4p--tearsheet-create .c4p--tearsheet-create__step--description {
7031
- font-size: var(--cds-body-long-01-font-size, 0.875rem);
7032
- font-weight: var(--cds-body-long-01-font-weight, 400);
7033
- line-height: var(--cds-body-long-01-line-height, 1.42857);
7034
- letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
7208
+ font-size: var(--cds-body-01-font-size, 0.875rem);
7209
+ font-weight: var(--cds-body-01-font-weight, 400);
7210
+ line-height: var(--cds-body-01-line-height, 1.42857);
7211
+ letter-spacing: var(--cds-body-01-letter-spacing, 0.16px);
7035
7212
  margin-bottom: 1.5rem;
7036
7213
  }
7037
7214
 
@@ -7075,18 +7252,18 @@ a.cds--overflow-menu-options__btn::before {
7075
7252
  }
7076
7253
 
7077
7254
  .c4p--create-tearsheet-narrow .c4p--create-tearsheet-narrow__form-title-text {
7078
- font-size: var(--cds-productive-heading-02-font-size, 1rem);
7079
- font-weight: var(--cds-productive-heading-02-font-weight, 600);
7080
- line-height: var(--cds-productive-heading-02-line-height, 1.375);
7081
- letter-spacing: var(--cds-productive-heading-02-letter-spacing, 0);
7255
+ font-size: var(--cds-heading-compact-02-font-size, 1rem);
7256
+ font-weight: var(--cds-heading-compact-02-font-weight, 600);
7257
+ line-height: var(--cds-heading-compact-02-line-height, 1.375);
7258
+ letter-spacing: var(--cds-heading-compact-02-letter-spacing, 0);
7082
7259
  padding-bottom: 0.5rem;
7083
7260
  }
7084
7261
 
7085
7262
  .c4p--create-tearsheet-narrow .c4p--create-tearsheet-narrow__form-description-text {
7086
- font-size: var(--cds-body-long-01-font-size, 0.875rem);
7087
- font-weight: var(--cds-body-long-01-font-weight, 400);
7088
- line-height: var(--cds-body-long-01-line-height, 1.42857);
7089
- letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
7263
+ font-size: var(--cds-body-01-font-size, 0.875rem);
7264
+ font-weight: var(--cds-body-01-font-weight, 400);
7265
+ line-height: var(--cds-body-01-line-height, 1.42857);
7266
+ letter-spacing: var(--cds-body-01-letter-spacing, 0.16px);
7090
7267
  }
7091
7268
 
7092
7269
  .cds--link {
@@ -8307,10 +8484,10 @@ c4p--card__icon:active {
8307
8484
  .c4p--import-modal .c4p--import-modal__file-drop-header,
8308
8485
  .c4p--import-modal .c4p--import-modal__label {
8309
8486
  margin-bottom: 0.5rem;
8310
- font-size: var(--cds-productive-heading-01-font-size, 0.875rem);
8311
- font-weight: var(--cds-productive-heading-01-font-weight, 600);
8312
- line-height: var(--cds-productive-heading-01-line-height, 1.28572);
8313
- letter-spacing: var(--cds-productive-heading-01-letter-spacing, 0.16px);
8487
+ font-size: var(--cds-heading-compact-01-font-size, 0.875rem);
8488
+ font-weight: var(--cds-heading-compact-01-font-weight, 600);
8489
+ line-height: var(--cds-heading-compact-01-line-height, 1.28572);
8490
+ letter-spacing: var(--cds-heading-compact-01-letter-spacing, 0.16px);
8314
8491
  }
8315
8492
 
8316
8493
  .c4p--import-modal__helper-text {
@@ -8391,6 +8568,9 @@ c4p--card__icon:active {
8391
8568
  display: flex;
8392
8569
  align-items: center;
8393
8570
  }
8571
+ .c4p--add-select__selections-form-control-wrapper--radio {
8572
+ cursor: pointer;
8573
+ }
8394
8574
  .c4p--add-select__selections-form-control-label-wrapper {
8395
8575
  display: flex;
8396
8576
  margin-left: 1rem;
@@ -8441,10 +8621,10 @@ c4p--card__icon:active {
8441
8621
  border-bottom: 1px solid var(--cds-layer-accent-01, #e0e0e0);
8442
8622
  }
8443
8623
  .c4p--add-select__sidebar-header .c4p--add-select__sidebar-title {
8444
- font-size: var(--cds-productive-heading-02-font-size, 1rem);
8445
- font-weight: var(--cds-productive-heading-02-font-weight, 600);
8446
- line-height: var(--cds-productive-heading-02-line-height, 1.375);
8447
- letter-spacing: var(--cds-productive-heading-02-letter-spacing, 0);
8624
+ font-size: var(--cds-heading-compact-02-font-size, 1rem);
8625
+ font-weight: var(--cds-heading-compact-02-font-weight, 600);
8626
+ line-height: var(--cds-heading-compact-02-line-height, 1.375);
8627
+ letter-spacing: var(--cds-heading-compact-02-letter-spacing, 0);
8448
8628
  }
8449
8629
 
8450
8630
  .c4p--add-select__sidebar-title {
@@ -8476,10 +8656,10 @@ c4p--card__icon:active {
8476
8656
  }
8477
8657
 
8478
8658
  .c4p--add-select .c4p--add-select__sidebar-item-body {
8479
- font-size: var(--cds-body-long-01-font-size, 0.875rem);
8480
- font-weight: var(--cds-body-long-01-font-weight, 400);
8481
- line-height: var(--cds-body-long-01-line-height, 1.42857);
8482
- letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
8659
+ font-size: var(--cds-body-01-font-size, 0.875rem);
8660
+ font-weight: var(--cds-body-01-font-weight, 400);
8661
+ line-height: var(--cds-body-01-line-height, 1.42857);
8662
+ letter-spacing: var(--cds-body-01-letter-spacing, 0.16px);
8483
8663
  margin-bottom: 1rem;
8484
8664
  }
8485
8665
 
@@ -8620,24 +8800,24 @@ button.c4p--add-select__global-filter-toggle--open {
8620
8800
  }
8621
8801
 
8622
8802
  .c4p--add-select__meta-panel p.c4p--add-select__meta-panel-title {
8623
- font-size: var(--cds-productive-heading-03-font-size, 1.25rem);
8624
- font-weight: var(--cds-productive-heading-03-font-weight, 400);
8625
- line-height: var(--cds-productive-heading-03-line-height, 1.4);
8626
- letter-spacing: var(--cds-productive-heading-03-letter-spacing, 0);
8803
+ font-size: var(--cds-heading-03-font-size, 1.25rem);
8804
+ font-weight: var(--cds-heading-03-font-weight, 400);
8805
+ line-height: var(--cds-heading-03-line-height, 1.4);
8806
+ letter-spacing: var(--cds-heading-03-letter-spacing, 0);
8627
8807
  }
8628
8808
 
8629
8809
  .c4p--add-select__meta-panel p.c4p--add-select__meta-panel-entry-title {
8630
- font-size: var(--cds-productive-heading-01-font-size, 0.875rem);
8631
- font-weight: var(--cds-productive-heading-01-font-weight, 600);
8632
- line-height: var(--cds-productive-heading-01-line-height, 1.28572);
8633
- letter-spacing: var(--cds-productive-heading-01-letter-spacing, 0.16px);
8810
+ font-size: var(--cds-heading-compact-01-font-size, 0.875rem);
8811
+ font-weight: var(--cds-heading-compact-01-font-weight, 600);
8812
+ line-height: var(--cds-heading-compact-01-line-height, 1.28572);
8813
+ letter-spacing: var(--cds-heading-compact-01-letter-spacing, 0.16px);
8634
8814
  }
8635
8815
 
8636
8816
  .c4p--add-select__meta-panel p.c4p--add-select__meta-panel-entry-body {
8637
- font-size: var(--cds-body-short-01-font-size, 0.875rem);
8638
- font-weight: var(--cds-body-short-01-font-weight, 400);
8639
- line-height: var(--cds-body-short-01-line-height, 1.28572);
8640
- letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
8817
+ font-size: var(--cds-body-compact-01-font-size, 0.875rem);
8818
+ font-weight: var(--cds-body-compact-01-font-weight, 400);
8819
+ line-height: var(--cds-body-compact-01-line-height, 1.28572);
8820
+ letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
8641
8821
  }
8642
8822
 
8643
8823
  .c4p--add-select__selections .cds--list-box__menu {
@@ -8671,10 +8851,10 @@ button.c4p--add-select__global-filter-toggle--open {
8671
8851
  }
8672
8852
 
8673
8853
  .c4p--add-select .c4p--add-select__items-label {
8674
- font-size: var(--cds-productive-heading-01-font-size, 0.875rem);
8675
- font-weight: var(--cds-productive-heading-01-font-weight, 600);
8676
- line-height: var(--cds-productive-heading-01-line-height, 1.28572);
8677
- letter-spacing: var(--cds-productive-heading-01-letter-spacing, 0.16px);
8854
+ font-size: var(--cds-heading-compact-01-font-size, 0.875rem);
8855
+ font-weight: var(--cds-heading-compact-01-font-weight, 600);
8856
+ line-height: var(--cds-heading-compact-01-line-height, 1.28572);
8857
+ letter-spacing: var(--cds-heading-compact-01-letter-spacing, 0.16px);
8678
8858
  }
8679
8859
 
8680
8860
  .c4p--add-select .cds--modal-container--sm .cds--modal-content p {
@@ -8870,6 +9050,14 @@ button.c4p--add-select__global-filter-toggle--open {
8870
9050
  --cds-fluid-spacing-02: 2vw;
8871
9051
  --cds-fluid-spacing-03: 5vw;
8872
9052
  --cds-fluid-spacing-04: 10vw;
9053
+ --cds-caption-01-font-size: 0.75rem;
9054
+ --cds-caption-01-font-weight: 400;
9055
+ --cds-caption-01-line-height: 1.33333;
9056
+ --cds-caption-01-letter-spacing: 0.32px;
9057
+ --cds-caption-02-font-size: 0.875rem;
9058
+ --cds-caption-02-font-weight: 400;
9059
+ --cds-caption-02-line-height: 1.28572;
9060
+ --cds-caption-02-letter-spacing: 0.32px;
8873
9061
  --cds-label-01-font-size: 0.75rem;
8874
9062
  --cds-label-01-font-weight: 400;
8875
9063
  --cds-label-01-line-height: 1.33333;
@@ -9133,7 +9321,7 @@ button.c4p--add-select__global-filter-toggle--open {
9133
9321
  top: 3rem;
9134
9322
  right: 0;
9135
9323
  overflow: auto;
9136
- min-width: 22.75rem;
9324
+ min-width: 20rem;
9137
9325
  max-width: 22.75rem;
9138
9326
  min-height: 38.5rem;
9139
9327
  max-height: 38.5rem;
@@ -9170,10 +9358,10 @@ button.c4p--add-select__global-filter-toggle--open {
9170
9358
  color: var(--cds-text-primary, #161616);
9171
9359
  }
9172
9360
  .c4p--notifications-panel__container .c4p--notifications-panel__header-container .c4p--notifications-panel__header {
9173
- font-size: var(--cds-productive-heading-01-font-size, 0.875rem);
9174
- font-weight: var(--cds-productive-heading-01-font-weight, 600);
9175
- line-height: var(--cds-productive-heading-01-line-height, 1.28572);
9176
- letter-spacing: var(--cds-productive-heading-01-letter-spacing, 0.16px);
9361
+ font-size: var(--cds-heading-compact-01-font-size, 0.875rem);
9362
+ font-weight: var(--cds-heading-compact-01-font-weight, 600);
9363
+ line-height: var(--cds-heading-compact-01-line-height, 1.28572);
9364
+ letter-spacing: var(--cds-heading-compact-01-letter-spacing, 0.16px);
9177
9365
  margin: 0;
9178
9366
  }
9179
9367
  .c4p--notifications-panel__container .c4p--notifications-panel__time-section-label {
@@ -9342,10 +9530,10 @@ button.c4p--add-select__global-filter-toggle--open {
9342
9530
  margin-top: 10rem;
9343
9531
  }
9344
9532
  .c4p--notifications-panel__container .c4p--notifications-panel__main-section-empty.c4p--notifications-panel__main-section .c4p-subtext {
9345
- font-size: var(--cds-body-short-01-font-size, 0.875rem);
9346
- font-weight: var(--cds-body-short-01-font-weight, 400);
9347
- line-height: var(--cds-body-short-01-line-height, 1.28572);
9348
- letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
9533
+ font-size: var(--cds-body-compact-01-font-size, 0.875rem);
9534
+ font-weight: var(--cds-body-compact-01-font-weight, 400);
9535
+ line-height: var(--cds-body-compact-01-line-height, 1.28572);
9536
+ letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
9349
9537
  }
9350
9538
  .c4p--notifications-panel__container .c4p--notifications-panel__main-section {
9351
9539
  min-height: 498px;
@@ -9651,6 +9839,10 @@ button.c4p--add-select__global-filter-toggle--open {
9651
9839
  }
9652
9840
 
9653
9841
  .cds--tag {
9842
+ --cds-layout-size-height-xs: 1.125rem;
9843
+ --cds-layout-size-height-sm: 1.125rem;
9844
+ --cds-layout-size-height-md: 1.5rem;
9845
+ --cds-layout-size-height-local: clamp(max(var(--cds-layout-size-height-min), var(--cds-layout-size-height-sm)), var(--cds-layout-size-height, var(--cds-layout-size-height-md)), min(var(--cds-layout-size-height-max), var(--cds-layout-size-height-md)));
9654
9846
  font-size: var(--cds-label-01-font-size, 0.75rem);
9655
9847
  font-weight: var(--cds-label-01-font-weight, 400);
9656
9848
  line-height: var(--cds-label-01-line-height, 1.33333);
@@ -9660,16 +9852,25 @@ button.c4p--add-select__global-filter-toggle--open {
9660
9852
  display: inline-flex;
9661
9853
  min-width: 2rem;
9662
9854
  max-width: 100%;
9663
- min-height: 1.5rem;
9855
+ min-height: var(--cds-layout-size-height-local);
9664
9856
  align-items: center;
9665
9857
  justify-content: center;
9666
- padding: 0.25rem 0.5rem;
9667
9858
  margin: 0.25rem;
9668
9859
  border-radius: 0.9375rem;
9669
9860
  cursor: default;
9861
+ padding-inline: 0.5rem;
9670
9862
  vertical-align: middle;
9671
9863
  word-break: break-word;
9672
9864
  }
9865
+ .cds--layout--size-xs .cds--tag {
9866
+ --cds-layout-size-height: var(--cds-layout-size-height-xs);
9867
+ }
9868
+ .cds--layout--size-sm .cds--tag {
9869
+ --cds-layout-size-height: var(--cds-layout-size-height-sm);
9870
+ }
9871
+ .cds--layout--size-md .cds--tag {
9872
+ --cds-layout-size-height: var(--cds-layout-size-height-md);
9873
+ }
9673
9874
  .cds--tag.cds--tag--interactive:hover,
9674
9875
  .cds--tag .cds--tag__close-icon:hover {
9675
9876
  background-color: var(--cds-tag-hover-gray, #c6c6c6);
@@ -9840,8 +10041,8 @@ button.c4p--add-select__global-filter-toggle--open {
9840
10041
 
9841
10042
  .cds--tag__close-icon {
9842
10043
  display: flex;
9843
- width: 1.5rem;
9844
- height: 1.5rem;
10044
+ width: var(--cds-layout-size-height-local);
10045
+ height: var(--cds-layout-size-height-local);
9845
10046
  flex-shrink: 0;
9846
10047
  align-items: center;
9847
10048
  justify-content: center;
@@ -9895,18 +10096,11 @@ button.c4p--add-select__global-filter-toggle--open {
9895
10096
  fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
9896
10097
  }
9897
10098
 
9898
- .cds--tag--sm {
9899
- min-height: 1.125rem;
9900
- padding: 0 0.5rem;
9901
- }
9902
-
9903
10099
  .cds--tag--sm.cds--tag--filter {
9904
10100
  padding-right: 0;
9905
10101
  }
9906
10102
 
9907
10103
  .cds--tag--sm .cds--tag__close-icon {
9908
- width: 1.125rem;
9909
- height: 1.125rem;
9910
10104
  margin-left: 0.3125rem;
9911
10105
  }
9912
10106
 
@@ -11708,7 +11902,6 @@ button.c4p--add-select__global-filter-toggle--open {
11708
11902
  }
11709
11903
 
11710
11904
  .c4p--breadcrumb-with-overflow__overflow-menu-options.c4p--breadcrumb-with-overflow__overflow-menu-options {
11711
- /* stylelint-disable-next-line function-no-unknown */
11712
11905
  z-index: 8000;
11713
11906
  }
11714
11907
 
@@ -11818,10 +12011,10 @@ button.c4p--add-select__global-filter-toggle--open {
11818
12011
  }
11819
12012
  .c4p--tag-set-overflow__tagset-popover .c4p--tag-set-overflow__tag-item,
11820
12013
  .c4p--tag-set-overflow__tagset-popover .c4p--tag-set-overflow__tag-item .cds--tag {
11821
- font-size: var(--cds-body-short-01-font-size, 0.875rem);
11822
- font-weight: var(--cds-body-short-01-font-weight, 400);
11823
- line-height: var(--cds-body-short-01-line-height, 1.28572);
11824
- letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
12014
+ font-size: var(--cds-body-compact-01-font-size, 0.875rem);
12015
+ font-weight: var(--cds-body-compact-01-font-weight, 400);
12016
+ line-height: var(--cds-body-compact-01-line-height, 1.28572);
12017
+ letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
11825
12018
  display: block;
11826
12019
  overflow: hidden;
11827
12020
  min-width: initial;
@@ -11874,7 +12067,6 @@ button.c4p--add-select__global-filter-toggle--open {
11874
12067
  justify-content: flex-end;
11875
12068
  }
11876
12069
 
11877
- /* stylelint-disable-next-line function-no-unknown */
11878
12070
  @keyframes background-appear {
11879
12071
  from {
11880
12072
  /* stylelint-disable-next-line carbon/theme-token-use */
@@ -12181,10 +12373,10 @@ button.c4p--add-select__global-filter-toggle--open {
12181
12373
  }
12182
12374
  }
12183
12375
  .c4p--page-header .c4p--page-header__title {
12184
- font-size: var(--cds-productive-heading-04-font-size, 1.75rem);
12185
- font-weight: var(--cds-productive-heading-04-font-weight, 400);
12186
- line-height: var(--cds-productive-heading-04-line-height, 1.28572);
12187
- letter-spacing: var(--cds-productive-heading-04-letter-spacing, 0);
12376
+ font-size: var(--cds-heading-04-font-size, 1.75rem);
12377
+ font-weight: var(--cds-heading-04-font-weight, 400);
12378
+ line-height: var(--cds-heading-04-line-height, 1.28572);
12379
+ letter-spacing: var(--cds-heading-04-letter-spacing, 0);
12188
12380
  min-height: 2.5rem;
12189
12381
  overflow-x: hidden;
12190
12382
  text-overflow: ellipsis;
@@ -12284,16 +12476,16 @@ button.c4p--add-select__global-filter-toggle--open {
12284
12476
  height: 1rem;
12285
12477
  }
12286
12478
  .c4p--page-header .c4p--page-header__subtitle {
12287
- font-size: var(--cds-body-long-01-font-size, 0.875rem);
12288
- font-weight: var(--cds-body-long-01-font-weight, 400);
12289
- line-height: var(--cds-body-long-01-line-height, 1.42857);
12290
- letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
12479
+ font-size: var(--cds-body-01-font-size, 0.875rem);
12480
+ font-weight: var(--cds-body-01-font-weight, 400);
12481
+ line-height: var(--cds-body-01-line-height, 1.42857);
12482
+ letter-spacing: var(--cds-body-01-letter-spacing, 0.16px);
12291
12483
  }
12292
12484
  .c4p--page-header .c4p--page-header__available-row {
12293
- font-size: var(--cds-body-long-01-font-size, 0.875rem);
12294
- font-weight: var(--cds-body-long-01-font-weight, 400);
12295
- line-height: var(--cds-body-long-01-line-height, 1.42857);
12296
- letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
12485
+ font-size: var(--cds-body-01-font-size, 0.875rem);
12486
+ font-weight: var(--cds-body-01-font-weight, 400);
12487
+ line-height: var(--cds-body-01-line-height, 1.42857);
12488
+ letter-spacing: var(--cds-body-01-letter-spacing, 0.16px);
12297
12489
  margin-top: 0.5rem;
12298
12490
  }
12299
12491
  .c4p--page-header .c4p--page-header__available-row + .c4p--page-header__last-row-buffer--active {
@@ -12303,10 +12495,10 @@ button.c4p--add-select__global-filter-toggle--open {
12303
12495
  margin-top: 1rem;
12304
12496
  }
12305
12497
  .c4p--page-header .c4p--page-header__available-row * {
12306
- font-size: var(--cds-body-long-01-font-size, 0.875rem);
12307
- font-weight: var(--cds-body-long-01-font-weight, 400);
12308
- line-height: var(--cds-body-long-01-line-height, 1.42857);
12309
- letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
12498
+ font-size: var(--cds-body-01-font-size, 0.875rem);
12499
+ font-weight: var(--cds-body-01-font-weight, 400);
12500
+ line-height: var(--cds-body-01-line-height, 1.42857);
12501
+ letter-spacing: var(--cds-body-01-letter-spacing, 0.16px);
12310
12502
  }
12311
12503
  .c4p--page-header .c4p--page-header__navigation-row {
12312
12504
  flex-wrap: wrap-reverse;
@@ -12479,10 +12671,10 @@ button.c4p--add-select__global-filter-toggle--open {
12479
12671
  }
12480
12672
 
12481
12673
  .c4p--saving__text {
12482
- font-size: var(--cds-body-short-01-font-size, 0.875rem);
12483
- font-weight: var(--cds-body-short-01-font-weight, 400);
12484
- line-height: var(--cds-body-short-01-line-height, 1.28572);
12485
- letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
12674
+ font-size: var(--cds-body-compact-01-font-size, 0.875rem);
12675
+ font-weight: var(--cds-body-compact-01-font-weight, 400);
12676
+ line-height: var(--cds-body-compact-01-line-height, 1.28572);
12677
+ letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
12486
12678
  }
12487
12679
 
12488
12680
  .c4p--saving__buttons {
@@ -13515,7 +13707,7 @@ button.c4p--add-select__global-filter-toggle--open {
13515
13707
  pointer-events: auto;
13516
13708
  }
13517
13709
 
13518
- .cds--popover--open .cds--popover-content {
13710
+ .cds--popover--open > .cds--popover > .cds--popover-content {
13519
13711
  display: block;
13520
13712
  }
13521
13713
 
@@ -13525,7 +13717,7 @@ button.c4p--add-select__global-filter-toggle--open {
13525
13717
  content: "";
13526
13718
  }
13527
13719
 
13528
- .cds--popover--open .cds--popover-content::before {
13720
+ .cds--popover--open > .cds--popover > .cds--popover-content::before {
13529
13721
  display: block;
13530
13722
  }
13531
13723
 
@@ -13537,10 +13729,14 @@ button.c4p--add-select__global-filter-toggle--open {
13537
13729
  will-change: transform;
13538
13730
  }
13539
13731
 
13540
- .cds--popover--open.cds--popover--caret .cds--popover-caret {
13732
+ .cds--popover--open > .cds--popover > .cds--popover-caret {
13541
13733
  display: block;
13542
13734
  }
13543
13735
 
13736
+ .cds--popover--tab-tip .cds--popover .cds--popover-caret {
13737
+ display: none;
13738
+ }
13739
+
13544
13740
  .cds--popover--bottom .cds--popover-content {
13545
13741
  bottom: 0;
13546
13742
  left: 50%;
@@ -14026,6 +14222,14 @@ button.c4p--add-select__global-filter-toggle--open {
14026
14222
  --cds-fluid-spacing-02: 2vw;
14027
14223
  --cds-fluid-spacing-03: 5vw;
14028
14224
  --cds-fluid-spacing-04: 10vw;
14225
+ --cds-caption-01-font-size: 0.75rem;
14226
+ --cds-caption-01-font-weight: 400;
14227
+ --cds-caption-01-line-height: 1.33333;
14228
+ --cds-caption-01-letter-spacing: 0.32px;
14229
+ --cds-caption-02-font-size: 0.875rem;
14230
+ --cds-caption-02-font-weight: 400;
14231
+ --cds-caption-02-line-height: 1.28572;
14232
+ --cds-caption-02-letter-spacing: 0.32px;
14029
14233
  --cds-label-01-font-size: 0.75rem;
14030
14234
  --cds-label-01-font-weight: 400;
14031
14235
  --cds-label-01-line-height: 1.33333;
@@ -14456,6 +14660,14 @@ button.c4p--add-select__global-filter-toggle--open {
14456
14660
  --cds-fluid-spacing-02: 2vw;
14457
14661
  --cds-fluid-spacing-03: 5vw;
14458
14662
  --cds-fluid-spacing-04: 10vw;
14663
+ --cds-caption-01-font-size: 0.75rem;
14664
+ --cds-caption-01-font-weight: 400;
14665
+ --cds-caption-01-line-height: 1.33333;
14666
+ --cds-caption-01-letter-spacing: 0.32px;
14667
+ --cds-caption-02-font-size: 0.875rem;
14668
+ --cds-caption-02-font-weight: 400;
14669
+ --cds-caption-02-line-height: 1.28572;
14670
+ --cds-caption-02-letter-spacing: 0.32px;
14459
14671
  --cds-label-01-font-size: 0.75rem;
14460
14672
  --cds-label-01-font-weight: 400;
14461
14673
  --cds-label-01-line-height: 1.33333;
@@ -14936,19 +15148,19 @@ button.c4p--add-select__global-filter-toggle--open {
14936
15148
  .c4p--user-profile-image--xl {
14937
15149
  width: 4rem;
14938
15150
  height: 4rem;
14939
- font-size: var(--cds-productive-heading-04-font-size, 1.75rem);
14940
- font-weight: var(--cds-productive-heading-04-font-weight, 400);
14941
- line-height: var(--cds-productive-heading-04-line-height, 1.28572);
14942
- letter-spacing: var(--cds-productive-heading-04-letter-spacing, 0);
15151
+ font-size: var(--cds-heading-04-font-size, 1.75rem);
15152
+ font-weight: var(--cds-heading-04-font-weight, 400);
15153
+ line-height: var(--cds-heading-04-line-height, 1.28572);
15154
+ letter-spacing: var(--cds-heading-04-letter-spacing, 0);
14943
15155
  }
14944
15156
 
14945
15157
  .c4p--user-profile-image--lg {
14946
15158
  width: 2rem;
14947
15159
  height: 2rem;
14948
- font-size: var(--cds-body-short-01-font-size, 0.875rem);
14949
- font-weight: var(--cds-body-short-01-font-weight, 400);
14950
- line-height: var(--cds-body-short-01-line-height, 1.28572);
14951
- letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
15160
+ font-size: var(--cds-body-compact-01-font-size, 0.875rem);
15161
+ font-weight: var(--cds-body-compact-01-font-weight, 400);
15162
+ line-height: var(--cds-body-compact-01-line-height, 1.28572);
15163
+ letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
14952
15164
  }
14953
15165
 
14954
15166
  .c4p--user-profile-image--md {
@@ -14991,17 +15203,17 @@ button.c4p--add-select__global-filter-toggle--open {
14991
15203
  margin-bottom: 1rem;
14992
15204
  }
14993
15205
  .c4p--edit-side-panel .c4p--edit-side-panel__form-title-text {
14994
- font-size: var(--cds-productive-heading-02-font-size, 1rem);
14995
- font-weight: var(--cds-productive-heading-02-font-weight, 600);
14996
- line-height: var(--cds-productive-heading-02-line-height, 1.375);
14997
- letter-spacing: var(--cds-productive-heading-02-letter-spacing, 0);
15206
+ font-size: var(--cds-heading-compact-02-font-size, 1rem);
15207
+ font-weight: var(--cds-heading-compact-02-font-weight, 600);
15208
+ line-height: var(--cds-heading-compact-02-line-height, 1.375);
15209
+ letter-spacing: var(--cds-heading-compact-02-letter-spacing, 0);
14998
15210
  padding-bottom: 0.5rem;
14999
15211
  }
15000
15212
  .c4p--edit-side-panel .c4p--edit-side-panel__form-description-text {
15001
- font-size: var(--cds-body-long-01-font-size, 0.875rem);
15002
- font-weight: var(--cds-body-long-01-font-weight, 400);
15003
- line-height: var(--cds-body-long-01-line-height, 1.42857);
15004
- letter-spacing: var(--cds-body-long-01-letter-spacing, 0.16px);
15213
+ font-size: var(--cds-body-01-font-size, 0.875rem);
15214
+ font-weight: var(--cds-body-01-font-weight, 400);
15215
+ line-height: var(--cds-body-01-line-height, 1.42857);
15216
+ letter-spacing: var(--cds-body-01-letter-spacing, 0.16px);
15005
15217
  }
15006
15218
  .c4p--edit-side-panel.c4p--side-panel .cds--btn.c4p--side-panel__close-button {
15007
15219
  display: none;
@@ -15386,10 +15598,10 @@ button.c4p--add-select__global-filter-toggle--open {
15386
15598
  }
15387
15599
  .c4p--data-spreadsheet .c4p--data-spreadsheet__th,
15388
15600
  .c4p--data-spreadsheet .c4p--data-spreadsheet__td {
15389
- font-size: var(--cds-body-short-01-font-size, 0.875rem);
15390
- font-weight: var(--cds-body-short-01-font-weight, 400);
15391
- line-height: var(--cds-body-short-01-line-height, 1.28572);
15392
- letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
15601
+ font-size: var(--cds-body-compact-01-font-size, 0.875rem);
15602
+ font-weight: var(--cds-body-compact-01-font-weight, 400);
15603
+ line-height: var(--cds-body-compact-01-line-height, 1.28572);
15604
+ letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
15393
15605
  width: 100%;
15394
15606
  height: 100%;
15395
15607
  padding: 0 0.5rem;
@@ -15444,18 +15656,18 @@ button.c4p--add-select__global-filter-toggle--open {
15444
15656
  text-align: left;
15445
15657
  }
15446
15658
  .c4p--data-spreadsheet .c4p--data-spreadsheet__th {
15447
- font-size: var(--cds-productive-heading-01-font-size, 0.875rem);
15448
- font-weight: var(--cds-productive-heading-01-font-weight, 600);
15449
- line-height: var(--cds-productive-heading-01-line-height, 1.28572);
15450
- letter-spacing: var(--cds-productive-heading-01-letter-spacing, 0.16px);
15659
+ font-size: var(--cds-heading-compact-01-font-size, 0.875rem);
15660
+ font-weight: var(--cds-heading-compact-01-font-weight, 600);
15661
+ line-height: var(--cds-heading-compact-01-line-height, 1.28572);
15662
+ letter-spacing: var(--cds-heading-compact-01-letter-spacing, 0.16px);
15451
15663
  color: var(--cds-text-primary, #161616);
15452
15664
  text-align: left;
15453
15665
  }
15454
15666
  .c4p--data-spreadsheet .c4p--data-spreadsheet__cell-editor {
15455
- font-size: var(--cds-body-short-01-font-size, 0.875rem);
15456
- font-weight: var(--cds-body-short-01-font-weight, 400);
15457
- line-height: var(--cds-body-short-01-line-height, 1.28572);
15458
- letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
15667
+ font-size: var(--cds-body-compact-01-font-size, 0.875rem);
15668
+ font-weight: var(--cds-body-compact-01-font-weight, 400);
15669
+ line-height: var(--cds-body-compact-01-line-height, 1.28572);
15670
+ letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
15459
15671
  outline: 2px solid transparent;
15460
15672
  outline-offset: -2px;
15461
15673
  position: absolute;
@@ -15487,10 +15699,10 @@ button.c4p--add-select__global-filter-toggle--open {
15487
15699
  outline-offset: -2px;
15488
15700
  }
15489
15701
  .c4p--data-spreadsheet .c4p--data-spreadsheet__cell-editor-ruler {
15490
- font-size: var(--cds-body-short-01-font-size, 0.875rem);
15491
- font-weight: var(--cds-body-short-01-font-weight, 400);
15492
- line-height: var(--cds-body-short-01-line-height, 1.28572);
15493
- letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
15702
+ font-size: var(--cds-body-compact-01-font-size, 0.875rem);
15703
+ font-weight: var(--cds-body-compact-01-font-weight, 400);
15704
+ line-height: var(--cds-body-compact-01-line-height, 1.28572);
15705
+ letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
15494
15706
  position: absolute;
15495
15707
  overflow: hidden;
15496
15708
  width: fit-content;
@@ -15504,10 +15716,10 @@ button.c4p--add-select__global-filter-toggle--open {
15504
15716
  outline: 0.125rem solid var(--cds-background-brand, #0f62fe);
15505
15717
  }
15506
15718
  .c4p--data-spreadsheet .c4p--data-spreadsheet__active-cell--highlight {
15507
- font-size: var(--cds-body-short-01-font-size, 0.875rem);
15508
- font-weight: var(--cds-body-short-01-font-weight, 400);
15509
- line-height: var(--cds-body-short-01-line-height, 1.28572);
15510
- letter-spacing: var(--cds-body-short-01-letter-spacing, 0.16px);
15719
+ font-size: var(--cds-body-compact-01-font-size, 0.875rem);
15720
+ font-weight: var(--cds-body-compact-01-font-weight, 400);
15721
+ line-height: var(--cds-body-compact-01-line-height, 1.28572);
15722
+ letter-spacing: var(--cds-body-compact-01-letter-spacing, 0.16px);
15511
15723
  border-right: 1px solid var(--cds-border-subtle-01, #c6c6c6);
15512
15724
  border-bottom: 1px solid var(--cds-border-subtle-01, #c6c6c6);
15513
15725
  position: absolute;
@@ -15625,13 +15837,6 @@ button.c4p--add-select__global-filter-toggle--open {
15625
15837
  overscroll-behavior: none;
15626
15838
  }
15627
15839
 
15628
- /*
15629
- * Licensed Materials - Property of IBM
15630
- * 5724-Q36
15631
- * (c) Copyright IBM Corp. 2020 - 2021
15632
- * US Government Users Restricted Rights - Use, duplication or disclosure
15633
- * restricted by GSA ADP Schedule Contract with IBM Corp.
15634
- */
15635
15840
  .c4p--datagrid__table-toolbar > section {
15636
15841
  z-index: 2;
15637
15842
  overflow: visible;
@@ -16103,11 +16308,6 @@ button.c4p--add-select__global-filter-toggle--open {
16103
16308
  width: 100%;
16104
16309
  }
16105
16310
 
16106
- .cds--body--with-modal-open .c4p--datagrid__grid-container {
16107
- overflow: hidden;
16108
- height: 100vh;
16109
- }
16110
-
16111
16311
  .c4p--datagrid .cds--modal {
16112
16312
  width: 100%;
16113
16313
  }
@@ -16148,6 +16348,18 @@ button.c4p--add-select__global-filter-toggle--open {
16148
16348
  background-color: var(--cds-layer-accent);
16149
16349
  }
16150
16350
 
16351
+ .c4p--datagrid .cds--action-list .cds--btn.c4p--button-menu {
16352
+ padding: 0;
16353
+ }
16354
+
16355
+ .c4p--datagrid .cds--action-list .cds--btn {
16356
+ align-items: center;
16357
+ }
16358
+
16359
+ .c4p--datagrid .cds--action-list .cds--btn__icon {
16360
+ margin-top: 0;
16361
+ }
16362
+
16151
16363
  /*
16152
16364
  * Licensed Materials - Property of IBM
16153
16365
  * 5724-Q36
@@ -16578,6 +16790,13 @@ button.c4p--add-select__global-filter-toggle--open {
16578
16790
  grid-template-columns: 1fr 1fr;
16579
16791
  }
16580
16792
 
16793
+ .c4p--datagrid-filter-flyout__trigger.cds--btn {
16794
+ display: flex;
16795
+ width: 3rem;
16796
+ height: 3rem;
16797
+ justify-content: center;
16798
+ }
16799
+
16581
16800
  .c4p--datagrid-filter-flyout__trigger--open.cds--btn.cds--btn--icon-only {
16582
16801
  position: relative;
16583
16802
  background-color: var(--cds-layer-02, #ffffff);
@@ -16701,6 +16920,10 @@ button.c4p--add-select__global-filter-toggle--open {
16701
16920
  }
16702
16921
 
16703
16922
  .cds--btn.c4p--datagrid-filter-panel-open-button {
16923
+ display: flex;
16924
+ width: 3rem;
16925
+ height: 3rem;
16926
+ justify-content: center;
16704
16927
  border-right: 1px solid var(--cds-layer-accent-01, #e0e0e0);
16705
16928
  border-bottom: none;
16706
16929
  }
@@ -17229,7 +17452,7 @@ th.c4p--datagrid__select-all-toggle-on.button {
17229
17452
  .c4p--datagrid__datagridWrap :global(.cds--checkbox) {
17230
17453
  display: none;
17231
17454
  }
17232
- .c4p--datagrid__datagridWrap .bx--overflow-menu-options > .c4p--datagrid__row-size-dropdown {
17455
+ .c4p--datagrid__datagridWrap .cds--overflow-menu-options > .c4p--datagrid__row-size-dropdown {
17233
17456
  left: 0.125rem;
17234
17457
  width: 112px;
17235
17458
  }