ecabs-components 1.1.89 → 1.1.90
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 +1 -0
- package/esm2022/lib/ecabs-select/ecabs-select.component.mjs +3 -3
- package/esm2022/lib/ecabs-select-v2/ecabs-select-v2.component.mjs +3 -3
- package/fesm2022/ecabs-components.mjs +4 -4
- package/fesm2022/ecabs-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/styles/material/overrides/_select.scss +13 -0
package/package.json
CHANGED
|
@@ -27,6 +27,11 @@
|
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
+
.mat-mdc-select-value,
|
|
31
|
+
.mat-mdc-select-placeholder {
|
|
32
|
+
line-height: calc-rem(24px);
|
|
33
|
+
}
|
|
34
|
+
|
|
30
35
|
.mat-mdc-select-placeholder {
|
|
31
36
|
@include fontSize($font-size-md);
|
|
32
37
|
}
|
|
@@ -82,6 +87,14 @@
|
|
|
82
87
|
}
|
|
83
88
|
}
|
|
84
89
|
|
|
90
|
+
.ng-value,
|
|
91
|
+
.ng-placeholder {
|
|
92
|
+
// Fixed line-height so the placeholder (14px) and the selected value
|
|
93
|
+
// (16px) occupy the same line box; otherwise the unitless 1.5
|
|
94
|
+
// line-height makes the field grow once a value is selected.
|
|
95
|
+
line-height: calc-rem(24px);
|
|
96
|
+
}
|
|
97
|
+
|
|
85
98
|
&.ng-select-disabled > .ng-select-container {
|
|
86
99
|
background-color: var(--color-white-opacity-05);
|
|
87
100
|
border-color: var(--color-gray-300);
|