@stonecrop/aform 0.34.0 → 0.35.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.
@@ -1,54 +1,57 @@
1
1
 
2
- .aform_checkbox[data-v-ca06741d] {
2
+ .aform_checkbox[data-v-f28e7db6] {
3
3
  cursor: pointer;
4
4
  width: auto;
5
5
  margin-top: 0;
6
6
  display: block;
7
7
  }
8
- .aform_checkbox[data-v-ca06741d]:checked {
8
+ .aform_checkbox[data-v-f28e7db6]:checked {
9
9
  accent-color: var(--sc-primary-color);
10
- border: 1px solid black;
10
+ border: 1px solid var(--sc-input-active-border-color);
11
11
  }
12
- .aform_checkbox-container[data-v-ca06741d] {
12
+ .aform_checkbox-container[data-v-f28e7db6] {
13
13
  width: 100%;
14
14
  display: inline-block;
15
15
  text-align: left;
16
16
  }
17
- .aform_checkbox-container input[data-v-ca06741d] {
17
+ .aform_checkbox-container input[data-v-f28e7db6] {
18
18
  width: auto;
19
19
  }
20
- .aform_checkbox-container:hover + .aform_field-label[data-v-ca06741d] {
20
+ .aform_form-element:has(> .aform_checkbox-container:hover) > .aform_field-label[data-v-f28e7db6] {
21
21
  color: var(--sc-input-active-label-color);
22
22
  }
23
23
 
24
- .aform_form-link-wrapper[data-v-91a761d0] {
24
+ .aform_form-link-wrapper[data-v-07d20e9b] {
25
25
  position: relative;
26
26
  }
27
- .input-group[data-v-91a761d0] {
27
+ .input-group[data-v-07d20e9b] {
28
28
  display: flex;
29
29
  align-items: stretch;
30
30
  }
31
- .aform_input-field[data-v-91a761d0] {
31
+ .aform_input-field[data-v-07d20e9b] {
32
32
  flex: 1;
33
33
  min-width: 0;
34
34
  }
35
- .aform_form-element--embedded[data-v-91a761d0] {
35
+
36
+ /* No top padding: the shared rule reserves it for a floating label, which embedded mode never renders. */
37
+ .aform_form-element--embedded[data-v-07d20e9b] {
36
38
  min-width: 0;
37
39
  flex-grow: 0;
40
+ padding-top: 0;
38
41
  }
39
42
 
40
- /* Embedded mode: the host component's own container supplies the border, so this input
41
- goes borderless and inherits the host's padding scale instead of the standalone default. */
42
- .aform_input-field--embedded[data-v-91a761d0] {
43
+ /* Embedded mode: the host component's own container supplies the border, so this input goes
44
+ borderless. Its vertical padding stays the standalone field's, so its text lines up with the host's. */
45
+ .aform_input-field--embedded[data-v-07d20e9b] {
43
46
  outline: none;
44
47
  background: transparent;
45
- padding: 0.5ch 1ch;
48
+ padding: 0.5rem 1ch;
46
49
  }
47
50
 
48
51
  /* Only in embedded mode is the trigger deliberately narrower than its options (e.g. a currency
49
52
  symbol box): let the dropdown grow past it rather than truncate. Standalone pickers keep the
50
53
  dropdown flush with the input, so a long display text can't overhang a narrow form column. */
51
- .aform_form-element--embedded .autocomplete-results[data-v-91a761d0] {
54
+ .aform_form-element--embedded .autocomplete-results[data-v-07d20e9b] {
52
55
  min-width: 100%;
53
56
  width: max-content;
54
57
  }
@@ -56,21 +59,51 @@
56
59
  /* Give the button the same outline as the input, then slide it 2px left so the outlines
57
60
  overlap exactly at the join: input right outline sits at (input_right - 1px),
58
61
  button left outline also sits at (button_left + 1px) = (input_right - 2px + 1px) = same pixel. */
59
- .aform_form-btn[data-v-91a761d0] {
62
+ .aform_form-btn[data-v-07d20e9b] {
60
63
  appearance: none;
61
64
  border: none;
62
65
  outline: 1px solid var(--sc-input-border-color);
63
66
  outline-offset: -1px;
64
67
  margin-left: -2px;
65
68
  background: var(--sc-input-field-background);
66
- padding: 0 0.75rem;
69
+ padding: 0.5rem 0.75rem;
67
70
  cursor: pointer;
71
+ display: block;
72
+ font-size: 1rem;
73
+ line-height: normal;
74
+ font-family: var(--sc-font-family);
75
+ color: var(--sc-cell-text-color);
76
+ }
77
+
78
+ /* Drawn rather than a text glyph, but set on the text's baseline at capital height: text sits
79
+ above its box's centre, so an icon centred in the box reads low beside the input's text. */
80
+ .aform_form-btn-icon[data-v-07d20e9b] {
81
+ height: 0.716em;
82
+ width: auto;
83
+ vertical-align: baseline;
84
+ overflow: visible;
85
+ fill: none;
86
+ stroke: currentColor;
87
+ stroke-width: 1.5;
88
+ stroke-linecap: round;
89
+ stroke-linejoin: round;
68
90
  }
69
- .aform_form-btn[data-v-91a761d0]:focus,
70
- .input-group:focus-within .aform_form-btn[data-v-91a761d0] {
91
+
92
+ /* The glyph stays as the button's spoken name, hidden from sight. */
93
+ .aform_form-btn-name[data-v-07d20e9b] {
94
+ position: absolute;
95
+ width: 1px;
96
+ height: 1px;
97
+ margin: -1px;
98
+ overflow: hidden;
99
+ clip: rect(0, 0, 0, 0);
100
+ white-space: nowrap;
101
+ }
102
+ .aform_form-btn[data-v-07d20e9b]:focus,
103
+ .input-group:focus-within .aform_form-btn[data-v-07d20e9b] {
71
104
  outline-color: var(--sc-input-active-border-color);
72
105
  }
73
- .autocomplete-results[data-v-91a761d0] {
106
+ .autocomplete-results[data-v-07d20e9b] {
74
107
  position: absolute;
75
108
  width: 100%;
76
109
  z-index: 100;
@@ -79,47 +112,48 @@
79
112
  list-style: none;
80
113
  border: 1px solid var(--sc-input-active-border-color);
81
114
  border-top: none;
82
- border-radius: 0 0 0.25rem 0.25rem;
83
- background: #fff;
115
+ border-radius: 0 0 var(--sc-border-radius) var(--sc-border-radius);
116
+ background: var(--sc-overlay-background);
84
117
  }
85
- .autocomplete-result[data-v-91a761d0] {
118
+ .autocomplete-result[data-v-07d20e9b] {
86
119
  padding: 4px 6px;
87
120
  cursor: pointer;
88
- border-bottom: 0.5px solid lightgray;
121
+ border-bottom: 0.5px solid var(--sc-input-border-color);
89
122
  }
90
- .autocomplete-result.is-active[data-v-91a761d0],
91
- .autocomplete-result[data-v-91a761d0]:hover {
123
+ .autocomplete-result.is-active[data-v-07d20e9b],
124
+ .autocomplete-result[data-v-07d20e9b]:hover {
92
125
  background-color: var(--sc-row-color-zebra-light);
93
126
  color: var(--sc-input-active-border-color);
94
127
  }
95
128
 
96
- .acurrency__row[data-v-77852830] {
129
+ .acurrency__row[data-v-f61b058f] {
97
130
  display: flex;
98
131
  gap: 1ch;
99
132
  }
100
- .acurrency__row--base[data-v-77852830] {
133
+ .acurrency__row--base[data-v-f61b058f] {
101
134
  margin-top: 1.5rem;
102
135
  }
103
- .acurrency__field[data-v-77852830] {
136
+ .acurrency__field[data-v-f61b058f] {
104
137
  position: relative;
105
138
  flex: 1;
106
139
  min-width: 0;
107
140
  }
108
- .acurrency__group[data-v-77852830] {
141
+ .acurrency__group[data-v-f61b058f] {
109
142
  display: flex;
110
143
  align-items: stretch;
111
144
  width: 100%;
145
+ background: var(--sc-input-field-background);
112
146
  border: 1px solid var(--sc-input-border-color);
113
- border-radius: 0.25rem;
147
+ border-radius: var(--sc-border-radius);
114
148
  }
115
- .acurrency__group[data-v-77852830]:focus-within {
149
+ .acurrency__group[data-v-f61b058f]:focus-within {
116
150
  border-color: var(--sc-input-active-border-color);
117
151
  }
118
152
 
119
153
  /* Wraps just the amount input so its floating label (`left: 10px` of the nearest
120
154
  `position: relative` ancestor, per .aform_field-label) anchors above the amount box
121
155
  specifically, not the group's outer left edge — which is now the currency prefix. */
122
- .acurrency__amount-wrap[data-v-77852830] {
156
+ .acurrency__amount-wrap[data-v-f61b058f] {
123
157
  position: relative;
124
158
  flex: 1;
125
159
  min-width: 0;
@@ -127,23 +161,31 @@
127
161
 
128
162
  /* The amount label ("Total") is the primary label for the whole merged group — bumped up
129
163
  slightly from the shared .aform_field-label size so it reads as the group's main label. */
130
- .acurrency__amount-wrap .aform_field-label[data-v-77852830] {
164
+ .acurrency__amount-wrap .aform_field-label[data-v-f61b058f] {
131
165
  font-size: 0.85rem;
132
166
  }
133
- .acurrency__amount[data-v-77852830] {
167
+
168
+ /* The label names the whole group, so focus on the currency picker darkens it too. */
169
+ .acurrency__group:focus-within .acurrency__amount-wrap > .aform_field-label[data-v-f61b058f] {
170
+ color: var(--sc-input-active-label-color);
171
+ }
172
+ .acurrency__amount[data-v-f61b058f] {
134
173
  width: 100%;
135
174
  box-sizing: border-box;
136
175
  border: none;
137
176
  outline: none;
138
- padding: 0.5ch 1ch;
177
+ padding: 0.5rem 1ch;
178
+ font-size: 1rem;
179
+ font-family: var(--sc-font-family);
180
+ color: var(--sc-cell-text-color);
139
181
  background: transparent;
140
- border-radius: 0 0.25rem 0.25rem 0;
182
+ border-radius: 0 var(--sc-border-radius) var(--sc-border-radius) 0;
141
183
  text-align: right;
142
184
  appearance: textfield;
143
185
  -moz-appearance: textfield;
144
186
  }
145
- .acurrency__amount[data-v-77852830]::-webkit-outer-spin-button,
146
- .acurrency__amount[data-v-77852830]::-webkit-inner-spin-button {
187
+ .acurrency__amount[data-v-f61b058f]::-webkit-outer-spin-button,
188
+ .acurrency__amount[data-v-f61b058f]::-webkit-inner-spin-button {
147
189
  appearance: none;
148
190
  -webkit-appearance: none;
149
191
  margin: 0;
@@ -154,47 +196,47 @@
154
196
  picked, not the full name), tinted background, left-rounded to match the group's own
155
197
  corner so the tint doesn't overhang the border. The dropdown itself isn't bound by this
156
198
  width — see AFormLink's .autocomplete-results — so search results still show full names. */
157
- .acurrency__currency[data-v-77852830] {
199
+ .acurrency__currency[data-v-f61b058f] {
158
200
  position: relative;
159
201
  flex: 0 0 auto;
160
202
  min-width: 4.5rem;
161
- background: var(--sc-gray-5);
203
+ background: var(--sc-input-addon-background);
162
204
  border-right: 1px solid var(--sc-input-border-color);
163
- border-radius: 0.25rem 0 0 0.25rem;
205
+ border-radius: var(--sc-border-radius) 0 0 var(--sc-border-radius);
164
206
  }
165
- .acurrency__base-field[data-v-77852830] {
207
+ .acurrency__base-field[data-v-f61b058f] {
166
208
  width: 100%;
167
209
  box-sizing: border-box;
168
210
  font-size: 1rem;
169
- padding: 0.5ch 1ch;
211
+ padding: 0.5rem 1ch;
170
212
  border: 1px solid var(--sc-input-border-color);
171
- border-radius: 0.25rem;
213
+ border-radius: var(--sc-border-radius);
172
214
  outline: none;
173
215
  appearance: textfield;
174
216
  -moz-appearance: textfield;
175
217
  }
176
- .acurrency__base-field[data-v-77852830]:disabled {
218
+ .acurrency__base-field[data-v-f61b058f]:disabled {
177
219
  color: var(--sc-gray-50);
178
220
  }
179
221
 
180
222
  /* Base Amount and Exchange Rate are read-only — the number spinner offers nothing here. */
181
- .acurrency__base-field[data-v-77852830]::-webkit-outer-spin-button,
182
- .acurrency__base-field[data-v-77852830]::-webkit-inner-spin-button {
223
+ .acurrency__base-field[data-v-f61b058f]::-webkit-outer-spin-button,
224
+ .acurrency__base-field[data-v-f61b058f]::-webkit-inner-spin-button {
183
225
  appearance: none;
184
226
  -webkit-appearance: none;
185
227
  margin: 0;
186
228
  }
187
229
 
188
- .adatepicker[data-v-ef698187],
189
- .adatepicker table[data-v-ef698187],
190
- .adatepicker tr[data-v-ef698187],
191
- .adatepicker td[data-v-ef698187],
192
- .adatepicker th[data-v-ef698187] {
230
+ .adatepicker[data-v-e22e44d1],
231
+ .adatepicker table[data-v-e22e44d1],
232
+ .adatepicker tr[data-v-e22e44d1],
233
+ .adatepicker td[data-v-e22e44d1],
234
+ .adatepicker th[data-v-e22e44d1] {
193
235
  -webkit-user-select: none;
194
236
  -moz-user-select: none;
195
237
  user-select: none;
196
238
  }
197
- .adatepicker[data-v-ef698187] {
239
+ .adatepicker[data-v-e22e44d1] {
198
240
  font-size: var(--sc-table-font-size);
199
241
  display: inline-table;
200
242
  color: var(--sc-cell-text-color);
@@ -203,24 +245,24 @@
203
245
  margin-bottom: 10px;
204
246
  /* width: calc(100% - 4px); */
205
247
  }
206
- .adatepicker tr[data-v-ef698187] {
248
+ .adatepicker tr[data-v-e22e44d1] {
207
249
  height: 1.15rem;
208
250
  height: 1.15rem;
209
251
  text-align: center;
210
252
  vertical-align: middle;
211
253
  }
212
- .adatepicker td[data-v-ef698187] {
254
+ .adatepicker td[data-v-e22e44d1] {
213
255
  border: 2px solid transparent;
214
256
  outline: 2px solid transparent;
215
257
  min-width: 3ch;
216
258
  max-width: 3ch;
217
259
  cursor: pointer;
218
260
  }
219
- .adatepicker td.date-cell[data-v-ef698187]:hover {
261
+ .adatepicker td.date-cell[data-v-e22e44d1]:hover {
220
262
  background: var(--sc-gray-10);
221
263
  }
222
- .adatepicker td[data-v-ef698187]:focus,
223
- .adatepicker td[data-v-ef698187]:focus-within {
264
+ .adatepicker td[data-v-e22e44d1]:focus,
265
+ .adatepicker td[data-v-e22e44d1]:focus-within {
224
266
  /* outline: 1px dashed black; */
225
267
  box-shadow: none;
226
268
  overflow: hidden;
@@ -228,51 +270,51 @@
228
270
  max-height: 1.15em;
229
271
  overflow: hidden;
230
272
  }
231
- .adatepicker .selectedDate[data-v-ef698187],
232
- .adatepicker .startDate[data-v-ef698187],
233
- .adatepicker .endDate[data-v-ef698187] {
273
+ .adatepicker .selectedDate[data-v-e22e44d1],
274
+ .adatepicker .startDate[data-v-e22e44d1],
275
+ .adatepicker .endDate[data-v-e22e44d1] {
234
276
  /* outline: 1px solid black; */
235
277
  background: var(--sc-gray-20);
236
278
  font-weight: bolder;
237
279
  }
238
- .adatepicker .startDate[data-v-ef698187] {
280
+ .adatepicker .startDate[data-v-e22e44d1] {
239
281
  /* border-radius: 5px 0px 0px 5px; */
240
282
  border-left: 1px solid var(--sc-gray-50);
241
283
  background: var(--sc-gray-20) !important;
242
284
  }
243
- .adatepicker .endDate[data-v-ef698187] {
285
+ .adatepicker .endDate[data-v-e22e44d1] {
244
286
  border-right: 1px solid var(--sc-gray-50);
245
287
  /* border-radius: 0px 5px 5px 0px; */
246
288
  background: var(--sc-gray-20) !important;
247
289
  }
248
- .adatepicker .withinRange[data-v-ef698187] {
290
+ .adatepicker .withinRange[data-v-e22e44d1] {
249
291
  background: var(--sc-gray-5);
250
292
  }
251
- .adatepicker .todaysDate[data-v-ef698187] {
293
+ .adatepicker .todaysDate[data-v-e22e44d1] {
252
294
  font-weight: bolder;
253
295
  /* text-decoration: underline; */
254
- color: black;
296
+ color: var(--sc-cell-text-color);
255
297
  }
256
- .days-header > td[data-v-ef698187] {
298
+ .days-header > td[data-v-e22e44d1] {
257
299
  font-weight: bold;
258
300
  }
259
- .prev-date[data-v-ef698187] {
301
+ .prev-date[data-v-e22e44d1] {
260
302
  color: var(--sc-gray-20);
261
303
  }
262
- .adatepicker .date-input[data-v-ef698187] {
304
+ .adatepicker .date-input[data-v-e22e44d1] {
263
305
  display: flex;
264
306
  width: 100%;
265
307
  gap: 5px;
266
308
  align-items: center;
267
309
  }
268
- .adatepicker .date-input > input[data-v-ef698187] {
310
+ .adatepicker .date-input > input[data-v-e22e44d1] {
269
311
  width: 50%;
270
312
  padding: 2px;
271
313
  }
272
314
 
273
315
  /* Keep the field error in-flow below the calendar. The shared .aform_error is absolutely
274
316
  positioned against a .aform_form-element anchor, which this grid component does not use. */
275
- p.aform_error[data-v-ef698187] {
317
+ p.aform_error[data-v-e22e44d1] {
276
318
  position: static;
277
319
  display: block;
278
320
  color: var(--sc-brand-danger);
@@ -280,72 +322,76 @@ p.aform_error[data-v-ef698187] {
280
322
  margin: 0.25rem 0 0;
281
323
  }
282
324
 
283
- .adate_time[data-v-95ad0aa4] {
325
+ .adate_time[data-v-3a6e48db] {
284
326
  width: auto;
285
327
  padding: 10px;
286
328
  box-sizing: border-box;
287
329
  font-size: 1rem;
288
- background: var(--sc-gray-10);
330
+ background: var(--sc-input-field-background);
289
331
  }
290
- .adate_time_fields[data-v-95ad0aa4] {
332
+ .adate_time_fields[data-v-3a6e48db] {
291
333
  display: flex;
292
334
  align-items: stretch;
293
335
  gap: 5px;
294
336
  justify-content: flex-start;
295
337
  }
296
- .adate_time_fields > input[data-v-95ad0aa4] {
297
- min-width: 30px;
298
- padding: 2px;
338
+ .adate_time_fields > input[data-v-3a6e48db] {
339
+ width: 2.5rem;
340
+ min-width: 2.5rem;
341
+ flex: 0 0 auto;
342
+ padding: 0.25rem 0.15rem;
299
343
  text-align: center;
300
- display: inline-block;
301
- flex-basis: 0;
344
+ background: var(--sc-input-field-background);
345
+ border: 1px solid var(--sc-input-border-color);
346
+ color: var(--sc-cell-text-color);
347
+ border-radius: var(--sc-border-radius);
348
+ }
349
+ .adate_time_fields > input[data-v-3a6e48db]:focus,
350
+ .meridiem-selector[data-v-3a6e48db]:focus {
351
+ outline: 1px solid var(--sc-input-active-border-color);
352
+ outline-offset: -1px;
302
353
  }
303
- .meridiem-selector[data-v-95ad0aa4] {
354
+ .meridiem-selector[data-v-3a6e48db] {
355
+ flex: 0 0 auto;
356
+ width: auto;
357
+ min-width: 5.5rem;
358
+ margin-left: 6px;
359
+ padding: 0.25rem 1.75rem 0.25rem 0.5rem;
304
360
  cursor: pointer;
305
- display: inline-block;
306
- flex-basis: 0;
307
- padding: 5px;
308
361
  user-select: none;
362
+ background: var(--sc-input-field-background);
363
+ border: 1px solid var(--sc-input-border-color);
364
+ color: var(--sc-cell-text-color);
365
+ border-radius: var(--sc-border-radius);
366
+ font-size: 1rem;
309
367
  }
310
- .meridiem-selector[data-v-95ad0aa4]:focus {
311
- outline: 2px solid black;
312
- outline-offset: -2px;
313
- }
314
- .adate_time_segment[data-v-95ad0aa4] {
368
+ .adate_time_segment[data-v-3a6e48db] {
315
369
  display: flex;
316
370
  flex-direction: column;
317
371
  width: 40px;
318
372
  }
319
- .colon[data-v-95ad0aa4] {
373
+ .colon[data-v-3a6e48db] {
320
374
  display: flex;
321
375
  align-items: normal;
322
376
  }
323
- .aform_form-btn[data-v-95ad0aa4] {
377
+ .aform_form-btn[data-v-3a6e48db] {
324
378
  cursor: pointer;
325
379
  }
326
- .aform-select[data-v-95ad0aa4] {
327
- border-radius: 0px;
328
- border: 1px solid rgb(118, 118, 118);
329
- font-size: 1rem;
330
- padding: 0rem;
331
- margin: 0;
332
- border-radius: 0;
380
+ .aform-select[data-v-3a6e48db] {
333
381
  box-sizing: border-box;
334
382
  min-height: auto;
335
- position: relative;
336
- color: var(--sc-cell-text-color);
337
- }
338
- .meridiem-selector[data-v-95ad0aa4] {
339
- margin-left: 6px;
340
383
  }
341
384
 
342
- .adate-selection[data-v-36e737ea] {
385
+ .adate-selection[data-v-48e71f28] {
343
386
  display: inline-block;
344
- border: 1px solid var(--sc-gray-80);
387
+ width: max-content;
388
+ max-width: 100%;
389
+ box-sizing: border-box;
390
+ border: 1px solid var(--sc-input-border-color);
345
391
  padding: 10px;
346
- background: var(--sc-form-background);
392
+ background: var(--sc-input-field-background);
347
393
  }
348
- .adate-selection__end-label[data-v-36e737ea] {
394
+ .adate-selection__end-label[data-v-48e71f28] {
349
395
  font-size: 0.8em;
350
396
  font-weight: bold;
351
397
  color: var(--sc-input-active-label-color);
@@ -353,25 +399,28 @@ p.aform_error[data-v-ef698187] {
353
399
  margin-bottom: 2px;
354
400
  padding-left: 2px;
355
401
  }
356
- .empty[data-v-36e737ea] {
357
- color: #ccc;
402
+ .empty[data-v-48e71f28] {
403
+ color: var(--sc-input-label-color);
358
404
  padding: 10px;
359
405
  text-align: center;
360
- border: 1px solid #ccc;
406
+ border: 1px solid var(--sc-input-border-color);
361
407
  }
362
408
 
363
- .adate-picker[data-v-5de3fe7a] {
409
+ .adate-picker[data-v-e1403ea0] {
364
410
  position: absolute;
365
411
  top: 100%;
366
412
  left: 0;
367
- z-index: 1000;
413
+ width: max-content;
414
+ max-width: 100%;
415
+ box-sizing: border-box;
416
+ z-index: 100;
368
417
  margin-top: 0.25rem;
369
418
  }
370
419
 
371
- .autocomplete[data-v-4206fcf7] {
420
+ .autocomplete[data-v-2275075e] {
372
421
  position: relative;
373
422
  }
374
- .autocomplete-results[data-v-4206fcf7] {
423
+ .autocomplete-results[data-v-2275075e] {
375
424
  position: absolute;
376
425
  left: 0;
377
426
  right: 0;
@@ -380,19 +429,19 @@ p.aform_error[data-v-ef698187] {
380
429
  margin: 0;
381
430
  color: var(--sc-input-active-border-color);
382
431
  border: 1px solid var(--sc-input-active-border-color);
383
- border-radius: 0;
432
+ border-radius: 0 0 var(--sc-border-radius) var(--sc-border-radius);
384
433
  border-top: none;
385
- background-color: var(--sc-input-field-background);
434
+ background-color: var(--sc-overlay-background);
386
435
  list-style: none;
387
436
  }
388
- .autocomplete-result[data-v-4206fcf7] {
437
+ .autocomplete-result[data-v-2275075e] {
389
438
  text-align: left;
390
439
  padding: 4px 6px;
391
440
  cursor: pointer;
392
- border-bottom: 0.5px solid lightgray;
441
+ border-bottom: 0.5px solid var(--sc-input-border-color);
393
442
  }
394
- .autocomplete-result.is-active[data-v-4206fcf7],
395
- .autocomplete-result[data-v-4206fcf7]:hover {
443
+ .autocomplete-result.is-active[data-v-2275075e],
444
+ .autocomplete-result[data-v-2275075e]:hover {
396
445
  background-color: var(--sc-row-color-zebra-light);
397
446
  color: var(--sc-input-active-border-color);
398
447
  }
@@ -461,15 +510,15 @@ p.aform_error[data-v-ef698187] {
461
510
  --sc-badge-accent: var(--sc-badge-brand-accent);
462
511
  }
463
512
 
464
- .aform_segmented-control--xs.aform_form-element[data-v-23f09651] {
513
+ .aform_segmented-control--xs.aform_form-element[data-v-8b740fd8] {
465
514
  min-width: 0;
466
515
  padding-top: 0;
467
516
  max-width: none;
468
517
  }
469
- .aform_segmented-control--xs[data-v-23f09651]:not(:has(.aform_segmented-sr-label)) {
518
+ .aform_segmented-control--xs[data-v-8b740fd8]:not(:has(.aform_segmented-sr-label)) {
470
519
  padding-top: 0.5rem;
471
520
  }
472
- .aform_segmented-sr-label[data-v-23f09651] {
521
+ .aform_segmented-sr-label[data-v-8b740fd8] {
473
522
  position: absolute;
474
523
  width: 1px;
475
524
  height: 1px;
@@ -480,7 +529,7 @@ p.aform_error[data-v-ef698187] {
480
529
  white-space: nowrap;
481
530
  border: 0;
482
531
  }
483
- .aform_segmented-track[data-v-23f09651] {
532
+ .aform_segmented-track[data-v-8b740fd8] {
484
533
  display: inline-flex;
485
534
  flex-wrap: wrap;
486
535
  align-items: stretch;
@@ -493,18 +542,18 @@ p.aform_error[data-v-ef698187] {
493
542
  outline-offset: -1px;
494
543
  border-radius: 0;
495
544
  box-sizing: border-box;
496
- background: var(--sc-input-field-disabled-background);
545
+ background: var(--sc-input-addon-background);
497
546
  font-family: var(--sc-font-family);
498
547
  }
499
- .aform_segmented-control--xs .aform_segmented-track[data-v-23f09651] {
548
+ .aform_segmented-control--xs .aform_segmented-track[data-v-8b740fd8] {
500
549
  min-height: 1.5rem;
501
550
  font-size: 0.875rem;
502
551
  }
503
- .aform_segmented-control--equal .aform_segmented-track[data-v-23f09651] {
552
+ .aform_segmented-control--equal .aform_segmented-track[data-v-8b740fd8] {
504
553
  display: flex;
505
554
  width: 100%;
506
555
  }
507
- .aform_segmented-segment[data-v-23f09651] {
556
+ .aform_segmented-segment[data-v-8b740fd8] {
508
557
  position: relative;
509
558
  display: inline-flex;
510
559
  align-items: center;
@@ -523,15 +572,15 @@ p.aform_error[data-v-ef698187] {
523
572
  user-select: none;
524
573
  box-sizing: border-box;
525
574
  }
526
- .aform_segmented-control--sm .aform_segmented-segment[data-v-23f09651] {
575
+ .aform_segmented-control--sm .aform_segmented-segment[data-v-8b740fd8] {
527
576
  min-height: 1.75rem;
528
577
  padding: 0.125rem 0.75rem;
529
578
  font-size: var(--sc-font-size);
530
579
  }
531
- .aform_segmented-control--equal .aform_segmented-segment[data-v-23f09651] {
580
+ .aform_segmented-control--equal .aform_segmented-segment[data-v-8b740fd8] {
532
581
  flex: 1 1 0;
533
582
  }
534
- .aform_segmented-input[data-v-23f09651] {
583
+ .aform_segmented-input[data-v-8b740fd8] {
535
584
  position: absolute;
536
585
  inline-size: 1px;
537
586
  block-size: 1px;
@@ -542,114 +591,120 @@ p.aform_error[data-v-ef698187] {
542
591
  white-space: nowrap;
543
592
  border: 0;
544
593
  }
545
- .aform_segmented-label[data-v-23f09651] {
594
+ .aform_segmented-label[data-v-8b740fd8] {
546
595
  pointer-events: none;
547
596
  }
548
- .aform_segmented-segment[data-v-23f09651]:not(.aform_segmented-segment--badge):has(.aform_segmented-input:checked) {
549
- background: var(--sc-input-field-background);
597
+ .aform_segmented-segment[data-v-8b740fd8]:not(.aform_segmented-segment--badge):has(.aform_segmented-input:checked) {
598
+ background: var(--sc-form-background);
550
599
  color: var(--sc-cell-text-color);
551
600
  font-weight: 500;
552
601
  }
553
- .aform_segmented-segment--badge[data-v-23f09651]:has(.aform_segmented-input:checked) {
602
+ .aform_segmented-segment--badge[data-v-8b740fd8]:has(.aform_segmented-input:checked) {
554
603
  font-weight: 500;
555
604
  }
556
- .aform_segmented-segment--badge:has(.aform_segmented-input:checked).aform_segmented-segment--neutral[data-v-23f09651] {
605
+ .aform_segmented-segment--badge:has(.aform_segmented-input:checked).aform_segmented-segment--neutral[data-v-8b740fd8] {
557
606
  background: var(--sc-badge-neutral-bg);
558
607
  color: var(--sc-badge-neutral-text);
559
608
  }
560
- .aform_segmented-segment--badge:has(.aform_segmented-input:checked).aform_segmented-segment--success[data-v-23f09651] {
609
+ .aform_segmented-segment--badge:has(.aform_segmented-input:checked).aform_segmented-segment--success[data-v-8b740fd8] {
561
610
  background: var(--sc-badge-success-bg);
562
611
  color: var(--sc-badge-success-text);
563
612
  }
564
- .aform_segmented-segment--badge:has(.aform_segmented-input:checked).aform_segmented-segment--warning[data-v-23f09651] {
613
+ .aform_segmented-segment--badge:has(.aform_segmented-input:checked).aform_segmented-segment--warning[data-v-8b740fd8] {
565
614
  background: var(--sc-badge-warning-bg);
566
615
  color: var(--sc-badge-warning-text);
567
616
  }
568
- .aform_segmented-segment--badge:has(.aform_segmented-input:checked).aform_segmented-segment--danger[data-v-23f09651] {
617
+ .aform_segmented-segment--badge:has(.aform_segmented-input:checked).aform_segmented-segment--danger[data-v-8b740fd8] {
569
618
  background: var(--sc-badge-danger-bg);
570
619
  color: var(--sc-badge-danger-text);
571
620
  }
572
- .aform_segmented-segment--badge:has(.aform_segmented-input:checked).aform_segmented-segment--brand[data-v-23f09651] {
621
+ .aform_segmented-segment--badge:has(.aform_segmented-input:checked).aform_segmented-segment--brand[data-v-8b740fd8] {
573
622
  background: var(--sc-badge-brand-bg);
574
623
  color: var(--sc-badge-brand-text);
575
624
  }
576
- .aform_segmented-segment--badge:has(.aform_segmented-input:checked)[style*='--sc-badge-bg'][data-v-23f09651] {
625
+ .aform_segmented-segment--badge:has(.aform_segmented-input:checked)[style*='--sc-badge-bg'][data-v-8b740fd8] {
577
626
  background: var(--sc-badge-bg);
578
627
  color: var(--sc-badge-text);
579
628
  }
580
- .aform_segmented-segment[data-v-23f09651]:has(.aform_segmented-input:focus-visible) {
629
+ .aform_segmented-segment[data-v-8b740fd8]:has(.aform_segmented-input:focus-visible) {
581
630
  outline: 1px solid var(--sc-input-active-border-color);
582
631
  outline-offset: -1px;
583
632
  }
584
- .aform_segmented-segment[data-v-23f09651]:hover:has(.aform_segmented-input:not(:disabled):not(:checked)) {
585
- background: color-mix(in srgb, var(--sc-input-field-background) 50%, transparent);
633
+ .aform_segmented-segment[data-v-8b740fd8]:hover:has(.aform_segmented-input:not(:disabled):not(:checked)) {
634
+ background: color-mix(in srgb, var(--sc-form-background) 50%, transparent);
586
635
  }
587
- .aform_segmented-segment[data-v-23f09651]:has(.aform_segmented-input:disabled) {
636
+ .aform_segmented-segment[data-v-8b740fd8]:has(.aform_segmented-input:disabled) {
588
637
  cursor: not-allowed;
589
638
  opacity: 0.5;
590
639
  }
591
- .aform_segmented-track[data-v-23f09651]:has(.aform_segmented-input:focus-visible) {
640
+ .aform_segmented-track[data-v-8b740fd8]:has(.aform_segmented-input:focus-visible) {
592
641
  outline-color: var(--sc-input-active-border-color);
593
642
  }
594
- .aform_segmented-display-badge[data-v-23f09651] {
643
+ .aform_segmented-display-badge[data-v-8b740fd8] {
595
644
  display: block;
596
645
  padding: 0.5rem;
597
646
  min-height: 2rem;
598
647
  box-sizing: border-box;
599
648
  }
600
649
  @media (prefers-reduced-motion: no-preference) {
601
- .aform_segmented-segment[data-v-23f09651] {
650
+ .aform_segmented-segment[data-v-8b740fd8] {
602
651
  transition:
603
652
  background-color 0.1s ease-out,
604
653
  color 0.1s ease-out;
605
654
  }
606
655
  }
607
656
  @media (prefers-reduced-motion: reduce) {
608
- .aform_segmented-segment[data-v-23f09651] {
657
+ .aform_segmented-segment[data-v-8b740fd8] {
609
658
  transition: none;
610
659
  }
611
660
  }
612
661
 
613
- .adatetime-picker[data-v-b0fa488b] {
662
+ .adatetime-picker[data-v-427253ba] {
614
663
  position: absolute;
615
664
  top: 100%;
616
665
  left: 0;
617
- z-index: 1000;
666
+ width: max-content;
667
+ max-width: 100%;
668
+ box-sizing: border-box;
669
+ z-index: 100;
618
670
  margin-top: 0.25rem;
619
671
  }
620
672
 
621
- .aduration[data-v-43788a3d] {
673
+ .aduration[data-v-64f6240e] {
622
674
  position: relative;
623
- min-width: 40ch;
624
- width: 100%;
675
+ width: max-content;
676
+ max-width: 100%;
625
677
  }
626
- .aduration__summary[data-v-43788a3d] {
678
+ .aduration__summary[data-v-64f6240e] {
627
679
  display: flex;
628
680
  gap: 6px;
629
681
  align-items: baseline;
630
682
  margin-top: 6px;
631
683
  font-size: 0.9em;
632
684
  }
633
- .aduration__label[data-v-43788a3d] {
685
+ .aduration__label[data-v-64f6240e] {
634
686
  font-weight: bold;
635
687
  color: var(--sc-input-active-label-color);
636
688
  }
637
- .aduration__value[data-v-43788a3d] {
689
+ .aduration__value[data-v-64f6240e] {
638
690
  color: var(--sc-cell-text-color);
639
691
  }
640
- .aduration__ms[data-v-43788a3d] {
692
+ .aduration__ms[data-v-64f6240e] {
641
693
  color: var(--sc-gray-50);
642
694
  font-size: 0.85em;
643
695
  }
644
- .aduration__footer[data-v-43788a3d] {
696
+ .aduration__footer[data-v-64f6240e] {
645
697
  margin-top: 8px;
646
698
  }
647
699
 
648
- .adaterange-picker[data-v-f8dad4d3] {
700
+ .adaterange-picker[data-v-b7560709] {
649
701
  position: absolute;
650
702
  top: 100%;
651
703
  left: 0;
652
- z-index: 1000;
704
+ width: max-content;
705
+ max-width: 100%;
706
+ box-sizing: border-box;
707
+ z-index: 100;
653
708
  margin-top: 0.25rem;
654
709
  }
655
710
 
@@ -659,12 +714,13 @@ p.aform_error[data-v-ef698187] {
659
714
  border: none;
660
715
  }
661
716
  .aform_form-element {
662
- padding: 0;
717
+ padding: var(--sc-form-label-offset) 0 0;
663
718
  margin: 0;
664
719
  position: relative;
665
720
  box-sizing: border-box;
666
721
  flex-grow: 1;
667
722
  min-width: 20ch;
723
+ max-width: var(--sc-form-field-max-width);
668
724
  /* margin-bottom: 1rem; */
669
725
  }
670
726
  .aform__grid--full {
@@ -672,6 +728,7 @@ p.aform_error[data-v-ef698187] {
672
728
  width: 100%;
673
729
  }
674
730
  .aform_input-field {
731
+ border: none;
675
732
  outline: 1px solid var(--sc-input-border-color);
676
733
  outline-offset: -1px;
677
734
  font-size: 1rem;
@@ -696,23 +753,27 @@ p.aform_error[data-v-ef698187] {
696
753
  color: var(--sc-cell-text-color);
697
754
  word-break: break-word;
698
755
  }
699
- .aform_input-field:focus + .aform_field-label {
756
+
757
+ /* A label darkens while anything beside it holds focus, wherever it sits in its field's markup. */
758
+ :focus-within > .aform_field-label {
700
759
  color: var(--sc-input-active-label-color);
701
760
  }
702
761
  .aform_field-label {
703
762
  color: var(--sc-input-label-color);
704
763
  display: inline-block;
705
764
  position: absolute;
765
+ user-select: none;
706
766
  padding: 0 0.25rem;
707
767
  margin: 0rem;
708
768
  z-index: 1;
709
769
  font-size: 0.7rem;
710
770
  font-weight: 300;
711
771
  letter-spacing: 0.05rem;
712
- background: linear-gradient(var(--sc-form-background) 50%, var(--sc-input-field-background) 50%);
772
+ /* The form colour masks the field's top border behind the text; below it the field shows
773
+ through. Never paint a colour there: it can match only one of the surfaces a field shows. */
774
+ background: linear-gradient(var(--sc-form-background) calc(50% + 1px), transparent calc(50% + 1px));
713
775
  width: auto;
714
776
  box-sizing: border-box;
715
- background: white;
716
777
  margin: 0;
717
778
  grid-row: 1;
718
779
  top: 0;
@@ -721,18 +782,13 @@ p.aform_error[data-v-ef698187] {
721
782
  line-height: 0;
722
783
  transform: translateY(-50%);
723
784
  }
785
+ .aform_form-element > .aform_field-label {
786
+ top: var(--sc-form-label-offset);
787
+ }
724
788
  .aform_input-field:disabled,
725
789
  .aform_checkbox-container:has(.aform_checkbox:disabled) {
726
790
  background: var(--sc-input-field-disabled-background);
727
791
  }
728
- .aform_input-field:disabled + .aform_field-label,
729
- .aform_checkbox-container:has(.aform_checkbox:disabled) + .aform_field-label {
730
- background: linear-gradient(var(--sc-form-background) 50%, var(--sc-input-field-disabled-background) 50%);
731
- }
732
- .aform_input-field:disabled ~ p.aform_error,
733
- .aform_checkbox-container:has(.aform_checkbox:disabled) ~ p.aform_error {
734
- background: linear-gradient(var(--sc-form-background) 50%, var(--sc-input-field-disabled-background) 50%);
735
- }
736
792
  .aform_field-label::after {
737
793
  margin: 0;
738
794
  padding: 0;
@@ -744,7 +800,8 @@ p.aform_error {
744
800
  /* v-show toggles visibility per field; base display must be visible (was stuck at `none`,
745
801
  which overrode v-show and left every field error dormant). */
746
802
  display: inline-block;
747
- background: linear-gradient(var(--sc-form-background) 50%, var(--sc-input-field-background) 50%);
803
+ /* Straddles the border like .aform_field-label, and paints the same way. */
804
+ background: linear-gradient(var(--sc-form-background) calc(50% + 1px), transparent calc(50% + 1px));
748
805
  padding: 0 0.25rem;
749
806
  margin: 0rem;
750
807
  width: auto;
@@ -752,45 +809,51 @@ p.aform_error {
752
809
  font-size: 0.7rem;
753
810
  position: absolute;
754
811
  right: 0;
755
- top: 0;
812
+ top: var(--sc-form-label-offset);
756
813
  line-height: 0;
757
- background: white;
758
814
  padding: 0.25rem;
759
815
  transform: translate(-1rem, -50%);
760
816
  margin: 0;
761
817
  }
762
818
 
763
- .aform[data-v-713aca93] {
819
+ .aform[data-v-dbfe4358] {
764
820
  display: flex;
765
821
  flex-wrap: wrap;
766
822
  gap: 1rem;
767
823
  padding: 1rem;
824
+ background: var(--sc-form-background);
768
825
  border: 1px solid var(--sc-form-border);
769
826
  border-left: 4px solid var(--sc-form-border);
770
827
  margin-bottom: 1rem;
771
828
  max-width: 100%;
772
829
  }
773
830
  @media screen and (max-width: 400px) {
774
- .aform[data-v-713aca93] {
831
+ .aform[data-v-dbfe4358] {
775
832
  flex-direction: column;
776
833
  }
777
834
  }
778
835
 
779
836
  /* Nested form section */
780
- .aform-nested-section[data-v-713aca93] {
837
+ .aform-nested-section[data-v-dbfe4358] {
781
838
  width: 100%;
782
839
  padding: 0.5rem 0;
783
840
  }
784
- .aform-nested-label[data-v-713aca93] {
841
+ .aform-nested-label[data-v-dbfe4358] {
785
842
  font-size: 0.9rem;
786
843
  font-weight: 600;
787
844
  margin: 0 0 0.5rem 0;
788
845
  color: var(--sc-input-label-color);
789
846
  }
790
- .aform-nested-section .aform[data-v-713aca93] {
847
+ .aform-nested-section .aform[data-v-dbfe4358] {
791
848
  border-left-width: 2px;
792
849
  margin-left: 0.5rem;
793
850
  }
851
+ .aform-table-expansion[data-v-dbfe4358] {
852
+ margin-bottom: 0;
853
+ border: none;
854
+ border-left: none;
855
+ padding: 0;
856
+ }
794
857
 
795
858
  .collapse-button[data-v-6f1c1b45] {
796
859
  width: 2ch;
@@ -839,111 +902,122 @@ legend[data-v-162e7317] {
839
902
  float: right;
840
903
  }
841
904
 
842
- .aform_file-attach[data-v-8eefd179] {
843
- padding: 1rem;
905
+ .aform_file-attach[data-v-79ce33a7] {
906
+ padding: 0.5rem;
844
907
  display: flex;
845
908
  flex-wrap: wrap;
846
- gap: 1rem;
909
+ gap: 0.5rem;
847
910
  flex-direction: row;
848
- justify-content: center;
911
+ justify-content: flex-start;
849
912
  align-items: center;
913
+ box-sizing: border-box;
850
914
  border: 1px dashed var(--sc-input-border-color);
851
915
  width: 100%;
852
916
  }
853
917
  @media screen and (max-width: 400px) {
854
- .aform_file-attach > .aform_form-btn[data-v-8eefd179] {
918
+ .aform_file-attach > .aform_form-btn[data-v-79ce33a7] {
855
919
  width: 100%;
856
920
  }
857
921
  }
858
922
  .aform_file-attach-feedback {
859
- &[data-v-8eefd179] {
923
+ &[data-v-79ce33a7] {
860
924
  color: var(--sc-input-label-color);
861
925
  width: 100%;
862
926
  padding: 0.5rem;
863
927
  text-align: center;
864
928
  align-self: center;
865
929
  }
866
- & > li[data-v-8eefd179] {
930
+ & > li[data-v-79ce33a7] {
867
931
  list-style: none;
868
932
  font-style: italic;
869
933
  }
870
- & > p[data-v-8eefd179] {
934
+ & > p[data-v-79ce33a7] {
871
935
  margin-top: 0;
872
936
  }
873
937
  }
874
- .aform_form-btn[data-v-8eefd179] {
875
- padding: 0.5rem 2rem;
938
+ .aform_form-btn[data-v-79ce33a7] {
939
+ padding: 0 1rem;
876
940
  width: auto;
941
+ font-size: 1rem;
942
+ line-height: 1;
877
943
  border: 1px solid var(--sc-input-border-color);
878
944
  color: var(--sc-input-label-color);
879
945
  cursor: pointer;
880
- background-color: white;
946
+ background-color: var(--sc-btn-color);
881
947
  }
882
- .aform_form-btn[data-v-8eefd179]:disabled {
948
+ .aform_form-btn[data-v-79ce33a7]:disabled {
883
949
  background-color: var(--sc-gray-5);
884
950
  }
885
951
 
886
- .aquantity__row[data-v-f16b20ca] {
952
+ .aquantity__row[data-v-a904c817] {
887
953
  display: flex;
888
954
  gap: 1ch;
889
955
  }
890
- .aquantity__row--stock[data-v-f16b20ca] {
956
+ .aquantity__row--stock[data-v-a904c817] {
891
957
  margin-top: 1.5rem;
892
958
  }
893
- .aquantity__field[data-v-f16b20ca] {
959
+ .aquantity__field[data-v-a904c817] {
894
960
  position: relative;
895
961
  flex: 1;
896
962
  min-width: 0;
897
963
  }
898
- .aquantity__group[data-v-f16b20ca] {
964
+ .aquantity__group[data-v-a904c817] {
965
+ position: relative;
899
966
  display: flex;
900
967
  align-items: stretch;
901
968
  width: 100%;
969
+ background: var(--sc-input-field-background);
902
970
  border: 1px solid var(--sc-input-border-color);
903
- border-radius: 0.25rem;
971
+ border-radius: var(--sc-border-radius);
904
972
  }
905
- .aquantity__group[data-v-f16b20ca]:focus-within {
973
+ .aquantity__group[data-v-a904c817]:focus-within {
906
974
  border-color: var(--sc-input-active-border-color);
907
975
  }
908
- .aquantity__qty[data-v-f16b20ca] {
976
+ .aquantity__qty[data-v-a904c817] {
909
977
  flex: 1;
910
978
  min-width: 0;
911
979
  border: none;
912
980
  outline: none;
913
- padding: 0.5ch 1ch;
981
+ padding: 0.5rem 1ch;
982
+ font-size: 1rem;
983
+ font-family: var(--sc-font-family);
984
+ color: var(--sc-cell-text-color);
914
985
  background: transparent;
915
- border-radius: 0.25rem 0 0 0.25rem;
986
+ border-radius: var(--sc-border-radius) 0 0 var(--sc-border-radius);
916
987
  appearance: textfield;
917
988
  -moz-appearance: textfield;
918
989
  }
919
- .aquantity__qty[data-v-f16b20ca]::-webkit-outer-spin-button,
920
- .aquantity__qty[data-v-f16b20ca]::-webkit-inner-spin-button {
990
+ .aquantity__qty[data-v-a904c817]::-webkit-outer-spin-button,
991
+ .aquantity__qty[data-v-a904c817]::-webkit-inner-spin-button {
921
992
  appearance: none;
922
993
  -webkit-appearance: none;
923
994
  margin: 0;
924
995
  }
925
- .aquantity__uom[data-v-f16b20ca] {
996
+ .aquantity__uom[data-v-a904c817] {
926
997
  position: relative;
927
998
  flex: 0 0 auto;
928
999
  border-left: 1px solid var(--sc-input-border-color);
929
1000
  }
930
- .aquantity__uom-toggle[data-v-f16b20ca] {
1001
+ .aquantity__uom-toggle[data-v-a904c817] {
931
1002
  display: flex;
932
1003
  align-items: center;
933
1004
  gap: 0.75ch;
934
1005
  height: 100%;
935
1006
  padding: 0.5ch 1ch;
936
- background: var(--sc-gray-5);
1007
+ font-size: 1rem;
1008
+ font-family: var(--sc-font-family);
1009
+ color: var(--sc-cell-text-color);
1010
+ background: var(--sc-input-addon-background);
937
1011
  border: none;
938
- border-radius: 0 0.25rem 0.25rem 0;
1012
+ border-radius: 0 var(--sc-border-radius) var(--sc-border-radius) 0;
939
1013
  white-space: nowrap;
940
1014
  cursor: pointer;
941
1015
  }
942
- .aquantity__uom-toggle[data-v-f16b20ca]:disabled {
1016
+ .aquantity__uom-toggle[data-v-a904c817]:disabled {
943
1017
  cursor: not-allowed;
944
1018
  color: var(--sc-gray-50);
945
1019
  }
946
- .aquantity__caret[data-v-f16b20ca] {
1020
+ .aquantity__caret[data-v-a904c817] {
947
1021
  display: inline-block;
948
1022
  width: 0;
949
1023
  height: 0;
@@ -951,7 +1025,7 @@ legend[data-v-162e7317] {
951
1025
  border-right: 0.3em solid transparent;
952
1026
  border-top: 0.3em solid currentColor;
953
1027
  }
954
- .aquantity__uom-menu[data-v-f16b20ca] {
1028
+ .aquantity__uom-menu[data-v-a904c817] {
955
1029
  position: absolute;
956
1030
  top: 100%;
957
1031
  right: 0;
@@ -962,40 +1036,40 @@ legend[data-v-162e7317] {
962
1036
  list-style: none;
963
1037
  background: var(--sc-input-field-background);
964
1038
  border: 1px solid var(--sc-input-active-border-color);
965
- border-radius: 0.25rem;
1039
+ border-radius: var(--sc-border-radius);
966
1040
  }
967
- .aquantity__uom-option[data-v-f16b20ca] {
1041
+ .aquantity__uom-option[data-v-a904c817] {
968
1042
  padding: 0.4ch 1ch;
969
1043
  white-space: nowrap;
970
1044
  cursor: pointer;
971
1045
  }
972
- .aquantity__uom-option.is-active[data-v-f16b20ca],
973
- .aquantity__uom-option[data-v-f16b20ca]:hover {
1046
+ .aquantity__uom-option.is-active[data-v-a904c817],
1047
+ .aquantity__uom-option[data-v-a904c817]:hover {
974
1048
  background-color: var(--sc-row-color-zebra-light);
975
1049
  }
976
- .aquantity__stock-field[data-v-f16b20ca] {
1050
+ .aquantity__stock-field[data-v-a904c817] {
977
1051
  width: 100%;
978
1052
  font-size: 1rem;
979
- padding: 0.5ch 1ch;
1053
+ padding: 0.5rem 1ch;
980
1054
  border: 1px solid var(--sc-input-border-color);
981
- border-radius: 0.25rem;
1055
+ border-radius: var(--sc-border-radius);
982
1056
  outline: none;
983
1057
  }
984
- .aquantity__stock-field[data-v-f16b20ca]:disabled {
1058
+ .aquantity__stock-field[data-v-a904c817]:disabled {
985
1059
  color: var(--sc-gray-50);
986
1060
  }
987
1061
 
988
- .aform_textbox[data-v-2a9c793b] {
1062
+ .aform_textbox[data-v-19e611fa] {
989
1063
  resize: vertical;
990
1064
  line-height: 1.5;
991
1065
  min-height: 4rem;
992
1066
  font-family: inherit;
993
1067
  }
994
- .aform_textbox-display[data-v-2a9c793b] {
1068
+ .aform_textbox-display[data-v-19e611fa] {
995
1069
  white-space: pre-wrap;
996
1070
  }
997
1071
 
998
- .login-container[data-v-2c0f0634] {
1072
+ .login-container[data-v-555c3224] {
999
1073
  width: 100%;
1000
1074
  position: relative;
1001
1075
  display: flex;
@@ -1003,8 +1077,9 @@ legend[data-v-162e7317] {
1003
1077
  align-items: center;
1004
1078
  justify-content: center;
1005
1079
  font-family: var(--sc-font-family);
1080
+ background: var(--sc-form-background);
1006
1081
  }
1007
- .account-container[data-v-2c0f0634] {
1082
+ .account-container[data-v-555c3224] {
1008
1083
  width: 100%;
1009
1084
  margin-left: auto;
1010
1085
  margin-top: 0.5rem;
@@ -1013,46 +1088,35 @@ legend[data-v-162e7317] {
1013
1088
  flex-direction: column;
1014
1089
  justify-content: center;
1015
1090
  }
1016
- .account-header[data-v-2c0f0634] {
1091
+ .account-header[data-v-555c3224] {
1017
1092
  display: flex;
1018
1093
  flex-direction: column;
1019
1094
  text-align: center;
1020
1095
  margin-top: 0.5rem;
1021
1096
  }
1022
- #account-title[data-v-2c0f0634] {
1097
+ #account-title[data-v-555c3224] {
1023
1098
  font-size: 1.5rem;
1024
1099
  line-height: 2rem;
1025
1100
  font-weight: 600;
1026
1101
  letter-spacing: -0.025em;
1027
1102
  margin: 0;
1028
1103
  }
1029
- #account-subtitle[data-v-2c0f0634] {
1104
+ #account-subtitle[data-v-555c3224] {
1030
1105
  font-size: 0.875rem;
1031
1106
  line-height: 1.25rem;
1032
1107
  margin: 1rem;
1033
1108
  }
1034
- .login-form-container[data-v-2c0f0634] {
1109
+ .login-form-container[data-v-555c3224] {
1035
1110
  display: grid;
1036
1111
  gap: 0.5rem;
1037
1112
  }
1038
- .login-form-element[data-v-2c0f0634] {
1113
+ .login-form-element[data-v-555c3224] {
1039
1114
  display: grid;
1040
1115
  margin: 0.5rem 0;
1041
1116
  position: relative;
1042
1117
  }
1043
- .login-field {
1044
- &[data-v-2c0f0634] {
1045
- padding: 0.5rem 0.25rem 0.25rem 0.5rem;
1046
- outline: 1px solid transparent;
1047
- border: 1px solid var(--sc-input-border-color);
1048
- border-radius: 0.25rem;
1049
- }
1050
- &[data-v-2c0f0634]:focus {
1051
- border: 1px solid black;
1052
- }
1053
- }
1054
1118
  .btn {
1055
- &[data-v-2c0f0634] {
1119
+ &[data-v-555c3224] {
1056
1120
  background-color: var(--sc-btn-color);
1057
1121
  color: var(--sc-btn-label-color);
1058
1122
  border: 1px solid var(--sc-btn-border);
@@ -1061,18 +1125,18 @@ legend[data-v-162e7317] {
1061
1125
  position: relative;
1062
1126
  cursor: pointer;
1063
1127
  }
1064
- &[data-v-2c0f0634]:hover {
1128
+ &[data-v-555c3224]:hover {
1065
1129
  background-color: var(--sc-btn-hover);
1066
1130
  }
1067
- &[data-v-2c0f0634]:disabled {
1131
+ &[data-v-555c3224]:disabled {
1068
1132
  background-color: var(--sc-input-field-disabled-background);
1069
1133
  }
1070
1134
  }
1071
- .disabled[data-v-2c0f0634] {
1135
+ .disabled[data-v-555c3224] {
1072
1136
  opacity: 0.5;
1073
1137
  }
1074
- .loading-icon[data-v-2c0f0634] {
1075
- animation: spin-2c0f0634 1s linear infinite forwards;
1138
+ .loading-icon[data-v-555c3224] {
1139
+ animation: spin-555c3224 1s linear infinite forwards;
1076
1140
  display: inline-block;
1077
1141
  margin-right: 0.2rem;
1078
1142
  line-height: 0;
@@ -1082,7 +1146,7 @@ legend[data-v-162e7317] {
1082
1146
  }
1083
1147
 
1084
1148
  /* ANIMATION */
1085
- @keyframes spin-2c0f0634 {
1149
+ @keyframes spin-555c3224 {
1086
1150
  from {
1087
1151
  transform: rotate(0deg);
1088
1152
  }