@carbon/ibm-products-styles 2.50.0 → 2.51.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/css/index-full-carbon.css +90 -21
- package/css/index-full-carbon.css.map +1 -1
- package/css/index-full-carbon.min.css +1 -1
- package/css/index-full-carbon.min.css.map +1 -1
- package/css/index-without-carbon-released-only.css +14 -8
- package/css/index-without-carbon-released-only.css.map +1 -1
- package/css/index-without-carbon-released-only.min.css +1 -1
- package/css/index-without-carbon-released-only.min.css.map +1 -1
- package/css/index-without-carbon.css +14 -8
- package/css/index-without-carbon.css.map +1 -1
- package/css/index-without-carbon.min.css +1 -1
- package/css/index-without-carbon.min.css.map +1 -1
- package/css/index.css +27 -11
- package/css/index.css.map +1 -1
- package/css/index.min.css +1 -1
- package/css/index.min.css.map +1 -1
- package/package.json +4 -4
- package/scss/components/Datagrid/styles/_datagrid.scss +16 -6
- package/scss/components/Datagrid/styles/_useStickyColumn.scss +2 -2
|
@@ -10296,7 +10296,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
10296
10296
|
}
|
|
10297
10297
|
.c4p--datagrid__grid-container table.c4p--datagrid__vertical-align-center .c4p--datagrid__head .c4p--datagrid__head-select-all.c4p--datagrid__checkbox-cell.c4p--datagrid__checkbox-cell-sticky-left {
|
|
10298
10298
|
position: sticky;
|
|
10299
|
-
z-index:
|
|
10299
|
+
z-index: 10;
|
|
10300
10300
|
left: 0;
|
|
10301
10301
|
}
|
|
10302
10302
|
.c4p--datagrid__grid-container table.c4p--datagrid__vertical-align-center .c4p--datagrid__cell {
|
|
@@ -10541,15 +10541,21 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
10541
10541
|
/* stylelint-disable-next-line declaration-no-important */
|
|
10542
10542
|
color: var(--cds-link-primary-hover, #0043ce) !important;
|
|
10543
10543
|
}
|
|
10544
|
-
.c4p--datagrid__grid-container .c4p--datagrid__carbon-row
|
|
10544
|
+
.c4p--datagrid__grid-container .c4p--datagrid__carbon-row .c4p--datagrid__left-sticky-column-cell,
|
|
10545
|
+
.c4p--datagrid__grid-container .c4p--datagrid__carbon-row .c4p--datagrid__right-sticky-column-cell,
|
|
10546
|
+
.c4p--datagrid__grid-container .c4p--datagrid__carbon-row .c4p--datagrid__checkbox-cell-sticky-left {
|
|
10545
10547
|
/* stylelint-disable-next-line declaration-no-important */
|
|
10546
10548
|
background-color: var(--cds-layer-01, #f4f4f4);
|
|
10547
10549
|
}
|
|
10548
|
-
.c4p--datagrid__grid-container .c4p--datagrid__carbon-row:hover
|
|
10550
|
+
.c4p--datagrid__grid-container .c4p--datagrid__carbon-row:hover .c4p--datagrid__left-sticky-column-cell,
|
|
10551
|
+
.c4p--datagrid__grid-container .c4p--datagrid__carbon-row:hover .c4p--datagrid__right-sticky-column-cell,
|
|
10552
|
+
.c4p--datagrid__grid-container .c4p--datagrid__carbon-row:hover .c4p--datagrid__checkbox-cell-sticky-left {
|
|
10549
10553
|
/* stylelint-disable-next-line declaration-no-important */
|
|
10550
10554
|
background-color: var(--cds-layer-hover-01, #e8e8e8);
|
|
10551
10555
|
}
|
|
10552
|
-
.c4p--datagrid__grid-container .cds--data-table--selected
|
|
10556
|
+
.c4p--datagrid__grid-container .cds--data-table--selected .c4p--datagrid__left-sticky-column-cell,
|
|
10557
|
+
.c4p--datagrid__grid-container .cds--data-table--selected .c4p--datagrid__right-sticky-column-cell,
|
|
10558
|
+
.c4p--datagrid__grid-container .cds--data-table--selected .c4p--datagrid__checkbox-cell-sticky-left {
|
|
10553
10559
|
/* stylelint-disable-next-line declaration-no-important */
|
|
10554
10560
|
background-color: var(--cds-layer-selected-01, #e0e0e0);
|
|
10555
10561
|
}
|
|
@@ -10634,7 +10640,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
10634
10640
|
}
|
|
10635
10641
|
|
|
10636
10642
|
.c4p--datagrid__resizableColumn:hover {
|
|
10637
|
-
background-color: var(--cds-
|
|
10643
|
+
background-color: var(--cds-layer-selected-hover);
|
|
10638
10644
|
}
|
|
10639
10645
|
.c4p--datagrid__resizableColumn:hover .c4p--datagrid__resizer {
|
|
10640
10646
|
border-right: 0.125rem solid var(--cds-border-strong-01, #8d8d8d);
|
|
@@ -10661,7 +10667,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
10661
10667
|
}
|
|
10662
10668
|
.c4p--datagrid__head-hidden-select-all.c4p--datagrid__select-all-sticky-left {
|
|
10663
10669
|
position: sticky;
|
|
10664
|
-
z-index:
|
|
10670
|
+
z-index: 10;
|
|
10665
10671
|
left: 0;
|
|
10666
10672
|
background-color: var(--cds-layer-accent-01, #e0e0e0);
|
|
10667
10673
|
}
|
|
@@ -11258,7 +11264,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
11258
11264
|
.c4p--datagrid__left-sticky-column-header {
|
|
11259
11265
|
/* stylelint-disable-next-line declaration-no-important */
|
|
11260
11266
|
position: sticky !important;
|
|
11261
|
-
z-index:
|
|
11267
|
+
z-index: 10;
|
|
11262
11268
|
left: 0;
|
|
11263
11269
|
border-right: 1px solid var(--cds-border-subtle);
|
|
11264
11270
|
}
|
|
@@ -11287,7 +11293,7 @@ button.c4p--add-select__global-filter-toggle--open {
|
|
|
11287
11293
|
|
|
11288
11294
|
.c4p--datagrid__select-all-toggle-on.c4p--datagrid__select-all-sticky-left {
|
|
11289
11295
|
position: sticky;
|
|
11290
|
-
z-index:
|
|
11296
|
+
z-index: 10;
|
|
11291
11297
|
left: 0;
|
|
11292
11298
|
}
|
|
11293
11299
|
|
|
@@ -29666,10 +29672,6 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
|
|
|
29666
29672
|
transition: transform 110ms cubic-bezier(0.2, 0, 0.38, 0.9), clip-path 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
29667
29673
|
}
|
|
29668
29674
|
|
|
29669
|
-
.cds--batch-actions ~ .cds--toolbar-content {
|
|
29670
|
-
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
|
29671
|
-
}
|
|
29672
|
-
|
|
29673
29675
|
.cds--toolbar-content .cds--search .cds--search-input {
|
|
29674
29676
|
padding: 0 3rem;
|
|
29675
29677
|
background-color: transparent;
|
|
@@ -31751,7 +31753,7 @@ th .cds--table-sort__flex {
|
|
|
31751
31753
|
display: inline-grid;
|
|
31752
31754
|
align-items: center;
|
|
31753
31755
|
grid-gap: 0 1.5rem;
|
|
31754
|
-
grid-template: auto
|
|
31756
|
+
grid-template: auto/auto min-content;
|
|
31755
31757
|
}
|
|
31756
31758
|
.cds--dropdown__wrapper--inline .cds--label {
|
|
31757
31759
|
font-size: var(--cds-body-compact-01-font-size, 0.875rem);
|
|
@@ -33032,6 +33034,12 @@ button.cds--dropdown-text:focus {
|
|
|
33032
33034
|
}
|
|
33033
33035
|
|
|
33034
33036
|
.cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__field {
|
|
33037
|
+
position: relative;
|
|
33038
|
+
padding: 0;
|
|
33039
|
+
border: none;
|
|
33040
|
+
background: var(--cds-skeleton-background, #e8e8e8);
|
|
33041
|
+
box-shadow: none;
|
|
33042
|
+
pointer-events: none;
|
|
33035
33043
|
position: absolute;
|
|
33036
33044
|
padding: 0;
|
|
33037
33045
|
block-size: 0.5rem;
|
|
@@ -33039,19 +33047,59 @@ button.cds--dropdown-text:focus {
|
|
|
33039
33047
|
inset-block-start: 2.25rem;
|
|
33040
33048
|
inset-inline-start: 1rem;
|
|
33041
33049
|
}
|
|
33050
|
+
.cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__field:hover, .cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__field:focus, .cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__field:active {
|
|
33051
|
+
border: none;
|
|
33052
|
+
cursor: default;
|
|
33053
|
+
outline: none;
|
|
33054
|
+
}
|
|
33055
|
+
.cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__field::before {
|
|
33056
|
+
position: absolute;
|
|
33057
|
+
animation: 3000ms ease-in-out cds--skeleton infinite;
|
|
33058
|
+
background: var(--cds-skeleton-element, #c6c6c6);
|
|
33059
|
+
block-size: 100%;
|
|
33060
|
+
content: "";
|
|
33061
|
+
inline-size: 100%;
|
|
33062
|
+
inset-inline-start: 0;
|
|
33063
|
+
will-change: transform-origin, transform, opacity;
|
|
33064
|
+
}
|
|
33065
|
+
@media (prefers-reduced-motion: reduce) {
|
|
33066
|
+
.cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__field::before {
|
|
33067
|
+
animation: none;
|
|
33068
|
+
}
|
|
33069
|
+
}
|
|
33042
33070
|
|
|
33043
33071
|
.cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__label {
|
|
33072
|
+
position: relative;
|
|
33073
|
+
padding: 0;
|
|
33074
|
+
border: none;
|
|
33075
|
+
background: var(--cds-skeleton-background, #e8e8e8);
|
|
33076
|
+
box-shadow: none;
|
|
33077
|
+
pointer-events: none;
|
|
33044
33078
|
position: absolute;
|
|
33045
33079
|
block-size: 0.5rem;
|
|
33046
33080
|
inline-size: 25%;
|
|
33047
33081
|
inset-block-start: 1rem;
|
|
33048
33082
|
inset-inline-start: 1rem;
|
|
33049
33083
|
}
|
|
33050
|
-
|
|
33051
|
-
|
|
33052
|
-
|
|
33053
|
-
|
|
33084
|
+
.cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__label:hover, .cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__label:focus, .cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__label:active {
|
|
33085
|
+
border: none;
|
|
33086
|
+
cursor: default;
|
|
33087
|
+
outline: none;
|
|
33088
|
+
}
|
|
33089
|
+
.cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__label::before {
|
|
33090
|
+
position: absolute;
|
|
33091
|
+
animation: 3000ms ease-in-out cds--skeleton infinite;
|
|
33054
33092
|
background: var(--cds-skeleton-element, #c6c6c6);
|
|
33093
|
+
block-size: 100%;
|
|
33094
|
+
content: "";
|
|
33095
|
+
inline-size: 100%;
|
|
33096
|
+
inset-inline-start: 0;
|
|
33097
|
+
will-change: transform-origin, transform, opacity;
|
|
33098
|
+
}
|
|
33099
|
+
@media (prefers-reduced-motion: reduce) {
|
|
33100
|
+
.cds--list-box__wrapper--fluid .cds--skeleton .cds--list-box__label::before {
|
|
33101
|
+
animation: none;
|
|
33102
|
+
}
|
|
33055
33103
|
}
|
|
33056
33104
|
|
|
33057
33105
|
.cds--list-box__wrapper--fluid.cds--list-box__wrapper--slug .cds--slug {
|
|
@@ -34093,7 +34141,6 @@ button.cds--dropdown-text:focus {
|
|
|
34093
34141
|
background: var(--cds-skeleton-background, #e8e8e8);
|
|
34094
34142
|
box-shadow: none;
|
|
34095
34143
|
pointer-events: none;
|
|
34096
|
-
block-size: 2.5rem;
|
|
34097
34144
|
inline-size: 100%;
|
|
34098
34145
|
}
|
|
34099
34146
|
.cds--number.cds--skeleton:hover, .cds--number.cds--skeleton:focus, .cds--number.cds--skeleton:active {
|
|
@@ -34120,6 +34167,18 @@ button.cds--dropdown-text:focus {
|
|
|
34120
34167
|
display: none;
|
|
34121
34168
|
}
|
|
34122
34169
|
|
|
34170
|
+
.cds--number.cds--skeleton.cds--number--sm {
|
|
34171
|
+
block-size: 2rem;
|
|
34172
|
+
}
|
|
34173
|
+
|
|
34174
|
+
.cds--number.cds--skeleton.cds--number--md {
|
|
34175
|
+
block-size: 2.5rem;
|
|
34176
|
+
}
|
|
34177
|
+
|
|
34178
|
+
.cds--number.cds--skeleton.cds--number--lg {
|
|
34179
|
+
block-size: 3rem;
|
|
34180
|
+
}
|
|
34181
|
+
|
|
34123
34182
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
34124
34183
|
.cds--number__control-btn:hover,
|
|
34125
34184
|
.cds--number__control-btn:focus {
|
|
@@ -36138,6 +36197,9 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
36138
36197
|
margin: 0;
|
|
36139
36198
|
block-size: 4rem;
|
|
36140
36199
|
max-inline-size: none;
|
|
36200
|
+
}
|
|
36201
|
+
|
|
36202
|
+
.cds--modal-footer .cds--btn:not(.cds--skeleton) {
|
|
36141
36203
|
padding-block: 0.875rem 2rem;
|
|
36142
36204
|
}
|
|
36143
36205
|
|
|
@@ -40801,9 +40863,16 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
40801
40863
|
}
|
|
40802
40864
|
}
|
|
40803
40865
|
|
|
40804
|
-
.cds--toggle__button:focus + .cds--toggle__label .cds--toggle__switch,
|
|
40805
|
-
.cds--toggle:not(.cds--toggle--disabled):active .cds--toggle__switch {
|
|
40806
|
-
|
|
40866
|
+
.cds--toggle__button:focus + .cds--toggle__label .cds--toggle__switch::after,
|
|
40867
|
+
.cds--toggle:not(.cds--toggle--disabled):active .cds--toggle__switch::after {
|
|
40868
|
+
display: block;
|
|
40869
|
+
border: 2px solid var(--cds-focus, #0f62fe);
|
|
40870
|
+
border-radius: 1rem;
|
|
40871
|
+
block-size: calc(100% + 0.375rem);
|
|
40872
|
+
content: "";
|
|
40873
|
+
inline-size: calc(100% + 0.375rem);
|
|
40874
|
+
margin-block-start: -0.1875rem;
|
|
40875
|
+
margin-inline-start: -0.1875rem;
|
|
40807
40876
|
}
|
|
40808
40877
|
|
|
40809
40878
|
.cds--toggle__switch--checked {
|