@carbon/ibm-products 1.27.0 → 1.32.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (167) hide show
  1. package/css/index-full-carbon.css +570 -80
  2. package/css/index-full-carbon.css.map +1 -1
  3. package/css/index-full-carbon.min.css +3 -3
  4. package/css/index-full-carbon.min.css.map +1 -1
  5. package/css/index-without-carbon-released-only.css +942 -23
  6. package/css/index-without-carbon-released-only.css.map +1 -1
  7. package/css/index-without-carbon-released-only.min.css +3 -3
  8. package/css/index-without-carbon-released-only.min.css.map +1 -1
  9. package/css/index-without-carbon.css +569 -79
  10. package/css/index-without-carbon.css.map +1 -1
  11. package/css/index-without-carbon.min.css +3 -3
  12. package/css/index-without-carbon.min.css.map +1 -1
  13. package/css/index.css +570 -80
  14. package/css/index.css.map +1 -1
  15. package/css/index.min.css +3 -3
  16. package/css/index.min.css.map +1 -1
  17. package/es/components/AddSelect/AddSelect.js +0 -3
  18. package/es/components/AddSelect/AddSelectBody.js +20 -3
  19. package/es/components/AddSelect/AddSelectBreadcrumbs.js +11 -3
  20. package/es/components/AddSelect/AddSelectColumn.js +4 -3
  21. package/es/components/AddSelect/AddSelectFilter.js +4 -3
  22. package/es/components/AddSelect/AddSelectList.js +40 -14
  23. package/es/components/Card/Card.js +16 -6
  24. package/es/components/Card/CardFooter.js +3 -1
  25. package/es/components/Card/CardHeader.js +20 -1
  26. package/es/components/DataSpreadsheet/DataSpreadsheet.js +63 -11
  27. package/es/components/DataSpreadsheet/DataSpreadsheetBody.js +2 -1
  28. package/es/components/DataSpreadsheet/DataSpreadsheetHeader.js +7 -0
  29. package/es/components/DataSpreadsheet/utils/handleCellDeletion.js +31 -0
  30. package/es/components/DataSpreadsheet/utils/handleMultipleKeys.js +1 -1
  31. package/es/components/Datagrid/Datagrid/Datagrid.js +10 -38
  32. package/es/components/Datagrid/Datagrid/DatagridContent.js +127 -0
  33. package/es/components/Datagrid/Datagrid/DatagridExpandedRow.js +9 -1
  34. package/es/components/Datagrid/Datagrid/DatagridSelectAll.js +10 -3
  35. package/es/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +12 -3
  36. package/es/components/Datagrid/Datagrid/DraggableElement.js +5 -1
  37. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +5 -40
  38. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +35 -10
  39. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsModal.js +61 -24
  40. package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/ModalWrapper.js +3 -2
  41. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +60 -0
  42. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/index.js +1 -0
  43. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +467 -0
  44. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/index.js +1 -0
  45. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +112 -0
  46. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +27 -0
  47. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/index.js +1 -0
  48. package/es/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +39 -0
  49. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +19 -0
  50. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +263 -0
  51. package/es/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +66 -0
  52. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +6 -5
  53. package/es/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +1 -2
  54. package/es/components/Datagrid/index.js +3 -1
  55. package/es/components/Datagrid/useActionsColumn.js +28 -12
  56. package/es/components/Datagrid/useColumnOrder.js +8 -0
  57. package/es/components/Datagrid/useCustomizeColumns.js +5 -0
  58. package/es/components/Datagrid/useDisableSelectRows.js +6 -2
  59. package/es/components/Datagrid/useExpandedRow.js +0 -1
  60. package/es/components/Datagrid/useInlineEdit.js +71 -0
  61. package/es/components/Datagrid/useNestedRowExpander.js +42 -0
  62. package/es/components/Datagrid/useNestedRows.js +2 -2
  63. package/es/components/Datagrid/useRowSize.js +17 -6
  64. package/es/components/Datagrid/useSelectAllToggle.js +17 -4
  65. package/es/components/Datagrid/useSelectRows.js +12 -2
  66. package/es/components/Datagrid/useStickyColumn.js +11 -0
  67. package/es/components/Datagrid/utils/DatagridActions.js +121 -0
  68. package/es/components/Datagrid/utils/DatagridPagination.js +33 -0
  69. package/es/components/Datagrid/utils/Wrapper.js +21 -0
  70. package/es/components/Datagrid/utils/getArgTypes.js +85 -0
  71. package/es/components/Datagrid/utils/getInlineEditColumns.js +121 -0
  72. package/es/components/Datagrid/utils/makeData.js +17 -1
  73. package/es/components/ImportModal/ImportModal.js +2 -2
  74. package/es/components/InlineEdit/InlineEdit.js +4 -2
  75. package/es/components/ProductiveCard/ProductiveCard.js +5 -0
  76. package/es/components/index.js +1 -1
  77. package/es/global/js/hooks/useClickOutside.js +1 -1
  78. package/es/global/js/package-settings.js +3 -3
  79. package/es/global/js/utils/rangeWithCallback.js +13 -0
  80. package/es/global/js/utils/story-helper.js +5 -1
  81. package/es/global/js/utils/uuidv4.spec.js +4 -0
  82. package/lib/components/AddSelect/AddSelect.js +0 -4
  83. package/lib/components/AddSelect/AddSelectBody.js +20 -3
  84. package/lib/components/AddSelect/AddSelectBreadcrumbs.js +14 -3
  85. package/lib/components/AddSelect/AddSelectColumn.js +3 -2
  86. package/lib/components/AddSelect/AddSelectFilter.js +3 -2
  87. package/lib/components/AddSelect/AddSelectList.js +39 -13
  88. package/lib/components/Card/Card.js +16 -6
  89. package/lib/components/Card/CardFooter.js +3 -1
  90. package/lib/components/Card/CardHeader.js +21 -1
  91. package/lib/components/DataSpreadsheet/DataSpreadsheet.js +63 -10
  92. package/lib/components/DataSpreadsheet/DataSpreadsheetBody.js +2 -1
  93. package/lib/components/DataSpreadsheet/DataSpreadsheetHeader.js +7 -0
  94. package/lib/components/DataSpreadsheet/utils/handleCellDeletion.js +42 -0
  95. package/lib/components/DataSpreadsheet/utils/handleMultipleKeys.js +1 -1
  96. package/lib/components/Datagrid/Datagrid/Datagrid.js +12 -45
  97. package/lib/components/Datagrid/Datagrid/DatagridContent.js +160 -0
  98. package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.js +9 -1
  99. package/lib/components/Datagrid/Datagrid/DatagridSelectAll.js +12 -3
  100. package/lib/components/Datagrid/Datagrid/DatagridSelectAllWithToggle.js +14 -3
  101. package/lib/components/Datagrid/Datagrid/DraggableElement.js +5 -1
  102. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Actions.js +12 -41
  103. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +47 -25
  104. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsModal.js +59 -23
  105. package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/ModalWrapper.js +3 -2
  106. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/InlineEditButton.js +76 -0
  107. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditButton/index.js +13 -0
  108. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/InlineEditCell.js +491 -0
  109. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditCell/index.js +13 -0
  110. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/InlineEditContext.js +129 -0
  111. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/getCellIdAsObject.js +36 -0
  112. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/index.js +19 -0
  113. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/InlineEditContext/returnUpdatedActiveCell.js +45 -0
  114. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridFocus.js +28 -0
  115. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleGridKeyPress.js +272 -0
  116. package/lib/components/Datagrid/Datagrid/addons/InlineEdit/handleMultipleKeys.js +78 -0
  117. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeDropdown.js +6 -5
  118. package/lib/components/Datagrid/Datagrid/addons/RowSize/RowSizeRadioGroup.js +1 -2
  119. package/lib/components/Datagrid/index.js +17 -1
  120. package/lib/components/Datagrid/useActionsColumn.js +28 -13
  121. package/lib/components/Datagrid/useColumnOrder.js +17 -0
  122. package/lib/components/Datagrid/useCustomizeColumns.js +5 -0
  123. package/lib/components/Datagrid/useDisableSelectRows.js +6 -2
  124. package/lib/components/Datagrid/useExpandedRow.js +0 -1
  125. package/lib/components/Datagrid/useInlineEdit.js +85 -0
  126. package/lib/components/Datagrid/useNestedRowExpander.js +57 -0
  127. package/lib/components/Datagrid/useNestedRows.js +3 -3
  128. package/lib/components/Datagrid/useRowSize.js +18 -13
  129. package/lib/components/Datagrid/useSelectAllToggle.js +18 -4
  130. package/lib/components/Datagrid/useSelectRows.js +12 -2
  131. package/lib/components/Datagrid/useStickyColumn.js +11 -0
  132. package/lib/components/Datagrid/utils/DatagridActions.js +139 -0
  133. package/lib/components/Datagrid/utils/DatagridPagination.js +46 -0
  134. package/lib/components/Datagrid/utils/Wrapper.js +33 -0
  135. package/lib/components/Datagrid/utils/getArgTypes.js +93 -0
  136. package/lib/components/Datagrid/utils/getInlineEditColumns.js +133 -0
  137. package/lib/components/Datagrid/utils/makeData.js +17 -1
  138. package/lib/components/ImportModal/ImportModal.js +2 -2
  139. package/lib/components/InlineEdit/InlineEdit.js +4 -2
  140. package/lib/components/ProductiveCard/ProductiveCard.js +5 -0
  141. package/lib/components/index.js +12 -0
  142. package/lib/global/js/hooks/useClickOutside.js +1 -1
  143. package/lib/global/js/package-settings.js +3 -3
  144. package/lib/global/js/utils/rangeWithCallback.js +22 -0
  145. package/lib/global/js/utils/story-helper.js +5 -1
  146. package/lib/global/js/utils/uuidv4.spec.js +4 -0
  147. package/package.json +13 -13
  148. package/scss/components/AddSelect/_add-select.scss +126 -28
  149. package/scss/components/Card/_card.scss +1 -0
  150. package/scss/components/Cascade/_cascade.scss +1 -1
  151. package/scss/components/CreateTearsheet/_create-tearsheet.scss +1 -0
  152. package/scss/components/DataSpreadsheet/_data-spreadsheet.scss +18 -1
  153. package/scss/components/Datagrid/_storybook-styles.scss +1 -1
  154. package/scss/components/Datagrid/styles/_datagrid.scss +27 -4
  155. package/scss/components/Datagrid/styles/_draggableElement.scss +26 -9
  156. package/scss/components/Datagrid/styles/_index.scss +1 -0
  157. package/scss/components/Datagrid/styles/_useActionsColumn.scss +12 -0
  158. package/scss/components/Datagrid/styles/_useExpandedRow.scss +30 -0
  159. package/scss/components/Datagrid/styles/_useInlineEdit.scss +211 -0
  160. package/scss/components/Datagrid/styles/_useNestedRows.scss +15 -1
  161. package/scss/components/Datagrid/styles/_useStickyColumn.scss +30 -2
  162. package/scss/components/Datagrid/styles/addons/_CustomizeColumnsModal.scss +44 -6
  163. package/scss/components/NotificationsPanel/_notifications-panel.scss +5 -6
  164. package/scss/components/ProductiveCard/_productive-card.scss +39 -0
  165. package/scss/components/RemoveModal/_remove-modal.scss +0 -4
  166. package/scss/components/SidePanel/_side-panel.scss +4 -6
  167. package/scss/components/_index-released-only.scss +1 -0
