@carbon/styles 1.94.0 → 1.95.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/styles.css +44 -15
- package/css/styles.min.css +1 -1
- package/package.json +3 -3
- package/scss/components/fluid-select/_fluid-select.scss +25 -0
- package/scss/components/list-box/_list-box.scss +1 -12
- package/scss/components/modal/_modal.scss +1 -0
- package/scss/components/search/_search.scss +10 -3
package/css/styles.css
CHANGED
|
@@ -2900,7 +2900,7 @@ em {
|
|
|
2900
2900
|
--cds-link-primary-hover: #0043ce;
|
|
2901
2901
|
--cds-link-secondary: #0043ce;
|
|
2902
2902
|
--cds-link-visited: #8a3ffc;
|
|
2903
|
-
--cds-overlay: rgba(
|
|
2903
|
+
--cds-overlay: rgba(0, 0, 0, 0.6);
|
|
2904
2904
|
--cds-shadow: rgba(0, 0, 0, 0.3);
|
|
2905
2905
|
--cds-skeleton-background: #e8e8e8;
|
|
2906
2906
|
--cds-skeleton-element: #c6c6c6;
|
|
@@ -3139,7 +3139,7 @@ em {
|
|
|
3139
3139
|
--cds-link-primary-hover: #0043ce;
|
|
3140
3140
|
--cds-link-secondary: #0043ce;
|
|
3141
3141
|
--cds-link-visited: #8a3ffc;
|
|
3142
|
-
--cds-overlay: rgba(
|
|
3142
|
+
--cds-overlay: rgba(0, 0, 0, 0.6);
|
|
3143
3143
|
--cds-shadow: rgba(0, 0, 0, 0.3);
|
|
3144
3144
|
--cds-skeleton-background: #e8e8e8;
|
|
3145
3145
|
--cds-skeleton-element: #c6c6c6;
|
|
@@ -3378,7 +3378,7 @@ em {
|
|
|
3378
3378
|
--cds-link-primary-hover: #a6c8ff;
|
|
3379
3379
|
--cds-link-secondary: #a6c8ff;
|
|
3380
3380
|
--cds-link-visited: #be95ff;
|
|
3381
|
-
--cds-overlay: rgba(0, 0, 0, 0.
|
|
3381
|
+
--cds-overlay: rgba(0, 0, 0, 0.6);
|
|
3382
3382
|
--cds-shadow: rgba(0, 0, 0, 0.8);
|
|
3383
3383
|
--cds-skeleton-background: #333333;
|
|
3384
3384
|
--cds-skeleton-element: #525252;
|
|
@@ -3616,7 +3616,7 @@ em {
|
|
|
3616
3616
|
--cds-link-primary-hover: #a6c8ff;
|
|
3617
3617
|
--cds-link-secondary: #a6c8ff;
|
|
3618
3618
|
--cds-link-visited: #be95ff;
|
|
3619
|
-
--cds-overlay: rgba(0, 0, 0, 0.
|
|
3619
|
+
--cds-overlay: rgba(0, 0, 0, 0.6);
|
|
3620
3620
|
--cds-shadow: rgba(0, 0, 0, 0.8);
|
|
3621
3621
|
--cds-skeleton-background: #292929;
|
|
3622
3622
|
--cds-skeleton-element: #393939;
|
|
@@ -11083,11 +11083,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
11083
11083
|
inset-inline-end: 7.125rem;
|
|
11084
11084
|
}
|
|
11085
11085
|
|
|
11086
|
-
.cds--list-box__wrapper--decorator .cds--list-box--invalid .cds--list-box__field:has(.cds--list-box__selection) ~ .cds--list-box__inner-wrapper--decorator > *,
|
|
11087
|
-
.cds--list-box__wrapper--decorator .cds--list-box--warning .cds--list-box__field:has(.cds--list-box__selection) ~ .cds--list-box__inner-wrapper--decorator > * {
|
|
11088
|
-
inset-inline-end: 7.25rem;
|
|
11089
|
-
}
|
|
11090
|
-
|
|
11091
11086
|
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
|
|
11092
11087
|
.cds--list-box__field,
|
|
11093
11088
|
.cds--list-box__menu,
|
|
@@ -13836,7 +13831,7 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
|
|
|
13836
13831
|
.cds--search--expandable .cds--search-input {
|
|
13837
13832
|
padding: 0;
|
|
13838
13833
|
inline-size: 0;
|
|
13839
|
-
transition:
|
|
13834
|
+
transition: transform 70ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
13840
13835
|
}
|
|
13841
13836
|
.cds--search--expandable .cds--search-input::-moz-placeholder {
|
|
13842
13837
|
position: relative;
|
|
@@ -13897,6 +13892,15 @@ tr.cds--parent-row:not(.cds--expandable-row):not(:first-of-type) td.cds--table-c
|
|
|
13897
13892
|
fill: var(--cds-icon-disabled, rgba(22, 22, 22, 0.25));
|
|
13898
13893
|
}
|
|
13899
13894
|
|
|
13895
|
+
.cds--search-magnifier-tooltip {
|
|
13896
|
+
display: flex;
|
|
13897
|
+
align-items: center;
|
|
13898
|
+
justify-content: center;
|
|
13899
|
+
}
|
|
13900
|
+
.cds--search-magnifier-tooltip .cds--search-magnifier {
|
|
13901
|
+
position: relative;
|
|
13902
|
+
}
|
|
13903
|
+
|
|
13900
13904
|
.cds--table-toolbar {
|
|
13901
13905
|
position: relative;
|
|
13902
13906
|
z-index: 1;
|
|
@@ -16172,7 +16176,7 @@ th .cds--table-sort__flex {
|
|
|
16172
16176
|
}
|
|
16173
16177
|
|
|
16174
16178
|
.cds--dialog::backdrop {
|
|
16175
|
-
background-color: var(--cds-overlay, rgba(
|
|
16179
|
+
background-color: var(--cds-overlay, rgba(0, 0, 0, 0.6));
|
|
16176
16180
|
opacity: 0;
|
|
16177
16181
|
}
|
|
16178
16182
|
|
|
@@ -17000,7 +17004,7 @@ button.cds--dropdown-text:focus {
|
|
|
17000
17004
|
display: flex;
|
|
17001
17005
|
align-items: center;
|
|
17002
17006
|
justify-content: center;
|
|
17003
|
-
background-color: var(--cds-overlay, rgba(
|
|
17007
|
+
background-color: var(--cds-overlay, rgba(0, 0, 0, 0.6));
|
|
17004
17008
|
block-size: 100%;
|
|
17005
17009
|
inline-size: 100%;
|
|
17006
17010
|
inset-block-start: 0;
|
|
@@ -19879,6 +19883,30 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
19879
19883
|
display: none;
|
|
19880
19884
|
}
|
|
19881
19885
|
|
|
19886
|
+
.cds--select--fluid__skeleton {
|
|
19887
|
+
position: relative;
|
|
19888
|
+
background: var(--cds-skeleton-background, #e8e8e8);
|
|
19889
|
+
block-size: 4rem;
|
|
19890
|
+
border-block-end: 1px solid var(--cds-skeleton-element, #c6c6c6);
|
|
19891
|
+
}
|
|
19892
|
+
|
|
19893
|
+
.cds--select--fluid__skeleton .cds--skeleton {
|
|
19894
|
+
position: absolute;
|
|
19895
|
+
block-size: 0.5rem;
|
|
19896
|
+
inline-size: 25%;
|
|
19897
|
+
inset-block-start: 1rem;
|
|
19898
|
+
inset-inline-start: 1rem;
|
|
19899
|
+
}
|
|
19900
|
+
|
|
19901
|
+
.cds--select--fluid__skeleton .cds--label {
|
|
19902
|
+
position: absolute;
|
|
19903
|
+
padding: 0;
|
|
19904
|
+
block-size: 0.5rem;
|
|
19905
|
+
inline-size: 50%;
|
|
19906
|
+
inset-block-start: 2.25rem;
|
|
19907
|
+
inset-inline-start: 1rem;
|
|
19908
|
+
}
|
|
19909
|
+
|
|
19882
19910
|
.cds--text-area {
|
|
19883
19911
|
box-sizing: border-box;
|
|
19884
19912
|
padding: 0;
|
|
@@ -20990,7 +21018,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
20990
21018
|
display: flex;
|
|
20991
21019
|
align-items: center;
|
|
20992
21020
|
justify-content: center;
|
|
20993
|
-
background-color: var(--cds-overlay, rgba(
|
|
21021
|
+
background-color: var(--cds-overlay, rgba(0, 0, 0, 0.6));
|
|
20994
21022
|
block-size: 100vh;
|
|
20995
21023
|
content: "";
|
|
20996
21024
|
inline-size: 100vw;
|
|
@@ -21125,6 +21153,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
21125
21153
|
.cds--modal-container {
|
|
21126
21154
|
position: fixed;
|
|
21127
21155
|
display: grid;
|
|
21156
|
+
border: 1px solid var(--cds-border-subtle-01, #c6c6c6);
|
|
21128
21157
|
background-color: var(--cds-layer);
|
|
21129
21158
|
grid-template-columns: 100%;
|
|
21130
21159
|
grid-template-rows: auto 1fr auto;
|
|
@@ -27488,7 +27517,7 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
27488
27517
|
@media (max-width: 65.98rem) {
|
|
27489
27518
|
.cds--side-nav__overlay-active {
|
|
27490
27519
|
z-index: 6000;
|
|
27491
|
-
background-color: var(--cds-overlay, rgba(
|
|
27520
|
+
background-color: var(--cds-overlay, rgba(0, 0, 0, 0.6));
|
|
27492
27521
|
block-size: 100vh;
|
|
27493
27522
|
inline-size: 100vw;
|
|
27494
27523
|
opacity: 1;
|
|
@@ -28524,7 +28553,7 @@ a.cds--header__menu-item.cds--header__menu-item--current:focus {
|
|
|
28524
28553
|
@media (max-width: 65.98rem) {
|
|
28525
28554
|
.cds--side-nav__overlay-active {
|
|
28526
28555
|
z-index: 6000;
|
|
28527
|
-
background-color: var(--cds-overlay, rgba(
|
|
28556
|
+
background-color: var(--cds-overlay, rgba(0, 0, 0, 0.6));
|
|
28528
28557
|
block-size: 100vh;
|
|
28529
28558
|
inline-size: 100vw;
|
|
28530
28559
|
opacity: 1;
|