@carbon/styles 1.75.0-rc.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 +19 -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/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;
|
|
@@ -18672,6 +18669,7 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
18672
18669
|
}
|
|
18673
18670
|
|
|
18674
18671
|
.cds--text-area__label-wrapper {
|
|
18672
|
+
position: relative;
|
|
18675
18673
|
display: flex;
|
|
18676
18674
|
justify-content: space-between;
|
|
18677
18675
|
inline-size: 100%;
|
|
@@ -18700,10 +18698,18 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
18700
18698
|
align-items: center;
|
|
18701
18699
|
margin: 0;
|
|
18702
18700
|
block-size: 1rem;
|
|
18703
|
-
inline-size: auto;
|
|
18704
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;
|
|
18705
18706
|
inset-inline-start: 1rem;
|
|
18706
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
|
+
}
|
|
18707
18713
|
|
|
18708
18714
|
.cds--text-area--fluid .cds--label::-webkit-scrollbar,
|
|
18709
18715
|
.cds--text-area--fluid .cds--label .cds--toggletip-label::-webkit-scrollbar {
|
|
@@ -18875,10 +18881,18 @@ optgroup.cds--select-optgroup:disabled,
|
|
|
18875
18881
|
align-items: center;
|
|
18876
18882
|
margin: 0;
|
|
18877
18883
|
block-size: 1rem;
|
|
18878
|
-
inline-size: calc(100% - 2rem);
|
|
18879
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;
|
|
18880
18889
|
inset-inline-start: 1rem;
|
|
18881
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
|
+
}
|
|
18882
18896
|
|
|
18883
18897
|
.cds--text-input--fluid .cds--label::-webkit-scrollbar,
|
|
18884
18898
|
.cds--text-input--fluid .cds--label .cds--toggletip-label::-webkit-scrollbar {
|