@@ -738,8 +738,7 @@
738
738
  box-sizing: border-box;
739
739
  background-color: var(--cds-ui-01, #f4f4f4);
740
740
  color: var(--cds-text-01, #161616);
741
- transition: transform 240ms;
742
- transition-timing-function: cubic-bezier(0.2, 0, 0.38, 0.9);
741
+ transition: transform 240ms cubic-bezier(0.2, 0, 0.38, 0.9);
743
742
  }
744
743
  .c4p--side-panel__container.c4p--side-panel__container--xs {
745
744
  width: 16rem;
@@ -1039,6 +1038,7 @@
1039
1038
  background-color: var(--cds-ui-01, #f4f4f4);
1040
1039
  opacity: var(--c4p--side-panel--subtitle-opacity);
1041
1040
  transform: translateY(var(--c4p--side-panel--title-y-position));
1041
+ word-break: break-word;
1042
1042
  }
1043
1043
  .c4p--side-panel__container .c4p--side-panel__label-text {
1044
1044
  font-size: var(--cds-label-01-font-size, 0.75rem);
@@ -1148,8 +1148,7 @@
1148
1148
  padding: 0 var(--cds-spacing-05, 1rem);
1149
1149
  margin-bottom: var(--cds-spacing-03, 0.5rem);
1150
1150
  background-color: var(--cds-ui-01, #f4f4f4);
1151
- transition: transform 150ms;
1152
- transition-timing-function: cubic-bezier(0.2, 0, 0.38, 0.9);
1151
+ transition: transform 150ms cubic-bezier(0.2, 0, 0.38, 0.9);
1153
1152
  }
1154
1153
  .c4p--side-panel__container .c4p--side-panel__action-toolbar .c4p--side-panel__action-toolbar-button {
1155
1154
  min-width: 2rem;
@@ -1275,8 +1274,7 @@
1275
1274
  width: 100%;
1276
1275
  height: 100%;
1277
1276
  background-color: var(--cds-overlay-01, rgba(22, 22, 22, 0.5));
1278
- transition: background-color 240ms;
1279
- transition-timing-function: cubic-bezier(0.2, 0, 0.38, 0.9);
1277
+ transition: background-color 240ms cubic-bezier(0.2, 0, 0.38, 0.9);
1280
1278
  }
1281
1279
 
1282
1280
  .c4p--create-side-panel.c4p--side-panel__container .c4p--create-side-panel__content-text {
@@ -2111,7 +2109,7 @@
2111
2109
 
2112
2110
  .c4p--http-errors .c4p--http-errors__title {
2113
2111
  font-size: var(--cds-productive-heading-05-font-size, 2rem);
2114
- font-weight: var(--cds-productive-heading-05-font-weight, 400);
2112
+ font-weight: var(--cds-productive-heading-05-font-weight, 300);
2115
2113
  line-height: var(--cds-productive-heading-05-line-height, 1.25);
2116
2114
  letter-spacing: var(--cds-productive-heading-05-letter-spacing, 0);
2117
2115
  margin-bottom: var(--cds-spacing-04, 0.75rem);
@@ -2727,7 +2725,7 @@
2727
2725
  --cds-productive-heading-04-line-height: 1.28572;
2728
2726
  --cds-productive-heading-04-letter-spacing: 0;
2729
2727
  --cds-productive-heading-05-font-size: 2rem;
2730
- --cds-productive-heading-05-font-weight: 400;
2728
+ --cds-productive-heading-05-font-weight: 300;
2731
2729
  --cds-productive-heading-05-line-height: 1.25;
2732
2730
  --cds-productive-heading-05-letter-spacing: 0;
2733
2731
  --cds-productive-heading-06-font-size: 2.625rem;
@@ -2755,7 +2753,7 @@
2755
2753
  --cds-expressive-heading-04-line-height: 1.28572;
2756
2754
  --cds-expressive-heading-04-letter-spacing: 0;
2757
2755
  --cds-expressive-heading-05-font-size: 2rem;
2758
- --cds-expressive-heading-05-font-weight: 400;
2756
+ --cds-expressive-heading-05-font-weight: 300;
2759
2757
  --cds-expressive-heading-05-line-height: 1.25;
2760
2758
  --cds-expressive-heading-05-letter-spacing: 0;
2761
2759
  --cds-expressive-heading-06-font-size: 2rem;
@@ -2789,7 +2787,7 @@
2789
2787
  --cds-display-03-line-height: 1.19;
2790
2788
  --cds-display-03-letter-spacing: 0;
2791
2789
  --cds-display-04-font-size: 2.625rem;
2792
- --cds-display-04-font-weight: 600;
2790
+ --cds-display-04-font-weight: 300;
2793
2791
  --cds-display-04-line-height: 1.19;
2794
2792
  --cds-display-04-letter-spacing: 0;
2795
2793
  --cds-legal-01-font-size: 0.75rem;
@@ -2833,7 +2831,7 @@
2833
2831
  --cds-heading-04-line-height: 1.28572;
2834
2832
  --cds-heading-04-letter-spacing: 0;
2835
2833
  --cds-heading-05-font-size: 2rem;
2836
- --cds-heading-05-font-weight: 400;
2834
+ --cds-heading-05-font-weight: 300;
2837
2835
  --cds-heading-05-line-height: 1.25;
2838
2836
  --cds-heading-05-letter-spacing: 0;
2839
2837
  --cds-heading-06-font-size: 2.625rem;
@@ -2853,7 +2851,7 @@
2853
2851
  --cds-fluid-heading-04-line-height: 1.28572;
2854
2852
  --cds-fluid-heading-04-letter-spacing: 0;
2855
2853
  --cds-fluid-heading-05-font-size: 2rem;
2856
- --cds-fluid-heading-05-font-weight: 400;
2854
+ --cds-fluid-heading-05-font-weight: 300;
2857
2855
  --cds-fluid-heading-05-line-height: 1.25;
2858
2856
  --cds-fluid-heading-05-letter-spacing: 0;
2859
2857
  --cds-fluid-heading-06-font-size: 2rem;
@@ -2887,7 +2885,7 @@
2887
2885
  --cds-fluid-display-03-line-height: 1.19;
2888
2886
  --cds-fluid-display-03-letter-spacing: 0;
2889
2887
  --cds-fluid-display-04-font-size: 2.625rem;
2890
- --cds-fluid-display-04-font-weight: 600;
2888
+ --cds-fluid-display-04-font-weight: 300;
2891
2889
  --cds-fluid-display-04-line-height: 1.19;
2892
2890
  --cds-fluid-display-04-letter-spacing: 0;
2893
2891
  --cds-spacing-01: 0.125rem;
@@ -2938,8 +2936,7 @@
2938
2936
  max-height: 38.5rem;
2939
2937
  background-color: var(--cds-ui-background, #ffffff);
2940
2938
  color: var(--cds-text-01, #161616);
2941
- transition: transform 110ms;
2942
- transition-timing-function: cubic-bezier(0.2, 0, 0.38, 0.9);
2939
+ transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
2943
2940
  }
2944
2941
  .c4p--notifications-panel__container .c4p--notifications-panel__header-container {
2945
2942
  position: sticky;
@@ -3004,8 +3001,7 @@
3004
3001
  background-color: var(--cds-ui-background, #ffffff);
3005
3002
  cursor: pointer;
3006
3003
  text-align: left;
3007
- transition: background-color 240ms;
3008
- transition-timing-function: cubic-bezier(0.2, 0, 0.38, 0.9);
3004
+ transition: background-color 240ms cubic-bezier(0.2, 0, 0.38, 0.9);
3009
3005
  }
3010
3006
  .c4p--notifications-panel__container .c4p--notifications-panel__notification .c4p--notifications-panel__notification-title {
3011
3007
  margin-bottom: var(--cds-spacing-02, 0.25rem);
@@ -3110,8 +3106,7 @@
3110
3106
  margin: 0 auto;
3111
3107
  background-color: var(--cds-ui-02, #ffffff);
3112
3108
  content: "";
3113
- transition: background-color 240ms;
3114
- transition-timing-function: cubic-bezier(0.2, 0, 0.38, 0.9);
3109
+ transition: background-color 240ms cubic-bezier(0.2, 0, 0.38, 0.9);
3115
3110
  }
3116
3111
  .c4p--notifications-panel__container .c4p--notifications-panel__notification-today:hover + .c4p--notifications-panel__notification-today:not(:first-of-type):before,
3117
3112
  .c4p--notifications-panel__container .c4p--notifications-panel__notification-yesterday:hover + .c4p--notifications-panel__notification-yesterday:not(:first-of-type):before,
@@ -3963,6 +3958,28 @@
3963
3958
  margin-top: calc(-1 * var(--cds-spacing-02, 0.25rem));
3964
3959
  margin-right: var(--cds-spacing-03, 0.5rem);
3965
3960
  }
3961
+ .c4p--card__productive .c4p--card__actions-header .bx--btn:hover + .c4p--card__actions-header-ghost-button.bx--btn--ghost.bx--btn--sm::before {
3962
+ opacity: 0;
3963
+ }
3964
+ .c4p--card__productive .c4p--card__actions-header-ghost-button.bx--btn--ghost.bx--btn--sm {
3965
+ padding-right: calc(var(--cds-spacing-01, 0.125rem) + var(--cds-spacing-03, 0.5rem));
3966
+ padding-left: calc(var(--cds-spacing-01, 0.125rem) + var(--cds-spacing-03, 0.5rem));
3967
+ }
3968
+ .c4p--card__productive .c4p--card__actions-header-ghost-button.bx--btn--ghost.bx--btn--sm::before {
3969
+ position: absolute;
3970
+ left: 0;
3971
+ width: 0.05rem;
3972
+ height: var(--cds-spacing-06, 1.5rem);
3973
+ background-color: var(--cds-hover-ui, #e5e5e5);
3974
+ content: "";
3975
+ opacity: 1;
3976
+ }
3977
+ .c4p--card__productive .c4p--card__actions-header-ghost-button.bx--btn--ghost.bx--btn--sm:hover::before {
3978
+ opacity: 0;
3979
+ }
3980
+ .c4p--card__productive .c4p--card__actions-header-ghost-button--only.bx--btn--ghost.bx--btn--sm::before {
3981
+ opacity: 0;
3982
+ }
3966
3983
  .c4p--card__productive .c4p--card__title-lg .c4p--card__actions-header,
3967
3984
  .c4p--card__productive .c4p--card__header-has-label .c4p--card__actions-header {
3968
3985
  margin-top: 0;
@@ -3982,10 +3999,6 @@
3982
3999
  padding-right: var(--cds-spacing-05, 1rem);
3983
4000
  }
3984
4001
 
3985
- .c4p--remove-modal .bx--modal-close {
3986
- display: none;
3987
- }
3988
-
3989
4002
  .c4p--remove-modal__body {
3990
4003
  padding-right: 20%;
3991
4004
  margin-bottom: var(--cds-spacing-05, 1rem);
@@ -4826,4 +4839,910 @@
4826
4839
  font-weight: 600;
4827
4840
  }
4828
4841
 
4842
+ @keyframes web-terminal-entrance {
4843
+ from {
4844
+ opacity: 0;
4845
+ transform: translateX(40rem);
4846
+ }
4847
+ to {
4848
+ opacity: 1;
4849
+ transform: translateX(0);
4850
+ }
4851
+ }
4852
+ @keyframes web-terminal-exit {
4853
+ from {
4854
+ opacity: 1;
4855
+ transform: translateX(0);
4856
+ }
4857
+ to {
4858
+ opacity: 0;
4859
+ transform: translateX(40rem);
4860
+ }
4861
+ }
4862
+ /*
4863
+ The reason for not using theme tokens in the web terminal
4864
+ component is because we want these colors to always be the same
4865
+ despite of which carbon theme the user has.
4866
+ */
4867
+ .c4p--web-terminal {
4868
+ --cds-interactive-01: #0f62fe;
4869
+ --cds-interactive-02: #6f6f6f;
4870
+ --cds-interactive-03: #ffffff;
4871
+ --cds-interactive-04: #4589ff;
4872
+ --cds-ui-background: #262626;
4873
+ --cds-ui-01: #393939;
4874
+ --cds-ui-02: #525252;
4875
+ --cds-ui-03: #525252;
4876
+ --cds-ui-04: #8d8d8d;
4877
+ --cds-ui-05: #f4f4f4;
4878
+ --cds-text-01: #f4f4f4;
4879
+ --cds-text-02: #c6c6c6;
4880
+ --cds-text-03: #6f6f6f;
4881
+ --cds-text-04: #ffffff;
4882
+ --cds-text-05: #8d8d8d;
4883
+ --cds-text-error: #ffb3b8;
4884
+ --cds-icon-01: #f4f4f4;
4885
+ --cds-icon-02: #c6c6c6;
4886
+ --cds-icon-03: #ffffff;
4887
+ --cds-link-01: #78a9ff;
4888
+ --cds-link-02: #a6c8ff;
4889
+ --cds-inverse-link: #0f62fe;
4890
+ --cds-field-01: #393939;
4891
+ --cds-field-02: #525252;
4892
+ --cds-inverse-01: #161616;
4893
+ --cds-inverse-02: #f4f4f4;
4894
+ --cds-support-01: #ff8389;
4895
+ --cds-support-02: #42be65;
4896
+ --cds-support-03: #f1c21b;
4897
+ --cds-support-04: #4589ff;
4898
+ --cds-inverse-support-01: #da1e28;
4899
+ --cds-inverse-support-02: #24a148;
4900
+ --cds-inverse-support-03: #f1c21b;
4901
+ --cds-inverse-support-04: #0f62fe;
4902
+ --cds-overlay-01: rgba(0, 0, 0, 0.65);
4903
+ --cds-danger-01: #da1e28;
4904
+ --cds-danger-02: #ff8389;
4905
+ --cds-focus: #ffffff;
4906
+ --cds-inverse-focus-ui: #0f62fe;
4907
+ --cds-hover-primary: #0353e9;
4908
+ --cds-active-primary: #002d9c;
4909
+ --cds-hover-primary-text: #a6c8ff;
4910
+ --cds-hover-secondary: #606060;
4911
+ --cds-active-secondary: #393939;
4912
+ --cds-hover-tertiary: #f4f4f4;
4913
+ --cds-active-tertiary: #c6c6c6;
4914
+ --cds-hover-ui: #4c4c4c;
4915
+ --cds-hover-light-ui: #656565;
4916
+ --cds-hover-selected-ui: #656565;
4917
+ --cds-active-ui: #6f6f6f;
4918
+ --cds-active-light-ui: #8d8d8d;
4919
+ --cds-selected-ui: #525252;
4920
+ --cds-selected-light-ui: #6f6f6f;
4921
+ --cds-inverse-hover-ui: #e5e5e5;
4922
+ --cds-hover-danger: #b81921;
4923
+ --cds-active-danger: #750e13;
4924
+ --cds-hover-row: #4c4c4c;
4925
+ --cds-visited-link: #be95ff;
4926
+ --cds-disabled-01: #393939;
4927
+ --cds-disabled-02: #6f6f6f;
4928
+ --cds-disabled-03: #a8a8a8;
4929
+ --cds-highlight: #0043ce;
4930
+ --cds-decorative-01: #6f6f6f;
4931
+ --cds-button-separator: #161616;
4932
+ --cds-skeleton-01: #353535;
4933
+ --cds-skeleton-02: #525252;
4934
+ --cds-background: #262626;
4935
+ --cds-layer: #393939;
4936
+ --cds-layer-accent: #525252;
4937
+ --cds-layer-accent-hover: #636363;
4938
+ --cds-layer-accent-active: #8d8d8d;
4939
+ --cds-field: #393939;
4940
+ --cds-background-inverse: #f4f4f4;
4941
+ --cds-background-brand: #0f62fe;
4942
+ --cds-interactive: #4589ff;
4943
+ --cds-border-subtle: #525252;
4944
+ --cds-border-strong: #8d8d8d;
4945
+ --cds-border-inverse: #f4f4f4;
4946
+ --cds-border-interactive: #4589ff;
4947
+ --cds-text-primary: #f4f4f4;
4948
+ --cds-text-secondary: #c6c6c6;
4949
+ --cds-text-placeholder: #6f6f6f;
4950
+ --cds-text-helper: #8d8d8d;
4951
+ --cds-text-on-color: #ffffff;
4952
+ --cds-text-inverse: #161616;
4953
+ --cds-link-primary: #78a9ff;
4954
+ --cds-link-secondary: #a6c8ff;
4955
+ --cds-link-visited: #be95ff;
4956
+ --cds-link-inverse: #0f62fe;
4957
+ --cds-icon-primary: #f4f4f4;
4958
+ --cds-icon-secondary: #c6c6c6;
4959
+ --cds-icon-on-color: #ffffff;
4960
+ --cds-icon-inverse: #161616;
4961
+ --cds-support-error: #ff8389;
4962
+ --cds-support-success: #42be65;
4963
+ --cds-support-warning: #f1c21b;
4964
+ --cds-support-info: #4589ff;
4965
+ --cds-support-error-inverse: #da1e28;
4966
+ --cds-support-success-inverse: #24a148;
4967
+ --cds-support-warning-inverse: #f1c21b;
4968
+ --cds-support-info-inverse: #0f62fe;
4969
+ --cds-overlay: rgba(0, 0, 0, 0.65);
4970
+ --cds-toggle-off: #8d8d8d;
4971
+ --cds-shadow: rgba(0, 0, 0, 0.8);
4972
+ --cds-button-primary: #0f62fe;
4973
+ --cds-button-secondary: #6f6f6f;
4974
+ --cds-button-tertiary: #ffffff;
4975
+ --cds-button-danger-primary: #da1e28;
4976
+ --cds-button-danger-secondary: #ff8389;
4977
+ --cds-background-active: #6f6f6f;
4978
+ --cds-layer-active: #6f6f6f;
4979
+ --cds-button-danger-active: #750e13;
4980
+ --cds-button-primary-active: #002d9c;
4981
+ --cds-button-secondary-active: #393939;
4982
+ --cds-button-tertiary-active: #c6c6c6;
4983
+ --cds-focus-inset: #161616;
4984
+ --cds-focus-inverse: #0f62fe;
4985
+ --cds-background-hover: #4c4c4c;
4986
+ --cds-layer-hover: #4c4c4c;
4987
+ --cds-field-hover: #4c4c4c;
4988
+ --cds-background-inverse-hover: #e5e5e5;
4989
+ --cds-link-primary-hover: #a6c8ff;
4990
+ --cds-button-danger-hover: #b81921;
4991
+ --cds-button-primary-hover: #0353e9;
4992
+ --cds-button-secondary-hover: #606060;
4993
+ --cds-button-tertiary-hover: #f4f4f4;
4994
+ --cds-background-selected: #525252;
4995
+ --cds-background-selected-hover: #656565;
4996
+ --cds-layer-selected: #525252;
4997
+ --cds-layer-selected-hover: #656565;
4998
+ --cds-layer-selected-inverse: #f4f4f4;
4999
+ --cds-border-subtle-selected: #6f6f6f;
5000
+ --cds-border-disabled: #393939;
5001
+ --cds-text-disabled: #6f6f6f;
5002
+ --cds-button-disabled: #6f6f6f;
5003
+ --cds-icon-disabled: #6f6f6f;
5004
+ --cds-text-on-color-disabled: #a8a8a8;
5005
+ --cds-icon-on-color-disabled: #a8a8a8;
5006
+ --cds-layer-selected-disabled: #a8a8a8;
5007
+ --cds-skeleton-background: #353535;
5008
+ --cds-skeleton-element: #525252;
5009
+ --cds-brand-01: #0f62fe;
5010
+ --cds-brand-02: #6f6f6f;
5011
+ --cds-brand-03: #ffffff;
5012
+ --cds-active-01: #6f6f6f;
5013
+ --cds-hover-field: #4c4c4c;
5014
+ --cds-danger: #da1e28;
5015
+ --cds-caption-01-font-size: 0.75rem;
5016
+ --cds-caption-01-font-weight: 400;
5017
+ --cds-caption-01-line-height: 1.33333;
5018
+ --cds-caption-01-letter-spacing: 0.32px;
5019
+ --cds-caption-02-font-size: 0.875rem;
5020
+ --cds-caption-02-font-weight: 400;
5021
+ --cds-caption-02-line-height: 1.28572;
5022
+ --cds-caption-02-letter-spacing: 0.32px;
5023
+ --cds-label-01-font-size: 0.75rem;
5024
+ --cds-label-01-font-weight: 400;
5025
+ --cds-label-01-line-height: 1.33333;
5026
+ --cds-label-01-letter-spacing: 0.32px;
5027
+ --cds-label-02-font-size: 0.875rem;
5028
+ --cds-label-02-font-weight: 400;
5029
+ --cds-label-02-line-height: 1.28572;
5030
+ --cds-label-02-letter-spacing: 0.16px;
5031
+ --cds-helper-text-01-font-size: 0.75rem;
5032
+ --cds-helper-text-01-line-height: 1.33333;
5033
+ --cds-helper-text-01-letter-spacing: 0.32px;
5034
+ --cds-helper-text-02-font-size: 0.875rem;
5035
+ --cds-helper-text-02-line-height: 1.28572;
5036
+ --cds-helper-text-02-letter-spacing: 0.16px;
5037
+ --cds-body-short-01-font-size: 0.875rem;
5038
+ --cds-body-short-01-font-weight: 400;
5039
+ --cds-body-short-01-line-height: 1.28572;
5040
+ --cds-body-short-01-letter-spacing: 0.16px;
5041
+ --cds-body-long-01-font-size: 0.875rem;
5042
+ --cds-body-long-01-font-weight: 400;
5043
+ --cds-body-long-01-line-height: 1.42857;
5044
+ --cds-body-long-01-letter-spacing: 0.16px;
5045
+ --cds-body-short-02-font-size: 1rem;
5046
+ --cds-body-short-02-font-weight: 400;
5047
+ --cds-body-short-02-line-height: 1.375;
5048
+ --cds-body-short-02-letter-spacing: 0;
5049
+ --cds-body-long-02-font-size: 1rem;
5050
+ --cds-body-long-02-font-weight: 400;
5051
+ --cds-body-long-02-line-height: 1.5;
5052
+ --cds-body-long-02-letter-spacing: 0;
5053
+ --cds-code-01-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
5054
+ --cds-code-01-font-size: 0.75rem;
5055
+ --cds-code-01-font-weight: 400;
5056
+ --cds-code-01-line-height: 1.33333;
5057
+ --cds-code-01-letter-spacing: 0.32px;
5058
+ --cds-code-02-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
5059
+ --cds-code-02-font-size: 0.875rem;
5060
+ --cds-code-02-font-weight: 400;
5061
+ --cds-code-02-line-height: 1.42857;
5062
+ --cds-code-02-letter-spacing: 0.32px;
5063
+ --cds-heading-01-font-size: 0.875rem;
5064
+ --cds-heading-01-font-weight: 600;
5065
+ --cds-heading-01-line-height: 1.42857;
5066
+ --cds-heading-01-letter-spacing: 0.16px;
5067
+ --cds-productive-heading-01-font-size: 0.875rem;
5068
+ --cds-productive-heading-01-font-weight: 600;
5069
+ --cds-productive-heading-01-line-height: 1.28572;
5070
+ --cds-productive-heading-01-letter-spacing: 0.16px;
5071
+ --cds-heading-02-font-size: 1rem;
5072
+ --cds-heading-02-font-weight: 600;
5073
+ --cds-heading-02-line-height: 1.5;
5074
+ --cds-heading-02-letter-spacing: 0;
5075
+ --cds-productive-heading-02-font-size: 1rem;
5076
+ --cds-productive-heading-02-font-weight: 600;
5077
+ --cds-productive-heading-02-line-height: 1.375;
5078
+ --cds-productive-heading-02-letter-spacing: 0;
5079
+ --cds-productive-heading-03-font-size: 1.25rem;
5080
+ --cds-productive-heading-03-font-weight: 400;
5081
+ --cds-productive-heading-03-line-height: 1.4;
5082
+ --cds-productive-heading-03-letter-spacing: 0;
5083
+ --cds-productive-heading-04-font-size: 1.75rem;
5084
+ --cds-productive-heading-04-font-weight: 400;
5085
+ --cds-productive-heading-04-line-height: 1.28572;
5086
+ --cds-productive-heading-04-letter-spacing: 0;
5087
+ --cds-productive-heading-05-font-size: 2rem;
5088
+ --cds-productive-heading-05-font-weight: 300;
5089
+ --cds-productive-heading-05-line-height: 1.25;
5090
+ --cds-productive-heading-05-letter-spacing: 0;
5091
+ --cds-productive-heading-06-font-size: 2.625rem;
5092
+ --cds-productive-heading-06-font-weight: 300;
5093
+ --cds-productive-heading-06-line-height: 1.199;
5094
+ --cds-productive-heading-06-letter-spacing: 0;
5095
+ --cds-productive-heading-07-font-size: 3.375rem;
5096
+ --cds-productive-heading-07-font-weight: 300;
5097
+ --cds-productive-heading-07-line-height: 1.199;
5098
+ --cds-productive-heading-07-letter-spacing: 0;
5099
+ --cds-expressive-heading-01-font-size: 0.875rem;
5100
+ --cds-expressive-heading-01-font-weight: 600;
5101
+ --cds-expressive-heading-01-line-height: 1.25;
5102
+ --cds-expressive-heading-01-letter-spacing: 0.16px;
5103
+ --cds-expressive-heading-02-font-size: 1rem;
5104
+ --cds-expressive-heading-02-font-weight: 600;
5105
+ --cds-expressive-heading-02-line-height: 1.5;
5106
+ --cds-expressive-heading-02-letter-spacing: 0;
5107
+ --cds-expressive-heading-03-font-size: 1.25rem;
5108
+ --cds-expressive-heading-03-font-weight: 400;
5109
+ --cds-expressive-heading-03-line-height: 1.4;
5110
+ --cds-expressive-heading-03-letter-spacing: 0;
5111
+ --cds-expressive-heading-04-font-size: 1.75rem;
5112
+ --cds-expressive-heading-04-font-weight: 400;
5113
+ --cds-expressive-heading-04-line-height: 1.28572;
5114
+ --cds-expressive-heading-04-letter-spacing: 0;
5115
+ --cds-expressive-heading-05-font-size: 2rem;
5116
+ --cds-expressive-heading-05-font-weight: 300;
5117
+ --cds-expressive-heading-05-line-height: 1.25;
5118
+ --cds-expressive-heading-05-letter-spacing: 0;
5119
+ --cds-expressive-heading-06-font-size: 2rem;
5120
+ --cds-expressive-heading-06-font-weight: 600;
5121
+ --cds-expressive-heading-06-line-height: 1.25;
5122
+ --cds-expressive-heading-06-letter-spacing: 0;
5123
+ --cds-expressive-paragraph-01-font-size: 1.5rem;
5124
+ --cds-expressive-paragraph-01-font-weight: 300;
5125
+ --cds-expressive-paragraph-01-line-height: 1.334;
5126
+ --cds-expressive-paragraph-01-letter-spacing: 0;
5127
+ --cds-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
5128
+ --cds-quotation-01-font-size: 1.25rem;
5129
+ --cds-quotation-01-font-weight: 400;
5130
+ --cds-quotation-01-line-height: 1.3;
5131
+ --cds-quotation-01-letter-spacing: 0;
5132
+ --cds-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
5133
+ --cds-quotation-02-font-size: 2rem;
5134
+ --cds-quotation-02-font-weight: 300;
5135
+ --cds-quotation-02-line-height: 1.25;
5136
+ --cds-quotation-02-letter-spacing: 0;
5137
+ --cds-display-01-font-size: 2.625rem;
5138
+ --cds-display-01-font-weight: 300;
5139
+ --cds-display-01-line-height: 1.19;
5140
+ --cds-display-01-letter-spacing: 0;
5141
+ --cds-display-02-font-size: 2.625rem;
5142
+ --cds-display-02-font-weight: 600;
5143
+ --cds-display-02-line-height: 1.19;
5144
+ --cds-display-02-letter-spacing: 0;
5145
+ --cds-display-03-font-size: 2.625rem;
5146
+ --cds-display-03-font-weight: 300;
5147
+ --cds-display-03-line-height: 1.19;
5148
+ --cds-display-03-letter-spacing: 0;
5149
+ --cds-display-04-font-size: 2.625rem;
5150
+ --cds-display-04-font-weight: 300;
5151
+ --cds-display-04-line-height: 1.19;
5152
+ --cds-display-04-letter-spacing: 0;
5153
+ --cds-legal-01-font-size: 0.75rem;
5154
+ --cds-legal-01-font-weight: 400;
5155
+ --cds-legal-01-line-height: 1.33333;
5156
+ --cds-legal-01-letter-spacing: 0.32px;
5157
+ --cds-legal-02-font-size: 0.875rem;
5158
+ --cds-legal-02-font-weight: 400;
5159
+ --cds-legal-02-line-height: 1.28572;
5160
+ --cds-legal-02-letter-spacing: 0.16px;
5161
+ --cds-body-compact-01-font-size: 0.875rem;
5162
+ --cds-body-compact-01-font-weight: 400;
5163
+ --cds-body-compact-01-line-height: 1.28572;
5164
+ --cds-body-compact-01-letter-spacing: 0.16px;
5165
+ --cds-body-compact-02-font-size: 1rem;
5166
+ --cds-body-compact-02-font-weight: 400;
5167
+ --cds-body-compact-02-line-height: 1.375;
5168
+ --cds-body-compact-02-letter-spacing: 0;
5169
+ --cds-body-01-font-size: 0.875rem;
5170
+ --cds-body-01-font-weight: 400;
5171
+ --cds-body-01-line-height: 1.42857;
5172
+ --cds-body-01-letter-spacing: 0.16px;
5173
+ --cds-body-02-font-size: 1rem;
5174
+ --cds-body-02-font-weight: 400;
5175
+ --cds-body-02-line-height: 1.5;
5176
+ --cds-body-02-letter-spacing: 0;
5177
+ --cds-heading-compact-01-font-size: 0.875rem;
5178
+ --cds-heading-compact-01-font-weight: 600;
5179
+ --cds-heading-compact-01-line-height: 1.28572;
5180
+ --cds-heading-compact-01-letter-spacing: 0.16px;
5181
+ --cds-heading-compact-02-font-size: 1rem;
5182
+ --cds-heading-compact-02-font-weight: 600;
5183
+ --cds-heading-compact-02-line-height: 1.375;
5184
+ --cds-heading-compact-02-letter-spacing: 0;
5185
+ --cds-heading-03-font-size: 1.25rem;
5186
+ --cds-heading-03-font-weight: 400;
5187
+ --cds-heading-03-line-height: 1.4;
5188
+ --cds-heading-03-letter-spacing: 0;
5189
+ --cds-heading-04-font-size: 1.75rem;
5190
+ --cds-heading-04-font-weight: 400;
5191
+ --cds-heading-04-line-height: 1.28572;
5192
+ --cds-heading-04-letter-spacing: 0;
5193
+ --cds-heading-05-font-size: 2rem;
5194
+ --cds-heading-05-font-weight: 300;
5195
+ --cds-heading-05-line-height: 1.25;
5196
+ --cds-heading-05-letter-spacing: 0;
5197
+ --cds-heading-06-font-size: 2.625rem;
5198
+ --cds-heading-06-font-weight: 300;
5199
+ --cds-heading-06-line-height: 1.199;
5200
+ --cds-heading-06-letter-spacing: 0;
5201
+ --cds-heading-07-font-size: 3.375rem;
5202
+ --cds-heading-07-font-weight: 300;
5203
+ --cds-heading-07-line-height: 1.199;
5204
+ --cds-heading-07-letter-spacing: 0;
5205
+ --cds-fluid-heading-03-font-size: 1.25rem;
5206
+ --cds-fluid-heading-03-font-weight: 400;
5207
+ --cds-fluid-heading-03-line-height: 1.4;
5208
+ --cds-fluid-heading-03-letter-spacing: 0;
5209
+ --cds-fluid-heading-04-font-size: 1.75rem;
5210
+ --cds-fluid-heading-04-font-weight: 400;
5211
+ --cds-fluid-heading-04-line-height: 1.28572;
5212
+ --cds-fluid-heading-04-letter-spacing: 0;
5213
+ --cds-fluid-heading-05-font-size: 2rem;
5214
+ --cds-fluid-heading-05-font-weight: 300;
5215
+ --cds-fluid-heading-05-line-height: 1.25;
5216
+ --cds-fluid-heading-05-letter-spacing: 0;
5217
+ --cds-fluid-heading-06-font-size: 2rem;
5218
+ --cds-fluid-heading-06-font-weight: 600;
5219
+ --cds-fluid-heading-06-line-height: 1.25;
5220
+ --cds-fluid-heading-06-letter-spacing: 0;
5221
+ --cds-fluid-paragraph-01-font-size: 1.5rem;
5222
+ --cds-fluid-paragraph-01-font-weight: 300;
5223
+ --cds-fluid-paragraph-01-line-height: 1.334;
5224
+ --cds-fluid-paragraph-01-letter-spacing: 0;
5225
+ --cds-fluid-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
5226
+ --cds-fluid-quotation-01-font-size: 1.25rem;
5227
+ --cds-fluid-quotation-01-font-weight: 400;
5228
+ --cds-fluid-quotation-01-line-height: 1.3;
5229
+ --cds-fluid-quotation-01-letter-spacing: 0;
5230
+ --cds-fluid-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
5231
+ --cds-fluid-quotation-02-font-size: 2rem;
5232
+ --cds-fluid-quotation-02-font-weight: 300;
5233
+ --cds-fluid-quotation-02-line-height: 1.25;
5234
+ --cds-fluid-quotation-02-letter-spacing: 0;
5235
+ --cds-fluid-display-01-font-size: 2.625rem;
5236
+ --cds-fluid-display-01-font-weight: 300;
5237
+ --cds-fluid-display-01-line-height: 1.19;
5238
+ --cds-fluid-display-01-letter-spacing: 0;
5239
+ --cds-fluid-display-02-font-size: 2.625rem;
5240
+ --cds-fluid-display-02-font-weight: 600;
5241
+ --cds-fluid-display-02-line-height: 1.19;
5242
+ --cds-fluid-display-02-letter-spacing: 0;
5243
+ --cds-fluid-display-03-font-size: 2.625rem;
5244
+ --cds-fluid-display-03-font-weight: 300;
5245
+ --cds-fluid-display-03-line-height: 1.19;
5246
+ --cds-fluid-display-03-letter-spacing: 0;
5247
+ --cds-fluid-display-04-font-size: 2.625rem;
5248
+ --cds-fluid-display-04-font-weight: 300;
5249
+ --cds-fluid-display-04-line-height: 1.19;
5250
+ --cds-fluid-display-04-letter-spacing: 0;
5251
+ --cds-spacing-01: 0.125rem;
5252
+ --cds-spacing-02: 0.25rem;
5253
+ --cds-spacing-03: 0.5rem;
5254
+ --cds-spacing-04: 0.75rem;
5255
+ --cds-spacing-05: 1rem;
5256
+ --cds-spacing-06: 1.5rem;
5257
+ --cds-spacing-07: 2rem;
5258
+ --cds-spacing-08: 2.5rem;
5259
+ --cds-spacing-09: 3rem;
5260
+ --cds-spacing-10: 4rem;
5261
+ --cds-spacing-11: 5rem;
5262
+ --cds-spacing-12: 6rem;
5263
+ --cds-spacing-13: 10rem;
5264
+ --cds-fluid-spacing-01: 0;
5265
+ --cds-fluid-spacing-02: 2vw;
5266
+ --cds-fluid-spacing-03: 5vw;
5267
+ --cds-fluid-spacing-04: 10vw;
5268
+ --cds-layout-01: 1rem;
5269
+ --cds-layout-02: 1.5rem;
5270
+ --cds-layout-03: 2rem;
5271
+ --cds-layout-04: 3rem;
5272
+ --cds-layout-05: 4rem;
5273
+ --cds-layout-06: 6rem;
5274
+ --cds-layout-07: 10rem;
5275
+ --cds-container-01: 1.5rem;
5276
+ --cds-container-02: 2rem;
5277
+ --cds-container-03: 2.5rem;
5278
+ --cds-container-04: 3rem;
5279
+ --cds-container-05: 4rem;
5280
+ --cds-size-xsmall: 1.5rem;
5281
+ --cds-size-small: 2rem;
5282
+ --cds-size-medium: 2.5rem;
5283
+ --cds-size-large: 3rem;
5284
+ --cds-size-xlarge: 4rem;
5285
+ --cds-size-2XLarge: 5rem;
5286
+ --cds-icon-size-01: 1rem;
5287
+ --cds-icon-size-02: 1.25rem;
5288
+ position: fixed;
5289
+ top: var(--cds-spacing-09, 3rem);
5290
+ right: 0;
5291
+ width: 100%;
5292
+ max-width: 40rem;
5293
+ height: calc(100vh - var(--cds-spacing-09, 3rem));
5294
+ border-left: 1px solid #262626;
5295
+ color: var(--cds-text-01, #161616);
5296
+ /* stylelint-disable-next-line */
5297
+ background-color: #161616;
5298
+ }
5299
+
5300
+ .c4p--web-terminal__bar {
5301
+ display: flex;
5302
+ height: 3rem;
5303
+ align-items: center;
5304
+ justify-content: space-between;
5305
+ background-color: var(--cds-ui-background, #ffffff);
5306
+ }
5307
+
5308
+ .c4p--web-terminal__actions {
5309
+ display: flex;
5310
+ }
5311
+
5312
+ .c4p--web-terminal__documentation-overflow {
5313
+ --cds-interactive-01: #0f62fe;
5314
+ --cds-interactive-02: #6f6f6f;
5315
+ --cds-interactive-03: #ffffff;
5316
+ --cds-interactive-04: #4589ff;
5317
+ --cds-ui-background: #161616;
5318
+ --cds-ui-01: #262626;
5319
+ --cds-ui-02: #393939;
5320
+ --cds-ui-03: #393939;
5321
+ --cds-ui-04: #6f6f6f;
5322
+ --cds-ui-05: #f4f4f4;
5323
+ --cds-text-01: #f4f4f4;
5324
+ --cds-text-02: #c6c6c6;
5325
+ --cds-text-03: #6f6f6f;
5326
+ --cds-text-04: #ffffff;
5327
+ --cds-text-05: #8d8d8d;
5328
+ --cds-text-error: #ff8389;
5329
+ --cds-icon-01: #f4f4f4;
5330
+ --cds-icon-02: #c6c6c6;
5331
+ --cds-icon-03: #ffffff;
5332
+ --cds-link-01: #78a9ff;
5333
+ --cds-link-02: #a6c8ff;
5334
+ --cds-inverse-link: #0f62fe;
5335
+ --cds-field-01: #262626;
5336
+ --cds-field-02: #393939;
5337
+ --cds-inverse-01: #161616;
5338
+ --cds-inverse-02: #f4f4f4;
5339
+ --cds-support-01: #fa4d56;
5340
+ --cds-support-02: #42be65;
5341
+ --cds-support-03: #f1c21b;
5342
+ --cds-support-04: #4589ff;
5343
+ --cds-inverse-support-01: #da1e28;
5344
+ --cds-inverse-support-02: #24a148;
5345
+ --cds-inverse-support-03: #f1c21b;
5346
+ --cds-inverse-support-04: #0f62fe;
5347
+ --cds-overlay-01: rgba(0, 0, 0, 0.65);
5348
+ --cds-danger-01: #da1e28;
5349
+ --cds-danger-02: #fa4d56;
5350
+ --cds-focus: #ffffff;
5351
+ --cds-inverse-focus-ui: #0f62fe;
5352
+ --cds-hover-primary: #0353e9;
5353
+ --cds-active-primary: #002d9c;
5354
+ --cds-hover-primary-text: #a6c8ff;
5355
+ --cds-hover-secondary: #606060;
5356
+ --cds-active-secondary: #393939;
5357
+ --cds-hover-tertiary: #f4f4f4;
5358
+ --cds-active-tertiary: #c6c6c6;
5359
+ --cds-hover-ui: #353535;
5360
+ --cds-hover-light-ui: #4c4c4c;
5361
+ --cds-hover-selected-ui: #4c4c4c;
5362
+ --cds-active-ui: #525252;
5363
+ --cds-active-light-ui: #6f6f6f;
5364
+ --cds-selected-ui: #393939;
5365
+ --cds-selected-light-ui: #525252;
5366
+ --cds-inverse-hover-ui: #e5e5e5;
5367
+ --cds-hover-danger: #b81921;
5368
+ --cds-active-danger: #750e13;
5369
+ --cds-hover-row: #353535;
5370
+ --cds-visited-link: #be95ff;
5371
+ --cds-disabled-01: #262626;
5372
+ --cds-disabled-02: #525252;
5373
+ --cds-disabled-03: #8d8d8d;
5374
+ --cds-highlight: #002d9c;
5375
+ --cds-decorative-01: #525252;
5376
+ --cds-button-separator: #161616;
5377
+ --cds-skeleton-01: #353535;
5378
+ --cds-skeleton-02: #525252;
5379
+ --cds-background: #161616;
5380
+ --cds-layer: #262626;
5381
+ --cds-layer-accent: #393939;
5382
+ --cds-layer-accent-hover: #474747;
5383
+ --cds-layer-accent-active: #6f6f6f;
5384
+ --cds-field: #262626;
5385
+ --cds-background-inverse: #f4f4f4;
5386
+ --cds-background-brand: #0f62fe;
5387
+ --cds-interactive: #4589ff;
5388
+ --cds-border-subtle: #393939;
5389
+ --cds-border-strong: #6f6f6f;
5390
+ --cds-border-inverse: #f4f4f4;
5391
+ --cds-border-interactive: #4589ff;
5392
+ --cds-text-primary: #f4f4f4;
5393
+ --cds-text-secondary: #c6c6c6;
5394
+ --cds-text-placeholder: #6f6f6f;
5395
+ --cds-text-helper: #8d8d8d;
5396
+ --cds-text-on-color: #ffffff;
5397
+ --cds-text-inverse: #161616;
5398
+ --cds-link-primary: #78a9ff;
5399
+ --cds-link-secondary: #a6c8ff;
5400
+ --cds-link-visited: #be95ff;
5401
+ --cds-link-inverse: #0f62fe;
5402
+ --cds-icon-primary: #f4f4f4;
5403
+ --cds-icon-secondary: #c6c6c6;
5404
+ --cds-icon-on-color: #ffffff;
5405
+ --cds-icon-inverse: #161616;
5406
+ --cds-support-error: #fa4d56;
5407
+ --cds-support-success: #42be65;
5408
+ --cds-support-warning: #f1c21b;
5409
+ --cds-support-info: #4589ff;
5410
+ --cds-support-error-inverse: #da1e28;
5411
+ --cds-support-success-inverse: #24a148;
5412
+ --cds-support-warning-inverse: #f1c21b;
5413
+ --cds-support-info-inverse: #0f62fe;
5414
+ --cds-overlay: rgba(0, 0, 0, 0.65);
5415
+ --cds-toggle-off: #6f6f6f;
5416
+ --cds-shadow: rgba(0, 0, 0, 0.8);
5417
+ --cds-button-primary: #0f62fe;
5418
+ --cds-button-secondary: #6f6f6f;
5419
+ --cds-button-tertiary: #ffffff;
5420
+ --cds-button-danger-primary: #da1e28;
5421
+ --cds-button-danger-secondary: #fa4d56;
5422
+ --cds-background-active: #525252;
5423
+ --cds-layer-active: #525252;
5424
+ --cds-button-danger-active: #750e13;
5425
+ --cds-button-primary-active: #002d9c;
5426
+ --cds-button-secondary-active: #393939;
5427
+ --cds-button-tertiary-active: #c6c6c6;
5428
+ --cds-focus-inset: #161616;
5429
+ --cds-focus-inverse: #0f62fe;
5430
+ --cds-background-hover: #353535;
5431
+ --cds-layer-hover: #353535;
5432
+ --cds-field-hover: #353535;
5433
+ --cds-background-inverse-hover: #e5e5e5;
5434
+ --cds-link-primary-hover: #a6c8ff;
5435
+ --cds-button-danger-hover: #b81921;
5436
+ --cds-button-primary-hover: #0353e9;
5437
+ --cds-button-secondary-hover: #606060;
5438
+ --cds-button-tertiary-hover: #f4f4f4;
5439
+ --cds-background-selected: #393939;
5440
+ --cds-background-selected-hover: #4c4c4c;
5441
+ --cds-layer-selected: #393939;
5442
+ --cds-layer-selected-hover: #4c4c4c;
5443
+ --cds-layer-selected-inverse: #f4f4f4;
5444
+ --cds-border-subtle-selected: #525252;
5445
+ --cds-border-disabled: #262626;
5446
+ --cds-text-disabled: #525252;
5447
+ --cds-button-disabled: #525252;
5448
+ --cds-icon-disabled: #525252;
5449
+ --cds-text-on-color-disabled: #8d8d8d;
5450
+ --cds-icon-on-color-disabled: #8d8d8d;
5451
+ --cds-layer-selected-disabled: #8d8d8d;
5452
+ --cds-skeleton-background: #353535;
5453
+ --cds-skeleton-element: #525252;
5454
+ --cds-brand-01: #0f62fe;
5455
+ --cds-brand-02: #6f6f6f;
5456
+ --cds-brand-03: #ffffff;
5457
+ --cds-active-01: #525252;
5458
+ --cds-hover-field: #353535;
5459
+ --cds-danger: #da1e28;
5460
+ --cds-caption-01-font-size: 0.75rem;
5461
+ --cds-caption-01-font-weight: 400;
5462
+ --cds-caption-01-line-height: 1.33333;
5463
+ --cds-caption-01-letter-spacing: 0.32px;
5464
+ --cds-caption-02-font-size: 0.875rem;
5465
+ --cds-caption-02-font-weight: 400;
5466
+ --cds-caption-02-line-height: 1.28572;
5467
+ --cds-caption-02-letter-spacing: 0.32px;
5468
+ --cds-label-01-font-size: 0.75rem;
5469
+ --cds-label-01-font-weight: 400;
5470
+ --cds-label-01-line-height: 1.33333;
5471
+ --cds-label-01-letter-spacing: 0.32px;
5472
+ --cds-label-02-font-size: 0.875rem;
5473
+ --cds-label-02-font-weight: 400;
5474
+ --cds-label-02-line-height: 1.28572;
5475
+ --cds-label-02-letter-spacing: 0.16px;
5476
+ --cds-helper-text-01-font-size: 0.75rem;
5477
+ --cds-helper-text-01-line-height: 1.33333;
5478
+ --cds-helper-text-01-letter-spacing: 0.32px;
5479
+ --cds-helper-text-02-font-size: 0.875rem;
5480
+ --cds-helper-text-02-line-height: 1.28572;
5481
+ --cds-helper-text-02-letter-spacing: 0.16px;
5482
+ --cds-body-short-01-font-size: 0.875rem;
5483
+ --cds-body-short-01-font-weight: 400;
5484
+ --cds-body-short-01-line-height: 1.28572;
5485
+ --cds-body-short-01-letter-spacing: 0.16px;
5486
+ --cds-body-long-01-font-size: 0.875rem;
5487
+ --cds-body-long-01-font-weight: 400;
5488
+ --cds-body-long-01-line-height: 1.42857;
5489
+ --cds-body-long-01-letter-spacing: 0.16px;
5490
+ --cds-body-short-02-font-size: 1rem;
5491
+ --cds-body-short-02-font-weight: 400;
5492
+ --cds-body-short-02-line-height: 1.375;
5493
+ --cds-body-short-02-letter-spacing: 0;
5494
+ --cds-body-long-02-font-size: 1rem;
5495
+ --cds-body-long-02-font-weight: 400;
5496
+ --cds-body-long-02-line-height: 1.5;
5497
+ --cds-body-long-02-letter-spacing: 0;
5498
+ --cds-code-01-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
5499
+ --cds-code-01-font-size: 0.75rem;
5500
+ --cds-code-01-font-weight: 400;
5501
+ --cds-code-01-line-height: 1.33333;
5502
+ --cds-code-01-letter-spacing: 0.32px;
5503
+ --cds-code-02-font-family: 'IBM Plex Mono', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', Courier, monospace;
5504
+ --cds-code-02-font-size: 0.875rem;
5505
+ --cds-code-02-font-weight: 400;
5506
+ --cds-code-02-line-height: 1.42857;
5507
+ --cds-code-02-letter-spacing: 0.32px;
5508
+ --cds-heading-01-font-size: 0.875rem;
5509
+ --cds-heading-01-font-weight: 600;
5510
+ --cds-heading-01-line-height: 1.42857;
5511
+ --cds-heading-01-letter-spacing: 0.16px;
5512
+ --cds-productive-heading-01-font-size: 0.875rem;
5513
+ --cds-productive-heading-01-font-weight: 600;
5514
+ --cds-productive-heading-01-line-height: 1.28572;
5515
+ --cds-productive-heading-01-letter-spacing: 0.16px;
5516
+ --cds-heading-02-font-size: 1rem;
5517
+ --cds-heading-02-font-weight: 600;
5518
+ --cds-heading-02-line-height: 1.5;
5519
+ --cds-heading-02-letter-spacing: 0;
5520
+ --cds-productive-heading-02-font-size: 1rem;
5521
+ --cds-productive-heading-02-font-weight: 600;
5522
+ --cds-productive-heading-02-line-height: 1.375;
5523
+ --cds-productive-heading-02-letter-spacing: 0;
5524
+ --cds-productive-heading-03-font-size: 1.25rem;
5525
+ --cds-productive-heading-03-font-weight: 400;
5526
+ --cds-productive-heading-03-line-height: 1.4;
5527
+ --cds-productive-heading-03-letter-spacing: 0;
5528
+ --cds-productive-heading-04-font-size: 1.75rem;
5529
+ --cds-productive-heading-04-font-weight: 400;
5530
+ --cds-productive-heading-04-line-height: 1.28572;
5531
+ --cds-productive-heading-04-letter-spacing: 0;
5532
+ --cds-productive-heading-05-font-size: 2rem;
5533
+ --cds-productive-heading-05-font-weight: 300;
5534
+ --cds-productive-heading-05-line-height: 1.25;
5535
+ --cds-productive-heading-05-letter-spacing: 0;
5536
+ --cds-productive-heading-06-font-size: 2.625rem;
5537
+ --cds-productive-heading-06-font-weight: 300;
5538
+ --cds-productive-heading-06-line-height: 1.199;
5539
+ --cds-productive-heading-06-letter-spacing: 0;
5540
+ --cds-productive-heading-07-font-size: 3.375rem;
5541
+ --cds-productive-heading-07-font-weight: 300;
5542
+ --cds-productive-heading-07-line-height: 1.199;
5543
+ --cds-productive-heading-07-letter-spacing: 0;
5544
+ --cds-expressive-heading-01-font-size: 0.875rem;
5545
+ --cds-expressive-heading-01-font-weight: 600;
5546
+ --cds-expressive-heading-01-line-height: 1.25;
5547
+ --cds-expressive-heading-01-letter-spacing: 0.16px;
5548
+ --cds-expressive-heading-02-font-size: 1rem;
5549
+ --cds-expressive-heading-02-font-weight: 600;
5550
+ --cds-expressive-heading-02-line-height: 1.5;
5551
+ --cds-expressive-heading-02-letter-spacing: 0;
5552
+ --cds-expressive-heading-03-font-size: 1.25rem;
5553
+ --cds-expressive-heading-03-font-weight: 400;
5554
+ --cds-expressive-heading-03-line-height: 1.4;
5555
+ --cds-expressive-heading-03-letter-spacing: 0;
5556
+ --cds-expressive-heading-04-font-size: 1.75rem;
5557
+ --cds-expressive-heading-04-font-weight: 400;
5558
+ --cds-expressive-heading-04-line-height: 1.28572;
5559
+ --cds-expressive-heading-04-letter-spacing: 0;
5560
+ --cds-expressive-heading-05-font-size: 2rem;
5561
+ --cds-expressive-heading-05-font-weight: 300;
5562
+ --cds-expressive-heading-05-line-height: 1.25;
5563
+ --cds-expressive-heading-05-letter-spacing: 0;
5564
+ --cds-expressive-heading-06-font-size: 2rem;
5565
+ --cds-expressive-heading-06-font-weight: 600;
5566
+ --cds-expressive-heading-06-line-height: 1.25;
5567
+ --cds-expressive-heading-06-letter-spacing: 0;
5568
+ --cds-expressive-paragraph-01-font-size: 1.5rem;
5569
+ --cds-expressive-paragraph-01-font-weight: 300;
5570
+ --cds-expressive-paragraph-01-line-height: 1.334;
5571
+ --cds-expressive-paragraph-01-letter-spacing: 0;
5572
+ --cds-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
5573
+ --cds-quotation-01-font-size: 1.25rem;
5574
+ --cds-quotation-01-font-weight: 400;
5575
+ --cds-quotation-01-line-height: 1.3;
5576
+ --cds-quotation-01-letter-spacing: 0;
5577
+ --cds-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
5578
+ --cds-quotation-02-font-size: 2rem;
5579
+ --cds-quotation-02-font-weight: 300;
5580
+ --cds-quotation-02-line-height: 1.25;
5581
+ --cds-quotation-02-letter-spacing: 0;
5582
+ --cds-display-01-font-size: 2.625rem;
5583
+ --cds-display-01-font-weight: 300;
5584
+ --cds-display-01-line-height: 1.19;
5585
+ --cds-display-01-letter-spacing: 0;
5586
+ --cds-display-02-font-size: 2.625rem;
5587
+ --cds-display-02-font-weight: 600;
5588
+ --cds-display-02-line-height: 1.19;
5589
+ --cds-display-02-letter-spacing: 0;
5590
+ --cds-display-03-font-size: 2.625rem;
5591
+ --cds-display-03-font-weight: 300;
5592
+ --cds-display-03-line-height: 1.19;
5593
+ --cds-display-03-letter-spacing: 0;
5594
+ --cds-display-04-font-size: 2.625rem;
5595
+ --cds-display-04-font-weight: 300;
5596
+ --cds-display-04-line-height: 1.19;
5597
+ --cds-display-04-letter-spacing: 0;
5598
+ --cds-legal-01-font-size: 0.75rem;
5599
+ --cds-legal-01-font-weight: 400;
5600
+ --cds-legal-01-line-height: 1.33333;
5601
+ --cds-legal-01-letter-spacing: 0.32px;
5602
+ --cds-legal-02-font-size: 0.875rem;
5603
+ --cds-legal-02-font-weight: 400;
5604
+ --cds-legal-02-line-height: 1.28572;
5605
+ --cds-legal-02-letter-spacing: 0.16px;
5606
+ --cds-body-compact-01-font-size: 0.875rem;
5607
+ --cds-body-compact-01-font-weight: 400;
5608
+ --cds-body-compact-01-line-height: 1.28572;
5609
+ --cds-body-compact-01-letter-spacing: 0.16px;
5610
+ --cds-body-compact-02-font-size: 1rem;
5611
+ --cds-body-compact-02-font-weight: 400;
5612
+ --cds-body-compact-02-line-height: 1.375;
5613
+ --cds-body-compact-02-letter-spacing: 0;
5614
+ --cds-body-01-font-size: 0.875rem;
5615
+ --cds-body-01-font-weight: 400;
5616
+ --cds-body-01-line-height: 1.42857;
5617
+ --cds-body-01-letter-spacing: 0.16px;
5618
+ --cds-body-02-font-size: 1rem;
5619
+ --cds-body-02-font-weight: 400;
5620
+ --cds-body-02-line-height: 1.5;
5621
+ --cds-body-02-letter-spacing: 0;
5622
+ --cds-heading-compact-01-font-size: 0.875rem;
5623
+ --cds-heading-compact-01-font-weight: 600;
5624
+ --cds-heading-compact-01-line-height: 1.28572;
5625
+ --cds-heading-compact-01-letter-spacing: 0.16px;
5626
+ --cds-heading-compact-02-font-size: 1rem;
5627
+ --cds-heading-compact-02-font-weight: 600;
5628
+ --cds-heading-compact-02-line-height: 1.375;
5629
+ --cds-heading-compact-02-letter-spacing: 0;
5630
+ --cds-heading-03-font-size: 1.25rem;
5631
+ --cds-heading-03-font-weight: 400;
5632
+ --cds-heading-03-line-height: 1.4;
5633
+ --cds-heading-03-letter-spacing: 0;
5634
+ --cds-heading-04-font-size: 1.75rem;
5635
+ --cds-heading-04-font-weight: 400;
5636
+ --cds-heading-04-line-height: 1.28572;
5637
+ --cds-heading-04-letter-spacing: 0;
5638
+ --cds-heading-05-font-size: 2rem;
5639
+ --cds-heading-05-font-weight: 300;
5640
+ --cds-heading-05-line-height: 1.25;
5641
+ --cds-heading-05-letter-spacing: 0;
5642
+ --cds-heading-06-font-size: 2.625rem;
5643
+ --cds-heading-06-font-weight: 300;
5644
+ --cds-heading-06-line-height: 1.199;
5645
+ --cds-heading-06-letter-spacing: 0;
5646
+ --cds-heading-07-font-size: 3.375rem;
5647
+ --cds-heading-07-font-weight: 300;
5648
+ --cds-heading-07-line-height: 1.199;
5649
+ --cds-heading-07-letter-spacing: 0;
5650
+ --cds-fluid-heading-03-font-size: 1.25rem;
5651
+ --cds-fluid-heading-03-font-weight: 400;
5652
+ --cds-fluid-heading-03-line-height: 1.4;
5653
+ --cds-fluid-heading-03-letter-spacing: 0;
5654
+ --cds-fluid-heading-04-font-size: 1.75rem;
5655
+ --cds-fluid-heading-04-font-weight: 400;
5656
+ --cds-fluid-heading-04-line-height: 1.28572;
5657
+ --cds-fluid-heading-04-letter-spacing: 0;
5658
+ --cds-fluid-heading-05-font-size: 2rem;
5659
+ --cds-fluid-heading-05-font-weight: 300;
5660
+ --cds-fluid-heading-05-line-height: 1.25;
5661
+ --cds-fluid-heading-05-letter-spacing: 0;
5662
+ --cds-fluid-heading-06-font-size: 2rem;
5663
+ --cds-fluid-heading-06-font-weight: 600;
5664
+ --cds-fluid-heading-06-line-height: 1.25;
5665
+ --cds-fluid-heading-06-letter-spacing: 0;
5666
+ --cds-fluid-paragraph-01-font-size: 1.5rem;
5667
+ --cds-fluid-paragraph-01-font-weight: 300;
5668
+ --cds-fluid-paragraph-01-line-height: 1.334;
5669
+ --cds-fluid-paragraph-01-letter-spacing: 0;
5670
+ --cds-fluid-quotation-01-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
5671
+ --cds-fluid-quotation-01-font-size: 1.25rem;
5672
+ --cds-fluid-quotation-01-font-weight: 400;
5673
+ --cds-fluid-quotation-01-line-height: 1.3;
5674
+ --cds-fluid-quotation-01-letter-spacing: 0;
5675
+ --cds-fluid-quotation-02-font-family: 'IBM Plex Serif', 'Georgia', Times, serif;
5676
+ --cds-fluid-quotation-02-font-size: 2rem;
5677
+ --cds-fluid-quotation-02-font-weight: 300;
5678
+ --cds-fluid-quotation-02-line-height: 1.25;
5679
+ --cds-fluid-quotation-02-letter-spacing: 0;
5680
+ --cds-fluid-display-01-font-size: 2.625rem;
5681
+ --cds-fluid-display-01-font-weight: 300;
5682
+ --cds-fluid-display-01-line-height: 1.19;
5683
+ --cds-fluid-display-01-letter-spacing: 0;
5684
+ --cds-fluid-display-02-font-size: 2.625rem;
5685
+ --cds-fluid-display-02-font-weight: 600;
5686
+ --cds-fluid-display-02-line-height: 1.19;
5687
+ --cds-fluid-display-02-letter-spacing: 0;
5688
+ --cds-fluid-display-03-font-size: 2.625rem;
5689
+ --cds-fluid-display-03-font-weight: 300;
5690
+ --cds-fluid-display-03-line-height: 1.19;
5691
+ --cds-fluid-display-03-letter-spacing: 0;
5692
+ --cds-fluid-display-04-font-size: 2.625rem;
5693
+ --cds-fluid-display-04-font-weight: 300;
5694
+ --cds-fluid-display-04-line-height: 1.19;
5695
+ --cds-fluid-display-04-letter-spacing: 0;
5696
+ --cds-spacing-01: 0.125rem;
5697
+ --cds-spacing-02: 0.25rem;
5698
+ --cds-spacing-03: 0.5rem;
5699
+ --cds-spacing-04: 0.75rem;
5700
+ --cds-spacing-05: 1rem;
5701
+ --cds-spacing-06: 1.5rem;
5702
+ --cds-spacing-07: 2rem;
5703
+ --cds-spacing-08: 2.5rem;
5704
+ --cds-spacing-09: 3rem;
5705
+ --cds-spacing-10: 4rem;
5706
+ --cds-spacing-11: 5rem;
5707
+ --cds-spacing-12: 6rem;
5708
+ --cds-spacing-13: 10rem;
5709
+ --cds-fluid-spacing-01: 0;
5710
+ --cds-fluid-spacing-02: 2vw;
5711
+ --cds-fluid-spacing-03: 5vw;
5712
+ --cds-fluid-spacing-04: 10vw;
5713
+ --cds-layout-01: 1rem;
5714
+ --cds-layout-02: 1.5rem;
5715
+ --cds-layout-03: 2rem;
5716
+ --cds-layout-04: 3rem;
5717
+ --cds-layout-05: 4rem;
5718
+ --cds-layout-06: 6rem;
5719
+ --cds-layout-07: 10rem;
5720
+ --cds-container-01: 1.5rem;
5721
+ --cds-container-02: 2rem;
5722
+ --cds-container-03: 2.5rem;
5723
+ --cds-container-04: 3rem;
5724
+ --cds-container-05: 4rem;
5725
+ --cds-size-xsmall: 1.5rem;
5726
+ --cds-size-small: 2rem;
5727
+ --cds-size-medium: 2.5rem;
5728
+ --cds-size-large: 3rem;
5729
+ --cds-size-xlarge: 4rem;
5730
+ --cds-size-2XLarge: 5rem;
5731
+ --cds-icon-size-01: 1rem;
5732
+ --cds-icon-size-02: 1.25rem;
5733
+ }
5734
+
5735
+ .c4p--web-terminal__body {
5736
+ height: 100%;
5737
+ }
5738
+
5739
+ .c4p--web-terminal-content-wrapper {
5740
+ width: 100vw;
5741
+ height: 100%;
5742
+ }
5743
+
5744
+ .c4p--web-terminal-content-wrapper--open {
5745
+ width: calc(100vw - 40rem);
5746
+ }
5747
+
4829
5748
  /*# sourceMappingURL=index-without-carbon-released-only.css.map */