@muonic/muon 0.0.2-experimental-207-90ac592.0 → 0.0.2-experimental-209-14956d1.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.
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
border-color: $INPUTTER_FIELD_BORDER_COLOR;
|
|
26
26
|
border-radius: $INPUTTER_FIELD_BORDER_RADIUS;
|
|
27
27
|
font-family: $INPUTTER_FIELD_FONT_FAMILY;
|
|
28
|
-
font-size: $INPUTTER_FIELD_FONT_SIZE;
|
|
29
28
|
}
|
|
30
29
|
|
|
31
30
|
%input-hover {
|
|
@@ -56,6 +55,7 @@
|
|
|
56
55
|
%label-multiple {
|
|
57
56
|
display: block;
|
|
58
57
|
width: fit-content;
|
|
58
|
+
align-self: center;
|
|
59
59
|
margin-block-start: revert; /* NOTE: @drew - 2023-05-18 - revert these to use padding instead, could benefit from using a `:not(.multiple)` on line 6 */
|
|
60
60
|
margin-block-end: revert; /* NOTE: @drew - 2023-05-18 - revert these to use padding instead, could benefit from using a `:not(.multiple)` on line 6 */
|
|
61
61
|
padding-inline-start: $INPUTTER_MULTIPLE_LABEL_PADDING_INLINE_START;
|
|
@@ -147,14 +147,6 @@
|
|
|
147
147
|
}
|
|
148
148
|
|
|
149
149
|
%input-mask {
|
|
150
|
-
width: calc(
|
|
151
|
-
(var(--maxlength))
|
|
152
|
-
* 1ch
|
|
153
|
-
+ $INPUTTER_FIELD_PADDING_INLINE_START
|
|
154
|
-
+ $INPUTTER_FIELD_PADDING_INLINE_END
|
|
155
|
-
+ $INPUTTER_FIELD_BORDER_WIDTH
|
|
156
|
-
+ $INPUTTER_FIELD_BORDER_WIDTH
|
|
157
|
-
);
|
|
158
150
|
font-family: $INPUTTER_MASK_FONT_FAMILY;
|
|
159
151
|
}
|
|
160
152
|
|
|
@@ -175,4 +167,4 @@
|
|
|
175
167
|
width: $INPUTTER_VALIDATION_ICON_SIZE;
|
|
176
168
|
flex-shrink: 0;
|
|
177
169
|
}
|
|
178
|
-
}
|
|
170
|
+
}
|
|
@@ -23,6 +23,8 @@
|
|
|
23
23
|
select,
|
|
24
24
|
textarea)) {
|
|
25
25
|
@extend %input;
|
|
26
|
+
|
|
27
|
+
font-size: $INPUTTER_FIELD_FONT_SIZE;
|
|
26
28
|
}
|
|
27
29
|
|
|
28
30
|
& ::slotted(:is(
|
|
@@ -195,6 +197,15 @@
|
|
|
195
197
|
input[type="tel"],
|
|
196
198
|
input[type="text"])) {
|
|
197
199
|
@extend %input-mask;
|
|
200
|
+
|
|
201
|
+
width: calc(
|
|
202
|
+
(var(--maxlength))
|
|
203
|
+
* 1ch
|
|
204
|
+
+ $INPUTTER_FIELD_PADDING_INLINE_START
|
|
205
|
+
+ $INPUTTER_FIELD_PADDING_INLINE_END
|
|
206
|
+
+ $INPUTTER_FIELD_BORDER_WIDTH
|
|
207
|
+
+ $INPUTTER_FIELD_BORDER_WIDTH
|
|
208
|
+
);
|
|
198
209
|
}
|
|
199
210
|
|
|
200
211
|
& .input-mask {
|