@carbon/ibm-products 2.10.2 → 2.11.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.
- package/README.md +7 -0
- package/css/index-full-carbon.css +67 -26
- package/css/index-full-carbon.css.map +1 -1
- package/css/index-full-carbon.min.css +3 -3
- package/css/index-full-carbon.min.css.map +1 -1
- package/css/index-without-carbon-released-only.css +1 -0
- package/css/index-without-carbon-released-only.css.map +1 -1
- package/css/index-without-carbon-released-only.min.css.map +1 -1
- package/css/index-without-carbon.css +67 -26
- package/css/index-without-carbon.css.map +1 -1
- package/css/index-without-carbon.min.css +3 -3
- package/css/index-without-carbon.min.css.map +1 -1
- package/css/index.css +64 -25
- package/css/index.css.map +1 -1
- package/css/index.min.css +2 -2
- package/css/index.min.css.map +1 -1
- package/es/components/APIKeyModal/APIKeyModal.js +10 -3
- package/es/components/AboutModal/AboutModal.js +10 -3
- package/es/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +17 -5
- package/es/components/CreateModal/CreateModal.js +10 -3
- package/es/components/Datagrid/Datagrid/DatagridContent.js +9 -7
- package/es/components/Datagrid/Datagrid/DatagridEmptyBody.js +3 -2
- package/es/components/Datagrid/Datagrid/DatagridExpandedRow.js +26 -13
- package/es/components/Datagrid/Datagrid/DatagridRow.js +47 -40
- package/es/components/Datagrid/Datagrid/DraggableElement.js +36 -132
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +17 -49
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +125 -40
- package/es/components/Datagrid/useExpandedRow.js +1 -1
- package/es/components/Datagrid/utils/DatagridPagination.js +1 -1
- package/es/components/EmptyStates/EmptyState.js +1 -1
- package/es/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +1 -1
- package/es/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +1 -1
- package/es/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +1 -1
- package/es/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +1 -1
- package/es/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +1 -1
- package/es/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +1 -1
- package/es/components/EmptyStates/assets/ErrorIllustration.js +6 -11
- package/es/components/EmptyStates/assets/NoDataIllustration.js +6 -11
- package/es/components/EmptyStates/assets/NoTagsIllustration.js +6 -12
- package/es/components/EmptyStates/assets/NotFoundIllustration.js +6 -12
- package/es/components/EmptyStates/assets/NotificationsIllustration.js +6 -12
- package/es/components/EmptyStates/assets/UnauthorizedIllustration.js +6 -12
- package/es/components/ExportModal/ExportModal.js +10 -3
- package/es/components/ImportModal/ImportModal.js +10 -3
- package/es/components/RemoveModal/RemoveModal.js +10 -3
- package/es/components/TagSet/TagSet.js +5 -21
- package/es/components/TagSet/TagSetModal.js +7 -3
- package/es/components/Tearsheet/TearsheetShell.js +12 -26
- package/es/global/decorators/sidePanelDecorator.js +7 -0
- package/es/global/js/hooks/usePortalTarget.js +30 -0
- package/es/global/js/hooks/useWindowScroll.js +5 -0
- package/es/global/js/package-settings.js +0 -1
- package/es/global/js/utils/getNodeTextContent.js +47 -0
- package/flags.js +6 -0
- package/lib/components/APIKeyModal/APIKeyModal.js +10 -3
- package/lib/components/AboutModal/AboutModal.js +10 -3
- package/lib/components/ButtonSetWithOverflow/ButtonSetWithOverflow.js +17 -5
- package/lib/components/CreateModal/CreateModal.js +10 -3
- package/lib/components/Datagrid/Datagrid/DatagridContent.js +9 -7
- package/lib/components/Datagrid/Datagrid/DatagridEmptyBody.js +2 -1
- package/lib/components/Datagrid/Datagrid/DatagridExpandedRow.js +26 -13
- package/lib/components/Datagrid/Datagrid/DatagridRow.js +46 -41
- package/lib/components/Datagrid/Datagrid/DraggableElement.js +37 -137
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +20 -49
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/DraggableItemsList.js +130 -47
- package/lib/components/Datagrid/useExpandedRow.js +1 -1
- package/lib/components/Datagrid/utils/DatagridPagination.js +1 -1
- package/lib/components/EmptyStates/EmptyState.js +1 -1
- package/lib/components/EmptyStates/ErrorEmptyState/ErrorEmptyState.js +1 -1
- package/lib/components/EmptyStates/NoDataEmptyState/NoDataEmptyState.js +1 -1
- package/lib/components/EmptyStates/NoTagsEmptyState/NoTagsEmptyState.js +1 -1
- package/lib/components/EmptyStates/NotFoundEmptyState/NotFoundEmptyState.js +1 -1
- package/lib/components/EmptyStates/NotificationsEmptyState/NotificationsEmptyState.js +1 -1
- package/lib/components/EmptyStates/UnauthorizedEmptyState/UnauthorizedEmptyState.js +1 -1
- package/lib/components/EmptyStates/assets/ErrorIllustration.js +6 -11
- package/lib/components/EmptyStates/assets/NoDataIllustration.js +6 -11
- package/lib/components/EmptyStates/assets/NoTagsIllustration.js +6 -12
- package/lib/components/EmptyStates/assets/NotFoundIllustration.js +6 -12
- package/lib/components/EmptyStates/assets/NotificationsIllustration.js +6 -12
- package/lib/components/EmptyStates/assets/UnauthorizedIllustration.js +6 -12
- package/lib/components/ExportModal/ExportModal.js +10 -3
- package/lib/components/ImportModal/ImportModal.js +10 -3
- package/lib/components/RemoveModal/RemoveModal.js +10 -3
- package/lib/components/TagSet/TagSet.js +5 -21
- package/lib/components/TagSet/TagSetModal.js +7 -3
- package/lib/components/Tearsheet/TearsheetShell.js +12 -26
- package/lib/global/decorators/sidePanelDecorator.js +7 -0
- package/lib/global/js/hooks/usePortalTarget.js +38 -0
- package/lib/global/js/hooks/useWindowScroll.js +6 -0
- package/lib/global/js/package-settings.js +0 -1
- package/lib/global/js/utils/getNodeTextContent.js +55 -0
- package/package.json +7 -3
- package/scss/components/ActionSet/_action-set.scss +2 -1
- package/scss/components/Datagrid/styles/_datagrid.scss +6 -6
- package/scss/components/Datagrid/styles/_draggableElement.scss +34 -16
- package/scss/components/Datagrid/styles/_useExpandedRow.scss +13 -0
- package/scss/components/Datagrid/styles/addons/_CustomizeColumnsTearsheet.scss +1 -1
- package/scss/components/Datagrid/styles/addons/_FilterFlyout.scss +22 -11
- package/scss/components/Datagrid/styles/addons/_FilterPanel.scss +6 -3
- package/scss/components/FilterSummary/_filter-summary.scss +2 -1
- package/scss/global/decorators/_side-panel-decorator.scss +7 -0
- package/scss/global/js/utils/_story-as-full-page.scss +0 -6
package/README.md
CHANGED
|
@@ -169,6 +169,13 @@ pkg.feature['Component.feature'] = true;
|
|
|
169
169
|
pkg.setAllFeatures(true);
|
|
170
170
|
```
|
|
171
171
|
|
|
172
|
+
The default values for component and feature flag settings can be found by
|
|
173
|
+
running the following command.
|
|
174
|
+
|
|
175
|
+
```bash
|
|
176
|
+
node node_modules/@carbon/ibm-products/flags.js
|
|
177
|
+
```
|
|
178
|
+
|
|
172
179
|
**Note:** The above settings must happen before a component first renders or a
|
|
173
180
|
feature is first used.
|
|
174
181
|
|
|
@@ -2049,6 +2049,7 @@ p.c4p--about-modal__copyright-text:first-child {
|
|
|
2049
2049
|
.c4p--action-set.cds--btn-set.c4p--action-set--xl .c4p--action-set__action-button:not(.c4p--action-set__action-button--ghost),
|
|
2050
2050
|
.c4p--action-set.cds--btn-set.c4p--action-set--2xl .c4p--action-set__action-button:not(.c4p--action-set__action-button--ghost),
|
|
2051
2051
|
.c4p--action-set.cds--btn-set.c4p--action-set--row-quadruple .c4p--action-set__action-button:not(.c4p--action-set__action-button--ghost) {
|
|
2052
|
+
/* stylelint-disable-next-line function-no-unknown -- to-rem carbon replacement for rem */
|
|
2052
2053
|
max-width: 14.5rem;
|
|
2053
2054
|
flex: 0 1 25%;
|
|
2054
2055
|
}
|
|
@@ -5163,7 +5164,8 @@ c4p--card__icon:active {
|
|
|
5163
5164
|
.c4p--filter-summary {
|
|
5164
5165
|
display: flex;
|
|
5165
5166
|
width: 100%;
|
|
5166
|
-
|
|
5167
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
5168
|
+
height: to-rem(48px);
|
|
5167
5169
|
align-items: center;
|
|
5168
5170
|
padding: 0.5rem;
|
|
5169
5171
|
border-top: 1px solid var(--cds-border-subtle-01, #c6c6c6);
|
|
@@ -11315,10 +11317,10 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
11315
11317
|
padding-bottom: 0.125rem;
|
|
11316
11318
|
}
|
|
11317
11319
|
.c4p--datagrid__grid-container table.c4p--datagrid__vertical-align-center.c4p--datagrid__variable-row-height.cds--data-table--short .c4p--datagrid__cell, .c4p--datagrid__grid-container table.c4p--datagrid__vertical-align-center.c4p--datagrid__variable-row-height.cds--data-table--sm .c4p--datagrid__cell, .c4p--datagrid__grid-container table.c4p--datagrid__vertical-align-center.c4p--datagrid__variable-row-height.cds--data-table--md .c4p--datagrid__cell {
|
|
11318
|
-
/* stylelint-disable-next-line
|
|
11319
|
-
padding-top: rem(7px);
|
|
11320
|
-
/* stylelint-disable-next-line
|
|
11321
|
-
padding-bottom: rem(6px);
|
|
11320
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
11321
|
+
padding-top: to-rem(7px);
|
|
11322
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
11323
|
+
padding-bottom: to-rem(6px);
|
|
11322
11324
|
}
|
|
11323
11325
|
.c4p--datagrid__grid-container table.c4p--datagrid__vertical-align-center.c4p--datagrid__variable-row-height.cds--data-table--tall .c4p--datagrid__cell, .c4p--datagrid__grid-container table.c4p--datagrid__vertical-align-center.c4p--datagrid__variable-row-height.cds--data-table--lg .c4p--datagrid__cell, .c4p--datagrid__grid-container table.c4p--datagrid__vertical-align-center.c4p--datagrid__variable-row-height.cds--data-table--xl .c4p--datagrid__cell {
|
|
11324
11326
|
padding-top: 1rem;
|
|
@@ -11331,8 +11333,8 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
11331
11333
|
padding-top: 1rem;
|
|
11332
11334
|
}
|
|
11333
11335
|
.c4p--datagrid__grid-container table.c4p--datagrid__vertical-align-top.cds--data-table--tall .cds--table-column-checkbox, .c4p--datagrid__grid-container table.c4p--datagrid__vertical-align-top.cds--data-table--lg .cds--table-column-checkbox, .c4p--datagrid__grid-container table.c4p--datagrid__vertical-align-top.cds--data-table--xl .cds--table-column-checkbox {
|
|
11334
|
-
/* stylelint-disable-next-line
|
|
11335
|
-
padding-top: rem(13px);
|
|
11336
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
11337
|
+
padding-top: to-rem(13px);
|
|
11336
11338
|
}
|
|
11337
11339
|
.c4p--datagrid__grid-container table.c4p--datagrid__vertical-align-top.c4p--datagrid__variable-row-height.cds--data-table--tall .c4p--datagrid__cell, .c4p--datagrid__grid-container table.c4p--datagrid__vertical-align-top.c4p--datagrid__variable-row-height.cds--data-table--lg .c4p--datagrid__cell, .c4p--datagrid__grid-container table.c4p--datagrid__vertical-align-top.c4p--datagrid__variable-row-height.cds--data-table--xl .c4p--datagrid__cell {
|
|
11338
11340
|
padding-bottom: 1rem;
|
|
@@ -12225,6 +12227,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
12225
12227
|
* US Government Users Restricted Rights - Use, duplication or disclosure
|
|
12226
12228
|
* restricted by GSA ADP Schedule Contract with IBM Corp.
|
|
12227
12229
|
*/
|
|
12230
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
12228
12231
|
.c4p--datagrid-filter-flyout__container {
|
|
12229
12232
|
position: relative;
|
|
12230
12233
|
}
|
|
@@ -12234,8 +12237,10 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
12234
12237
|
top: 3rem;
|
|
12235
12238
|
right: 0;
|
|
12236
12239
|
display: none;
|
|
12240
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
12237
12241
|
width: 40.125rem;
|
|
12238
12242
|
background-color: var(--cds-layer-02, #ffffff);
|
|
12243
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
12239
12244
|
box-shadow: 0 1px 0.5rem 0 rgba(0, 0, 0, 0.25);
|
|
12240
12245
|
}
|
|
12241
12246
|
|
|
@@ -12244,11 +12249,14 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
12244
12249
|
}
|
|
12245
12250
|
|
|
12246
12251
|
.c4p--datagrid-filter-flyout--batch {
|
|
12252
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
12247
12253
|
min-height: 21.625rem;
|
|
12254
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
12248
12255
|
grid-template-rows: 1fr 3rem;
|
|
12249
12256
|
}
|
|
12250
12257
|
|
|
12251
12258
|
.c4p--datagrid-filter-flyout--instant {
|
|
12259
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
12252
12260
|
min-height: 17.625rem;
|
|
12253
12261
|
grid-template-rows: 1fr;
|
|
12254
12262
|
}
|
|
@@ -12259,10 +12267,13 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
12259
12267
|
|
|
12260
12268
|
.c4p--datagrid-filter-flyout__inner-container::before {
|
|
12261
12269
|
position: absolute;
|
|
12270
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
12262
12271
|
top: -0.4375rem;
|
|
12263
12272
|
right: 1px;
|
|
12264
12273
|
display: block;
|
|
12274
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
12265
12275
|
width: 2.875rem;
|
|
12276
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
12266
12277
|
height: 0.9375rem;
|
|
12267
12278
|
background-color: var(--cds-layer-02, #ffffff);
|
|
12268
12279
|
content: "";
|
|
@@ -12279,6 +12290,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
12279
12290
|
|
|
12280
12291
|
.c4p--datagrid-filter-flyout__filters {
|
|
12281
12292
|
display: grid;
|
|
12293
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
12282
12294
|
gap: 1rem 2rem;
|
|
12283
12295
|
grid-template-columns: 1fr 1fr;
|
|
12284
12296
|
}
|
|
@@ -12293,6 +12305,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
12293
12305
|
.c4p--datagrid-filter-flyout__trigger--open.cds--btn.cds--btn--icon-only {
|
|
12294
12306
|
position: relative;
|
|
12295
12307
|
background-color: var(--cds-layer-02, #ffffff);
|
|
12308
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
12296
12309
|
box-shadow: 0 1px 0.5rem 0 rgba(0, 0, 0, 0.25);
|
|
12297
12310
|
}
|
|
12298
12311
|
|
|
@@ -12309,7 +12322,8 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
12309
12322
|
*/
|
|
12310
12323
|
.c4p--datagrid-filter-panel__container {
|
|
12311
12324
|
position: relative;
|
|
12312
|
-
|
|
12325
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
12326
|
+
width: to-rem(320px);
|
|
12313
12327
|
height: clamp(var(--filter-panel-min-height), 100%, 100vh);
|
|
12314
12328
|
border-top: 1px var(--cds-layer-accent-01, #e0e0e0) solid;
|
|
12315
12329
|
background-color: var(--cds-layer-01, #f4f4f4);
|
|
@@ -12324,7 +12338,8 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
12324
12338
|
top: -1px;
|
|
12325
12339
|
left: 0;
|
|
12326
12340
|
display: block;
|
|
12327
|
-
|
|
12341
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
12342
|
+
width: to-rem(47px);
|
|
12328
12343
|
height: 1px;
|
|
12329
12344
|
background-color: var(--cds-layer-01, #f4f4f4);
|
|
12330
12345
|
content: "";
|
|
@@ -12391,7 +12406,8 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
12391
12406
|
position: sticky;
|
|
12392
12407
|
z-index: 1;
|
|
12393
12408
|
bottom: 0;
|
|
12394
|
-
|
|
12409
|
+
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
|
12410
|
+
height: to-rem(64px);
|
|
12395
12411
|
margin-top: auto;
|
|
12396
12412
|
}
|
|
12397
12413
|
|
|
@@ -12488,6 +12504,7 @@ th.c4p--datagrid__select-all-toggle-on.button {
|
|
|
12488
12504
|
width: 2rem;
|
|
12489
12505
|
height: 2rem;
|
|
12490
12506
|
min-height: 2rem;
|
|
12507
|
+
align-items: center;
|
|
12491
12508
|
justify-content: center;
|
|
12492
12509
|
padding: 0;
|
|
12493
12510
|
}
|
|
@@ -12495,11 +12512,16 @@ th.c4p--datagrid__select-all-toggle-on.button {
|
|
|
12495
12512
|
fill: var(--cds-layer-selected-inverse, #161616);
|
|
12496
12513
|
}
|
|
12497
12514
|
|
|
12515
|
+
.c4p--datagrid .cds--data-table tbody tr:hover + .c4p--datagrid__expanded-row,
|
|
12516
|
+
.c4p--datagrid .c4p--datagrid__expanded-row:hover,
|
|
12517
|
+
.c4p--datagrid .c4p--datagrid__expandable-row--hover td {
|
|
12518
|
+
background: var(--cds-layer-hover);
|
|
12519
|
+
}
|
|
12520
|
+
|
|
12498
12521
|
.c4p--datagrid__draggable-handleStyle {
|
|
12499
12522
|
display: flex;
|
|
12500
12523
|
align-items: center;
|
|
12501
12524
|
margin-right: 0.5rem;
|
|
12502
|
-
cursor: grab;
|
|
12503
12525
|
}
|
|
12504
12526
|
|
|
12505
12527
|
.c4p--datagrid__draggable-handleStyle.disabled {
|
|
@@ -12510,32 +12532,55 @@ th.c4p--datagrid__select-all-toggle-on.button {
|
|
|
12510
12532
|
fill: var(--cds-icon-on-color-disabled, #8d8d8d);
|
|
12511
12533
|
}
|
|
12512
12534
|
|
|
12535
|
+
.c4p--datagrid__draggable-underlay {
|
|
12536
|
+
position: absolute;
|
|
12537
|
+
width: 100%;
|
|
12538
|
+
}
|
|
12539
|
+
|
|
12540
|
+
.c4p--datagrid__draggable-underlay-item {
|
|
12541
|
+
width: 100%;
|
|
12542
|
+
height: 3rem;
|
|
12543
|
+
border: 2px dashed var(--cds-focus, #0f62fe);
|
|
12544
|
+
/* stylelint-disable-next-line carbon/theme-token-use */
|
|
12545
|
+
background-color: #edf5ff;
|
|
12546
|
+
}
|
|
12547
|
+
|
|
12513
12548
|
.c4p--datagrid__draggable-handleHolder {
|
|
12549
|
+
position: relative;
|
|
12514
12550
|
display: flex;
|
|
12515
12551
|
height: 3rem;
|
|
12516
12552
|
border-bottom: 1px solid var(--cds-layer-active);
|
|
12517
12553
|
background-color: var(--cds-layer);
|
|
12554
|
+
cursor: grab;
|
|
12518
12555
|
}
|
|
12519
12556
|
|
|
12520
12557
|
.c4p--datagrid__draggable-handleHolder:hover {
|
|
12521
12558
|
background-color: var(--cds-layer-hover);
|
|
12522
12559
|
}
|
|
12523
12560
|
|
|
12524
|
-
.c4p--datagrid__draggable-handleHolder
|
|
12525
|
-
|
|
12526
|
-
|
|
12527
|
-
|
|
12561
|
+
.c4p--datagrid__draggable-handleHolder:focus {
|
|
12562
|
+
box-shadow: inset 0 0 0 1px var(--cds-focus, #0f62fe);
|
|
12563
|
+
outline: none;
|
|
12564
|
+
}
|
|
12565
|
+
|
|
12566
|
+
.c4p--datagrid__draggable-handleHolder--selected {
|
|
12528
12567
|
background-color: var(--cds-layer-selected);
|
|
12529
12568
|
}
|
|
12530
12569
|
|
|
12531
|
-
.c4p--datagrid__draggable-handleHolder
|
|
12532
|
-
|
|
12570
|
+
.c4p--datagrid__draggable-handleHolder--dragging {
|
|
12571
|
+
z-index: 2;
|
|
12572
|
+
background-color: var(--cds-highlight, #d0e2ff);
|
|
12573
|
+
color: var(--cds-text-primary, #161616);
|
|
12574
|
+
outline: none;
|
|
12533
12575
|
}
|
|
12534
12576
|
|
|
12535
|
-
.c4p--datagrid__draggable-handleHolder
|
|
12536
|
-
|
|
12537
|
-
|
|
12538
|
-
|
|
12577
|
+
.c4p--datagrid__draggable-handleHolder:active,
|
|
12578
|
+
.c4p--datagrid__draggable-handleHolder--dragging {
|
|
12579
|
+
cursor: grabbing;
|
|
12580
|
+
}
|
|
12581
|
+
|
|
12582
|
+
.c4p--datagrid__draggable-handleHolder-selected:hover {
|
|
12583
|
+
background-color: var(--cds-layer-selected-hover-01, #d1d1d1);
|
|
12539
12584
|
}
|
|
12540
12585
|
|
|
12541
12586
|
.c4p--datagrid__draggable-handleHolder-droppable {
|
|
@@ -12553,11 +12598,6 @@ th.c4p--datagrid__select-all-toggle-on.button {
|
|
|
12553
12598
|
transition: opacity 150ms cubic-bezier(0, 0, 0.38, 0.9);
|
|
12554
12599
|
}
|
|
12555
12600
|
|
|
12556
|
-
.c4p--datagrid__draggable-handleHolder-grabbed {
|
|
12557
|
-
background-color: var(--cds-highlight, #d0e2ff);
|
|
12558
|
-
color: var(--cds-text-primary, #161616);
|
|
12559
|
-
}
|
|
12560
|
-
|
|
12561
12601
|
.c4p--datagrid__draggable-handleHolder--sticky {
|
|
12562
12602
|
color: var(--cds-text-on-color-disabled, #8d8d8d);
|
|
12563
12603
|
}
|
|
@@ -15317,6 +15357,7 @@ a.cds--side-nav__link--current::before {
|
|
|
15317
15357
|
.c4p--action-set.cds--btn-set.c4p--action-set--xl .c4p--action-set__action-button:not(.c4p--action-set__action-button--ghost),
|
|
15318
15358
|
.c4p--action-set.cds--btn-set.c4p--action-set--2xl .c4p--action-set__action-button:not(.c4p--action-set__action-button--ghost),
|
|
15319
15359
|
.c4p--action-set.cds--btn-set.c4p--action-set--row-quadruple .c4p--action-set__action-button:not(.c4p--action-set__action-button--ghost) {
|
|
15360
|
+
/* stylelint-disable-next-line function-no-unknown -- to-rem carbon replacement for rem */
|
|
15320
15361
|
max-width: 14.5rem;
|
|
15321
15362
|
flex: 0 1 25%;
|
|
15322
15363
|
}
|