@carbon/styles 1.74.0 → 1.75.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 +20 -5
- package/css/styles.min.css +1 -1
- package/package.json +2 -2
- package/scss/components/fluid-text-area/_fluid-text-area.scss +14 -2
- package/scss/components/fluid-text-input/_fluid-text-input.scss +14 -2
- package/scss/components/menu/_menu.scss +1 -0
- package/scss/components/text-area/_text-area.scss +1 -0
- package/scss/components/text-input/_text-input.scss +0 -4
package/css/styles.css
CHANGED
|
@@ -8915,9 +8915,6 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
8915
8915
|
justify-content: space-between;
|
|
8916
8916
|
inline-size: 100%;
|
|
8917
8917
|
}
|
|
8918
|
-
.cds--text-input__label-wrapper .cds--text-input__label-counter {
|
|
8919
|
-
align-self: end;
|
|
8920
|
-
}
|
|
8921
8918
|
|
|
8922
8919
|
.cds--tag {
|
|
8923
8920
|
--cds-layout-size-height-xs: 1.125rem;
|
|
@@ -10655,6 +10652,7 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
10655
10652
|
}
|
|
10656
10653
|
|
|
10657
10654
|
.cds--menu--shown {
|
|
10655
|
+
overflow: visible;
|
|
10658
10656
|
opacity: 1;
|
|
10659
10657
|
}
|
|
10660
10658
|
|
|
@@ -18671,6 +18669,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
18671
18669
|
}
|
|
18672
18670
|
|
|
18673
18671
|
.cds--text-area__label-wrapper {
|
|
18672
|
+
position: relative;
|
|
18674
18673
|
display: flex;
|
|
18675
18674
|
justify-content: space-between;
|
|
18676
18675
|
inline-size: 100%;
|
|
@@ -18699,10 +18698,18 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
18699
18698
|
align-items: center;
|
|
18700
18699
|
margin: 0;
|
|
18701
18700
|
block-size: 1rem;
|
|
18702
|
-
inline-size: auto;
|
|
18703
18701
|
inset-block-start: 0.8125rem;
|
|
18702
|
+
}
|
|
18703
|
+
.cds--text-area--fluid .cds--label:not(.cds--text-area__label-counter) {
|
|
18704
|
+
inline-size: auto;
|
|
18705
|
+
inset-inline-end: auto;
|
|
18704
18706
|
inset-inline-start: 1rem;
|
|
18705
18707
|
}
|
|
18708
|
+
.cds--text-area--fluid .cds--label.cds--text-area__label-counter {
|
|
18709
|
+
inline-size: auto;
|
|
18710
|
+
inset-inline-end: 1rem;
|
|
18711
|
+
inset-inline-start: auto;
|
|
18712
|
+
}
|
|
18706
18713
|
|
|
18707
18714
|
.cds--text-area--fluid .cds--label::-webkit-scrollbar,
|
|
18708
18715
|
.cds--text-area--fluid .cds--label .cds--toggletip-label::-webkit-scrollbar {
|
|
@@ -18874,10 +18881,18 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
18874
18881
|
align-items: center;
|
|
18875
18882
|
margin: 0;
|
|
18876
18883
|
block-size: 1rem;
|
|
18877
|
-
inline-size: calc(100% - 2rem);
|
|
18878
18884
|
inset-block-start: 0.8125rem;
|
|
18885
|
+
}
|
|
18886
|
+
.cds--text-input--fluid .cds--label:not(.cds--text-input__label-counter) {
|
|
18887
|
+
inline-size: auto;
|
|
18888
|
+
inset-inline-end: auto;
|
|
18879
18889
|
inset-inline-start: 1rem;
|
|
18880
18890
|
}
|
|
18891
|
+
.cds--text-input--fluid .cds--label.cds--text-input__label-counter {
|
|
18892
|
+
inline-size: auto;
|
|
18893
|
+
inset-inline-end: 1rem;
|
|
18894
|
+
inset-inline-start: auto;
|
|
18895
|
+
}
|
|
18881
18896
|
|
|
18882
18897
|
.cds--text-input--fluid .cds--label::-webkit-scrollbar,
|
|
18883
18898
|
.cds--text-input--fluid .cds--label .cds--toggletip-label::-webkit-scrollbar {
|