@koobiq/react-components 0.11.1 → 0.13.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/dist/components/Button/Button.js +1 -1
- package/dist/components/Checkbox/Checkbox.d.ts +1 -1
- package/dist/components/Collections/Column.d.ts +1 -1
- package/dist/components/Container/Container.js +13 -4
- package/dist/components/Container/types.d.ts +18 -3
- package/dist/components/Container/types.js +3 -1
- package/dist/components/DateInput/DateInput.js +36 -32
- package/dist/components/DateInput/DateInput.module.css.js +4 -1
- package/dist/components/DateInput/types.d.ts +10 -12
- package/dist/components/DateInput/types.js +5 -5
- package/dist/components/DatePicker/DatePicker.js +18 -2
- package/dist/components/DatePicker/types.d.ts +2 -2
- package/dist/components/Dialog/Dialog.js +2 -2
- package/dist/components/Dialog/components/DialogCloseButton.d.ts +2 -2
- package/dist/components/Form/Form.d.ts +9 -13
- package/dist/components/Form/Form.js +29 -32
- package/dist/components/Form/Form.module.css.js +19 -7
- package/dist/components/Form/FormContext.d.ts +5 -3
- package/dist/components/Form/components/FormActions/FormActions.d.ts +7 -0
- package/dist/components/Form/components/FormActions/FormActions.js +9 -0
- package/dist/components/Form/components/FormActions/index.d.ts +1 -0
- package/dist/components/Form/components/FormCaption/FormCaption.d.ts +16 -0
- package/dist/components/Form/components/FormCaption/FormCaption.js +17 -0
- package/dist/components/Form/components/FormCaption/index.d.ts +1 -0
- package/dist/components/Form/components/FormGroup/FormGroup.d.ts +7 -0
- package/dist/components/Form/components/FormGroup/FormGroup.js +9 -0
- package/dist/components/Form/components/FormGroup/index.d.ts +1 -0
- package/dist/components/Form/components/index.d.ts +3 -0
- package/dist/components/Form/types.d.ts +7 -3
- package/dist/components/Form/utils.js +12 -12
- package/dist/components/FormField/FormField.d.ts +22 -0
- package/dist/components/FormField/FormField.js +55 -0
- package/dist/components/FormField/FormField.module.css.js +17 -0
- package/dist/components/FormField/FormFieldAddon/FormFieldAddon.d.ts +10 -0
- package/dist/components/{FieldComponents/FieldAddon/FieldAddon.js → FormField/FormFieldAddon/FormFieldAddon.js} +9 -14
- package/dist/components/FormField/FormFieldAddon/FormFieldAddon.module.css.js +20 -0
- package/dist/components/FormField/FormFieldAddon/index.d.ts +1 -0
- package/dist/components/{FieldComponents/FieldCaption/FieldCaption.d.ts → FormField/FormFieldCaption/FormFieldCaption.d.ts} +3 -3
- package/dist/components/{FieldComponents/FieldCaption/FieldCaption.js → FormField/FormFieldCaption/FormFieldCaption.js} +4 -4
- package/dist/components/{FieldComponents/FieldError/FieldError.module.css.js → FormField/FormFieldCaption/FormFieldCaption.module.css.js} +1 -1
- package/dist/components/FormField/FormFieldCaption/index.d.ts +1 -0
- package/dist/components/FormField/FormFieldControlGroup/FormFieldControlGroup.d.ts +2 -0
- package/dist/components/{FieldComponents/FieldContentGroup/FieldContentGroup.js → FormField/FormFieldControlGroup/FormFieldControlGroup.js} +11 -29
- package/dist/components/FormField/FormFieldControlGroup/FormFieldControlGroup.module.css.js +23 -0
- package/dist/components/FormField/FormFieldControlGroup/FormFieldControlGroupContext.d.ts +10 -0
- package/dist/components/FormField/FormFieldControlGroup/FormFieldControlGroupContext.js +7 -0
- package/dist/components/FormField/FormFieldControlGroup/index.d.ts +3 -0
- package/dist/components/FormField/FormFieldControlGroup/types.d.ts +30 -0
- package/dist/components/FormField/FormFieldControlGroup/types.js +7 -0
- package/dist/components/FormField/FormFieldError/FormFieldError.d.ts +8 -0
- package/dist/components/FormField/FormFieldError/FormFieldError.js +17 -0
- package/dist/components/{FieldComponents/FieldCaption/FieldCaption.module.css.js → FormField/FormFieldError/FormFieldError.module.css.js} +1 -1
- package/dist/components/FormField/FormFieldError/index.d.ts +1 -0
- package/dist/components/FormField/FormFieldInput/FormFieldInput.d.ts +8 -0
- package/dist/components/FormField/FormFieldInput/FormFieldInput.js +12 -0
- package/dist/components/{FieldComponents/Field/Field.module.css.js → FormField/FormFieldInput/FormFieldInput.module.css.js} +1 -1
- package/dist/components/FormField/FormFieldInput/index.d.ts +1 -0
- package/dist/components/FormField/FormFieldInputDate/FormFieldInputDate.d.ts +8 -0
- package/dist/components/FormField/FormFieldInputDate/FormFieldInputDate.js +9 -0
- package/dist/components/FormField/FormFieldInputDate/FormFieldInputDate.module.css.js +8 -0
- package/dist/components/FormField/FormFieldInputDate/index.d.ts +1 -0
- package/dist/components/FormField/FormFieldLabel/FormFieldLabel.d.ts +4 -0
- package/dist/components/{FormControlLabel/FormControlLabel.js → FormField/FormFieldLabel/FormFieldLabel.js} +5 -4
- package/dist/components/FormField/FormFieldLabel/FormFieldLabel.module.css.js +14 -0
- package/dist/components/FormField/FormFieldLabel/index.d.ts +2 -0
- package/dist/components/{FormControlLabel → FormField/FormFieldLabel}/types.d.ts +1 -1
- package/dist/components/FormField/FormFieldSelect/FormFieldSelect.d.ts +4 -0
- package/dist/components/FormField/FormFieldSelect/FormFieldSelect.js +33 -0
- package/dist/components/FormField/FormFieldSelect/FormFieldSelect.module.css.js +20 -0
- package/dist/components/FormField/FormFieldSelect/index.d.ts +2 -0
- package/dist/components/FormField/FormFieldSelect/types.d.ts +7 -0
- package/dist/components/FormField/index.d.ts +9 -0
- package/dist/components/FormField/types.d.ts +19 -0
- package/dist/components/FormField/types.js +6 -0
- package/dist/components/Input/Input.d.ts +8 -10
- package/dist/components/Input/Input.js +22 -23
- package/dist/components/Input/Input.module.css.js +5 -1
- package/dist/components/Input/types.d.ts +10 -12
- package/dist/components/Input/types.js +5 -5
- package/dist/components/InputNumber/InputNumber.d.ts +8 -10
- package/dist/components/InputNumber/InputNumber.js +22 -22
- package/dist/components/InputNumber/InputNumber.module.css.js +8 -0
- package/dist/components/InputNumber/components/InputNumberCounterControls.js +2 -2
- package/dist/components/InputNumber/types.d.ts +10 -12
- package/dist/components/InputNumber/types.js +5 -5
- package/dist/components/List/components/ListSection/ListSection.js +1 -1
- package/dist/components/RadioGroup/RadioGroup.js +14 -13
- package/dist/components/RadioGroup/RadioGroup.module.css.js +4 -1
- package/dist/components/RadioGroup/components/Radio/Radio.d.ts +1 -1
- package/dist/components/RadioGroup/types.d.ts +7 -9
- package/dist/components/RadioGroup/types.js +3 -3
- package/dist/components/SearchInput/SearchInput.d.ts +8 -10
- package/dist/components/SearchInput/SearchInput.js +39 -30
- package/dist/components/SearchInput/SearchInput.module.css.js +4 -1
- package/dist/components/SearchInput/types.d.ts +10 -12
- package/dist/components/SearchInput/types.js +5 -5
- package/dist/components/Select/Select.js +36 -27
- package/dist/components/Select/Select.module.css.js +4 -4
- package/dist/components/Select/components/TagGroup/TagGroupMultiline.js +2 -2
- package/dist/components/Select/components/TagGroup/TagGroupResponsive.js +2 -2
- package/dist/components/Select/types.d.ts +8 -10
- package/dist/components/Select/types.js +3 -3
- package/dist/components/Table/Table.js +7 -5
- package/dist/components/Table/components/TableColumnHeader/TableColumnHeader.d.ts +3 -1
- package/dist/components/Table/components/TableColumnHeader/TableColumnHeader.js +21 -3
- package/dist/components/Table/components/TableColumnHeader/TableColumnHeader.module.css.js +13 -1
- package/dist/components/Table/components/TableRowGroup/TableRowGroup.d.ts +3 -1
- package/dist/components/Table/components/TableRowGroup/TableRowGroup.js +7 -2
- package/dist/components/Table/types.d.ts +11 -2
- package/dist/components/Textarea/Textarea.d.ts +5 -5
- package/dist/components/Textarea/Textarea.js +6 -4
- package/dist/components/Textarea/Textarea.module.css.js +8 -2
- package/dist/components/Textarea/components/TextareaContextConsumer/TextareaContextConsumer.d.ts +1 -1
- package/dist/components/Textarea/components/TextareaContextConsumer/TextareaContextConsumer.js +24 -20
- package/dist/components/Textarea/types.d.ts +8 -10
- package/dist/components/Textarea/types.js +5 -5
- package/dist/components/TimePicker/TimePicker.js +37 -31
- package/dist/components/TimePicker/TimePicker.module.css.js +4 -1
- package/dist/components/TimePicker/types.d.ts +9 -11
- package/dist/components/TimePicker/types.js +3 -3
- package/dist/components/Toggle/Toggle.d.ts +1 -1
- package/dist/components/Tooltip/Tooltip.d.ts +1 -1
- package/dist/components/index.d.ts +3 -4
- package/dist/index.js +30 -13
- package/dist/style.css +469 -386
- package/dist/types.d.ts +0 -1
- package/package.json +5 -5
- package/dist/components/FieldComponents/Field/Field.d.ts +0 -4
- package/dist/components/FieldComponents/Field/Field.js +0 -10
- package/dist/components/FieldComponents/Field/index.d.ts +0 -2
- package/dist/components/FieldComponents/Field/types.d.ts +0 -4
- package/dist/components/FieldComponents/FieldAddon/FieldAddon.d.ts +0 -11
- package/dist/components/FieldComponents/FieldAddon/FieldAddon.module.css.js +0 -20
- package/dist/components/FieldComponents/FieldAddon/index.d.ts +0 -1
- package/dist/components/FieldComponents/FieldCaption/index.d.ts +0 -1
- package/dist/components/FieldComponents/FieldContentGroup/FieldContentGroup.d.ts +0 -2
- package/dist/components/FieldComponents/FieldContentGroup/FieldContentGroup.module.css.js +0 -29
- package/dist/components/FieldComponents/FieldContentGroup/FieldContentGroupContext.d.ts +0 -10
- package/dist/components/FieldComponents/FieldContentGroup/FieldContentGroupContext.js +0 -7
- package/dist/components/FieldComponents/FieldContentGroup/index.d.ts +0 -3
- package/dist/components/FieldComponents/FieldContentGroup/types.d.ts +0 -29
- package/dist/components/FieldComponents/FieldContentGroup/types.js +0 -4
- package/dist/components/FieldComponents/FieldError/FieldError.d.ts +0 -8
- package/dist/components/FieldComponents/FieldError/FieldError.js +0 -19
- package/dist/components/FieldComponents/FieldError/index.d.ts +0 -1
- package/dist/components/FieldComponents/FieldInput/FieldInput.d.ts +0 -12
- package/dist/components/FieldComponents/FieldInput/FieldInput.js +0 -34
- package/dist/components/FieldComponents/FieldInput/FieldInput.module.css.js +0 -20
- package/dist/components/FieldComponents/FieldInput/index.d.ts +0 -1
- package/dist/components/FieldComponents/FieldInputDate/FieldInputDate.d.ts +0 -12
- package/dist/components/FieldComponents/FieldInputDate/FieldInputDate.js +0 -32
- package/dist/components/FieldComponents/FieldInputDate/FieldInputDate.module.css.js +0 -20
- package/dist/components/FieldComponents/FieldInputDate/index.d.ts +0 -1
- package/dist/components/FieldComponents/FieldSelect/FieldSelect.d.ts +0 -4
- package/dist/components/FieldComponents/FieldSelect/FieldSelect.js +0 -45
- package/dist/components/FieldComponents/FieldSelect/FieldSelect.module.css.js +0 -26
- package/dist/components/FieldComponents/FieldSelect/index.d.ts +0 -2
- package/dist/components/FieldComponents/FieldSelect/types.d.ts +0 -11
- package/dist/components/FieldComponents/index.d.ts +0 -8
- package/dist/components/FormControl/FormControl.d.ts +0 -4
- package/dist/components/FormControl/FormControl.js +0 -41
- package/dist/components/FormControl/FormControl.module.css.js +0 -17
- package/dist/components/FormControl/index.d.ts +0 -2
- package/dist/components/FormControl/types.d.ts +0 -19
- package/dist/components/FormControl/types.js +0 -6
- package/dist/components/FormControlLabel/FormControlLabel.d.ts +0 -4
- package/dist/components/FormControlLabel/FormControlLabel.module.css.js +0 -14
- package/dist/components/FormControlLabel/index.d.ts +0 -2
package/dist/style.css
CHANGED
|
@@ -230,34 +230,128 @@
|
|
|
230
230
|
}
|
|
231
231
|
.kbq-container-136c61 {
|
|
232
232
|
--container-max-inline-size: intial;
|
|
233
|
-
--container-
|
|
233
|
+
--container-placement: intial;
|
|
234
234
|
--container-margins: intial;
|
|
235
235
|
box-sizing: border-box;
|
|
236
236
|
inline-size: 100%;
|
|
237
237
|
max-inline-size: var(--container-max-inline-size);
|
|
238
|
-
margin-inline: var(--container-
|
|
238
|
+
margin-inline: var(--container-placement);
|
|
239
239
|
padding: 0 var(--container-margins);
|
|
240
240
|
}
|
|
241
|
-
.kbq-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
241
|
+
.kbq-formfieldinput-b5d864 {
|
|
242
|
+
box-sizing: border-box;
|
|
243
|
+
inline-size: 100%;
|
|
244
|
+
color: var(--form-field-control-color);
|
|
245
|
+
padding-block: var(--form-field-control-padding-block-start) var(--form-field-control-padding-block-end);
|
|
246
|
+
transition: color var(--kbq-transition-default), background-color var(--kbq-transition-default);
|
|
247
|
+
min-inline-size: 40px;
|
|
248
|
+
font-size: var(--kbq-typography-text-normal-font-size);
|
|
249
|
+
font-weight: var(--kbq-typography-text-normal-font-weight);
|
|
250
|
+
line-height: var(--kbq-typography-text-normal-line-height);
|
|
251
|
+
font-family: var(--kbq-typography-text-normal-font-family);
|
|
252
|
+
font-style: var(--kbq-typography-text-normal-font-style);
|
|
253
|
+
text-transform: var(--kbq-typography-text-normal-text-transform);
|
|
254
|
+
font-feature-settings: var(--kbq-typography-text-normal-font-feature-settings);
|
|
255
|
+
letter-spacing: var(--kbq-typography-text-normal-letter-spacing);
|
|
256
|
+
text-underline-offset: calc(( var(--kbq-typography-text-normal-line-height) - var(--kbq-typography-text-normal-font-size)) / 2);
|
|
257
|
+
background-color: #0000;
|
|
258
|
+
border: none;
|
|
259
|
+
outline: none;
|
|
260
|
+
padding-inline: 0;
|
|
247
261
|
}
|
|
248
262
|
|
|
249
|
-
.kbq-
|
|
250
|
-
|
|
263
|
+
.kbq-formfieldinput-b5d864:-webkit-autofill {
|
|
264
|
+
box-shadow: 0 0 0 1000px var(--kbq-background-theme-fade) inset !important;
|
|
265
|
+
background-color: #0000 !important;
|
|
251
266
|
}
|
|
252
267
|
|
|
253
|
-
.kbq-
|
|
268
|
+
.kbq-formfieldinput-b5d864::placeholder {
|
|
269
|
+
color: var(--form-field-control-placeholder-color);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.kbq-formfieldinput-b5d864:where(input) {
|
|
273
|
+
block-size: var(--form-field-control-size-height);
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.kbq-formfieldinput-b5d864:where(textarea) {
|
|
277
|
+
min-block-size: var(--form-field-control-size-height);
|
|
278
|
+
padding-inline: var(--form-field-control-padding-inline-start) var(--form-field-control-padding-inline-end);
|
|
279
|
+
resize: none;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.kbq-formfieldinput-b5d864:disabled {
|
|
283
|
+
cursor: not-allowed;
|
|
284
|
+
}
|
|
285
|
+
.kbq-formfieldselect-301ef6 {
|
|
286
|
+
cursor: pointer;
|
|
287
|
+
box-sizing: border-box;
|
|
288
|
+
inline-size: 100%;
|
|
289
|
+
color: var(--form-field-control-color);
|
|
290
|
+
min-inline-size: 0;
|
|
291
|
+
min-block-size: var(--form-field-control-size-height);
|
|
292
|
+
transition: color var(--kbq-transition-default), background-color var(--kbq-transition-default);
|
|
293
|
+
font-size: var(--kbq-typography-text-normal-font-size);
|
|
294
|
+
font-weight: var(--kbq-typography-text-normal-font-weight);
|
|
295
|
+
line-height: var(--kbq-typography-text-normal-line-height);
|
|
296
|
+
font-family: var(--kbq-typography-text-normal-font-family);
|
|
297
|
+
font-style: var(--kbq-typography-text-normal-font-style);
|
|
298
|
+
text-transform: var(--kbq-typography-text-normal-text-transform);
|
|
299
|
+
font-feature-settings: var(--kbq-typography-text-normal-font-feature-settings);
|
|
300
|
+
letter-spacing: var(--kbq-typography-text-normal-letter-spacing);
|
|
301
|
+
text-underline-offset: calc(( var(--kbq-typography-text-normal-line-height) - var(--kbq-typography-text-normal-font-size)) / 2);
|
|
302
|
+
background: none;
|
|
303
|
+
border: none;
|
|
304
|
+
outline: none;
|
|
254
305
|
flex-direction: column;
|
|
306
|
+
padding-inline: 0;
|
|
307
|
+
display: flex;
|
|
255
308
|
}
|
|
256
309
|
|
|
257
|
-
.kbq-
|
|
258
|
-
|
|
310
|
+
.kbq-formfieldselect-container-920d39 {
|
|
311
|
+
align-items: center;
|
|
312
|
+
gap: var(--kbq-size-xs);
|
|
313
|
+
block-size: 100%;
|
|
314
|
+
display: flex;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.kbq-formfieldselect-content-9846b3 {
|
|
318
|
+
padding-block: var(--kbq-size-xs);
|
|
319
|
+
white-space: nowrap;
|
|
320
|
+
text-overflow: ellipsis;
|
|
321
|
+
overflow: hidden;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
.kbq-formfieldselect-301ef6[aria-disabled="true"] {
|
|
325
|
+
cursor: not-allowed;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.kbq-formfieldselect-hasPlaceholder-29f7ed {
|
|
329
|
+
--form-field-control-color: var(--form-field-control-placeholder-color);
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.kbq-formfieldselect-hiddenPlaceholder-6598b6 {
|
|
333
|
+
text-align: start;
|
|
334
|
+
visibility: hidden;
|
|
335
|
+
white-space: nowrap;
|
|
336
|
+
text-overflow: ellipsis;
|
|
337
|
+
block-size: 0;
|
|
338
|
+
overflow: hidden;
|
|
259
339
|
}
|
|
260
|
-
.kbq-
|
|
340
|
+
.kbq-formfieldcaption-8209de {
|
|
341
|
+
inline-size: 100%;
|
|
342
|
+
font-size: var(--kbq-typography-text-compact-font-size);
|
|
343
|
+
font-weight: var(--kbq-typography-text-compact-font-weight);
|
|
344
|
+
line-height: var(--kbq-typography-text-compact-line-height);
|
|
345
|
+
font-family: var(--kbq-typography-text-compact-font-family);
|
|
346
|
+
font-style: var(--kbq-typography-text-compact-font-style);
|
|
347
|
+
text-transform: var(--kbq-typography-text-compact-text-transform);
|
|
348
|
+
font-feature-settings: var(--kbq-typography-text-compact-font-feature-settings);
|
|
349
|
+
letter-spacing: var(--kbq-typography-text-compact-letter-spacing);
|
|
350
|
+
text-underline-offset: calc(( var(--kbq-typography-text-compact-line-height) - var(--kbq-typography-text-compact-font-size)) / 2);
|
|
351
|
+
color: var(--kbq-foreground-contrast-secondary);
|
|
352
|
+
transition: color var(--kbq-transition-default);
|
|
353
|
+
}
|
|
354
|
+
.kbq-formfieldlabel-d39737 {
|
|
261
355
|
font-size: var(--kbq-typography-text-normal-font-size);
|
|
262
356
|
font-weight: var(--kbq-typography-text-normal-font-weight);
|
|
263
357
|
line-height: var(--kbq-typography-text-normal-line-height);
|
|
@@ -272,7 +366,7 @@
|
|
|
272
366
|
box-sizing: border-box;
|
|
273
367
|
}
|
|
274
368
|
|
|
275
|
-
.kbq-
|
|
369
|
+
.kbq-formfieldlabel-hidden-8f1ae7 {
|
|
276
370
|
clip: rect(0, 0, 0, 0);
|
|
277
371
|
clip-path: inset(50%);
|
|
278
372
|
white-space: nowrap;
|
|
@@ -285,7 +379,7 @@
|
|
|
285
379
|
overflow: hidden;
|
|
286
380
|
}
|
|
287
381
|
|
|
288
|
-
.kbq-
|
|
382
|
+
.kbq-formfieldlabel-sup-725d9d {
|
|
289
383
|
color: var(--kbq-foreground-error);
|
|
290
384
|
vertical-align: baseline;
|
|
291
385
|
line-height: 0;
|
|
@@ -301,23 +395,217 @@
|
|
|
301
395
|
position: relative;
|
|
302
396
|
}
|
|
303
397
|
|
|
304
|
-
[data-label-placement="top"] .kbq-
|
|
398
|
+
[data-label-placement="top"] .kbq-formfieldlabel-d39737 {
|
|
305
399
|
padding-block-end: var(--kbq-size-xs);
|
|
306
400
|
}
|
|
307
401
|
|
|
308
|
-
[data-label-placement="side"] .kbq-
|
|
402
|
+
[data-label-placement="side"] .kbq-formfieldlabel-d39737 {
|
|
309
403
|
padding-block-start: var(--kbq-size-xs);
|
|
310
404
|
padding-inline-end: var(--kbq-size-l);
|
|
311
405
|
}
|
|
312
406
|
|
|
313
|
-
[data-label-align="start"] .kbq-
|
|
407
|
+
[data-label-align="start"] .kbq-formfieldlabel-d39737 {
|
|
314
408
|
text-align: start;
|
|
315
409
|
}
|
|
316
410
|
|
|
317
|
-
[data-label-align="end"] .kbq-
|
|
411
|
+
[data-label-align="end"] .kbq-formfieldlabel-d39737 {
|
|
318
412
|
text-align: end;
|
|
319
413
|
justify-content: flex-end;
|
|
320
414
|
}
|
|
415
|
+
.kbq-formfielderror-5dded9 {
|
|
416
|
+
inline-size: 100%;
|
|
417
|
+
font-size: var(--kbq-typography-text-compact-font-size);
|
|
418
|
+
font-weight: var(--kbq-typography-text-compact-font-weight);
|
|
419
|
+
line-height: var(--kbq-typography-text-compact-line-height);
|
|
420
|
+
font-family: var(--kbq-typography-text-compact-font-family);
|
|
421
|
+
font-style: var(--kbq-typography-text-compact-font-style);
|
|
422
|
+
text-transform: var(--kbq-typography-text-compact-text-transform);
|
|
423
|
+
font-feature-settings: var(--kbq-typography-text-compact-font-feature-settings);
|
|
424
|
+
letter-spacing: var(--kbq-typography-text-compact-letter-spacing);
|
|
425
|
+
text-underline-offset: calc(( var(--kbq-typography-text-compact-line-height) - var(--kbq-typography-text-compact-font-size)) / 2);
|
|
426
|
+
color: var(--kbq-foreground-error);
|
|
427
|
+
transition: color var(--kbq-transition-default);
|
|
428
|
+
}
|
|
429
|
+
.kbq-formfieldcontrolgroup-e5c3bd {
|
|
430
|
+
--form-field-control-color: ;
|
|
431
|
+
--form-field-control-bg-color: ;
|
|
432
|
+
--form-field-control-size-height: 32px;
|
|
433
|
+
--form-field-control-placeholder-color: ;
|
|
434
|
+
--form-field-control-group-border-color: ;
|
|
435
|
+
--form-field-control-group-outline-width: 2px;
|
|
436
|
+
--form-field-control-group-outline-color: transparent;
|
|
437
|
+
--form-field-control-group-border-radius: var(--kbq-size-s);
|
|
438
|
+
--form-field-control-group-border-width: var(--kbq-size-border-width);
|
|
439
|
+
--form-field-control-padding-inline-start: var(--kbq-size-m);
|
|
440
|
+
--form-field-control-padding-inline-end: var(--kbq-size-m);
|
|
441
|
+
--form-field-control-padding-block-start: var(--kbq-size-xs);
|
|
442
|
+
--form-field-control-padding-block-end: var(--kbq-size-xs);
|
|
443
|
+
inline-size: 100%;
|
|
444
|
+
font-size: var(--kbq-typography-text-normal-font-size);
|
|
445
|
+
font-weight: var(--kbq-typography-text-normal-font-weight);
|
|
446
|
+
line-height: var(--kbq-typography-text-normal-line-height);
|
|
447
|
+
font-family: var(--kbq-typography-text-normal-font-family);
|
|
448
|
+
font-style: var(--kbq-typography-text-normal-font-style);
|
|
449
|
+
text-transform: var(--kbq-typography-text-normal-text-transform);
|
|
450
|
+
font-feature-settings: var(--kbq-typography-text-normal-font-feature-settings);
|
|
451
|
+
letter-spacing: var(--kbq-typography-text-normal-letter-spacing);
|
|
452
|
+
text-underline-offset: calc(( var(--kbq-typography-text-normal-line-height) - var(--kbq-typography-text-normal-font-size)) / 2);
|
|
453
|
+
box-sizing: border-box;
|
|
454
|
+
border-radius: var(--form-field-control-group-border-radius);
|
|
455
|
+
background: var(--form-field-control-bg-color);
|
|
456
|
+
padding-inline: var(--form-field-control-padding-inline-start) var(--form-field-control-padding-inline-end);
|
|
457
|
+
display: flex;
|
|
458
|
+
position: relative;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
.kbq-formfieldcontrolgroup-e5c3bd:before {
|
|
462
|
+
content: "";
|
|
463
|
+
pointer-events: none;
|
|
464
|
+
border-radius: inherit;
|
|
465
|
+
z-index: var(--kbq-layer-absolute);
|
|
466
|
+
transition: border-color var(--kbq-transition-default);
|
|
467
|
+
border: var(--form-field-control-group-border-width) solid var(--form-field-control-group-border-color, transparent);
|
|
468
|
+
position: absolute;
|
|
469
|
+
inset: 0;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
.kbq-formfieldcontrolgroup-e5c3bd:after {
|
|
473
|
+
content: "";
|
|
474
|
+
pointer-events: none;
|
|
475
|
+
border-radius: inherit;
|
|
476
|
+
z-index: var(--kbq-layer-absolute);
|
|
477
|
+
transition: outline-color var(--kbq-transition-default);
|
|
478
|
+
outline-offset: calc(-1 * var(--form-field-control-group-outline-width) / 2);
|
|
479
|
+
outline: var(--form-field-control-group-outline-width) solid var(--form-field-control-group-outline-color);
|
|
480
|
+
position: absolute;
|
|
481
|
+
inset: 0;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.kbq-formfieldcontrolgroup-e5c3bd:not(.kbq-formfieldcontrolgroup-disabled-16937d):has( > button, [role="button"]) {
|
|
485
|
+
cursor: pointer;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.kbq-formfieldcontrolgroup-e5c3bd:has(input:-webkit-autofill) {
|
|
489
|
+
background-color: var(--kbq-background-theme-fade);
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.kbq-formfieldcontrolgroup-transparent-85bd5d {
|
|
493
|
+
--form-field-control-color: var(--kbq-foreground-contrast);
|
|
494
|
+
--form-field-control-bg-color: transparent;
|
|
495
|
+
--form-field-control-placeholder-color: var(--kbq-foreground-contrast-tertiary);
|
|
496
|
+
--form-field-control-group-border-color: transparent;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
.kbq-formfieldcontrolgroup-filled-c28a4b {
|
|
500
|
+
--form-field-control-color: var(--kbq-foreground-contrast);
|
|
501
|
+
--form-field-control-bg-color: var(--kbq-background-bg);
|
|
502
|
+
--form-field-control-placeholder-color: var(--kbq-foreground-contrast-tertiary);
|
|
503
|
+
--form-field-control-group-border-color: var(--kbq-line-contrast-fade);
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
.kbq-formfieldcontrolgroup-filled-c28a4b:where(.kbq-formfieldcontrolgroup-focused-43f1f7) {
|
|
507
|
+
--form-field-control-group-outline-color: var(--kbq-states-line-focus-theme);
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
.kbq-formfieldcontrolgroup-filled-c28a4b:where(.kbq-formfieldcontrolgroup-invalid-f901a7) {
|
|
511
|
+
--form-field-control-color: var(--kbq-foreground-error);
|
|
512
|
+
--form-field-control-bg-color: var(--kbq-background-error-less);
|
|
513
|
+
--form-field-control-placeholder-color: var(--kbq-foreground-error-tertiary);
|
|
514
|
+
--form-field-control-group-border-color: var(--kbq-line-error);
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.kbq-formfieldcontrolgroup-filled-c28a4b:where(.kbq-formfieldcontrolgroup-invalid-f901a7.kbq-formfieldcontrolgroup-focused-43f1f7) {
|
|
518
|
+
--form-field-control-group-outline-color: var(--form-field-control-group-border-color);
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
.kbq-formfieldcontrolgroup-transparent-85bd5d:where(.kbq-formfieldcontrolgroup-invalid-f901a7) {
|
|
522
|
+
--form-field-control-color: var(--kbq-foreground-error);
|
|
523
|
+
--form-field-control-bg-color: transparent;
|
|
524
|
+
--form-field-control-placeholder-color: var(--kbq-foreground-error-tertiary);
|
|
525
|
+
--form-field-control-group-border-color: transparent;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
.kbq-formfieldcontrolgroup-disabled-16937d {
|
|
529
|
+
--form-field-control-placeholder-color: var(--kbq-foreground-contrast-tertiary);
|
|
530
|
+
--form-field-control-color: var(--kbq-states-foreground-disabled);
|
|
531
|
+
cursor: not-allowed;
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
.kbq-formfieldcontrolgroup-filled-c28a4b:where(.kbq-formfieldcontrolgroup-disabled-16937d) {
|
|
535
|
+
--form-field-control-bg-color: var(--kbq-states-background-disabled);
|
|
536
|
+
--form-field-control-group-border-color: var(--kbq-states-line-disabled);
|
|
537
|
+
}
|
|
538
|
+
.kbq-formfieldaddon-3e3223 {
|
|
539
|
+
--form-field-addon-color: var(--kbq-icon-contrast-fade);
|
|
540
|
+
color: var(--form-field-addon-color);
|
|
541
|
+
block-size: var(--form-field-control-size-height);
|
|
542
|
+
transition: color var(--kbq-transition-default);
|
|
543
|
+
justify-content: center;
|
|
544
|
+
align-items: center;
|
|
545
|
+
display: flex;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
.kbq-formfieldaddon-invalid-6f8de4 {
|
|
549
|
+
--form-field-addon-color: var(--kbq-icon-error);
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.kbq-formfieldaddon-disabled-d4ab91 {
|
|
553
|
+
--form-field-addon-color: var(--kbq-states-icon-disabled);
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.kbq-formfieldaddon-start-a88be1 {
|
|
557
|
+
margin-inline-end: var(--kbq-size-xs);
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
.kbq-formfieldaddon-end-fb2bf3 {
|
|
561
|
+
margin-inline-start: var(--kbq-size-xxs);
|
|
562
|
+
}
|
|
563
|
+
.kbq-formfieldinputdate-a158cd {
|
|
564
|
+
box-sizing: border-box;
|
|
565
|
+
inline-size: 100%;
|
|
566
|
+
block-size: var(--form-field-control-size-height);
|
|
567
|
+
color: var(--form-field-control-color);
|
|
568
|
+
padding-block: var(--form-field-control-padding-block-start) var(--form-field-control-padding-block-end);
|
|
569
|
+
transition: color var(--kbq-transition-default), background-color var(--kbq-transition-default);
|
|
570
|
+
font-size: var(--kbq-typography-text-normal-font-size);
|
|
571
|
+
font-weight: var(--kbq-typography-text-normal-font-weight);
|
|
572
|
+
line-height: var(--kbq-typography-text-normal-line-height);
|
|
573
|
+
font-family: var(--kbq-typography-text-normal-font-family);
|
|
574
|
+
font-style: var(--kbq-typography-text-normal-font-style);
|
|
575
|
+
text-transform: var(--kbq-typography-text-normal-text-transform);
|
|
576
|
+
font-feature-settings: var(--kbq-typography-text-normal-font-feature-settings);
|
|
577
|
+
letter-spacing: var(--kbq-typography-text-normal-letter-spacing);
|
|
578
|
+
text-underline-offset: calc(( var(--kbq-typography-text-normal-line-height) - var(--kbq-typography-text-normal-font-size)) / 2);
|
|
579
|
+
scrollbar-width: none;
|
|
580
|
+
background: none;
|
|
581
|
+
align-items: center;
|
|
582
|
+
padding-inline: 0;
|
|
583
|
+
display: flex;
|
|
584
|
+
overflow-x: auto;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
.kbq-formfieldinputdate-a158cd[aria-disabled="true"] {
|
|
588
|
+
cursor: not-allowed;
|
|
589
|
+
}
|
|
590
|
+
.kbq-formfield-b52e32 {
|
|
591
|
+
flex-direction: column;
|
|
592
|
+
justify-content: center;
|
|
593
|
+
align-items: flex-start;
|
|
594
|
+
display: inline-flex;
|
|
595
|
+
position: relative;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.kbq-formfield-fullWidth-8515a1 {
|
|
599
|
+
inline-size: 100%;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
.kbq-formfield-top-f0a5c0 {
|
|
603
|
+
flex-direction: column;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
.kbq-formfield-side-9d854f {
|
|
607
|
+
flex-direction: row;
|
|
608
|
+
}
|
|
321
609
|
.kbq-alert-bc5d04 {
|
|
322
610
|
--alert-padding: 0 var(--kbq-size-s) 0 var(--kbq-size-s);
|
|
323
611
|
--alert-content-padding: var(--kbq-size-l) var(--kbq-size-s) var(--kbq-size-l) var(--kbq-size-m);
|
|
@@ -2035,240 +2323,60 @@
|
|
|
2035
2323
|
.kbq-input-hasEndAddon-12fbf6 {
|
|
2036
2324
|
--field-padding-inline-end: 36px;
|
|
2037
2325
|
}
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
--field-input-padding-inline-start: var(--kbq-size-m);
|
|
2041
|
-
--field-input-padding-inline-end: var(--kbq-size-m);
|
|
2042
|
-
--field-input-padding-block-start: var(--kbq-size-xs);
|
|
2043
|
-
--field-input-padding-block-end: var(--kbq-size-xs);
|
|
2326
|
+
|
|
2327
|
+
.kbq-input-body-3b6f04 {
|
|
2044
2328
|
inline-size: 100%;
|
|
2329
|
+
min-inline-size: fit-content;
|
|
2045
2330
|
}
|
|
2046
2331
|
|
|
2047
|
-
.kbq-
|
|
2332
|
+
.kbq-input-body-3b6f04 > :first-child + * {
|
|
2048
2333
|
margin: 0;
|
|
2049
2334
|
margin-block-start: var(--kbq-size-xs);
|
|
2050
2335
|
}
|
|
2051
2336
|
|
|
2052
|
-
.kbq-
|
|
2337
|
+
.kbq-input-body-3b6f04 > :first-child + * + * {
|
|
2053
2338
|
margin: 0;
|
|
2054
2339
|
margin-block-start: var(--kbq-size-xxs);
|
|
2055
2340
|
}
|
|
2056
|
-
.kbq-
|
|
2057
|
-
--field-content-border-color: ;
|
|
2058
|
-
--field-content-outline-width: 2px;
|
|
2059
|
-
--field-content-outline-color: transparent;
|
|
2060
|
-
--field-content-border-radius: var(--kbq-size-s);
|
|
2061
|
-
--field-content-border-width: var(--kbq-size-border-width);
|
|
2062
|
-
--field-input-padding-inline-start: var(--field-control-start-addon-inline-size, var(--kbq-size-m));
|
|
2063
|
-
--field-input-padding-inline-end: var(--field-control-end-addon-inline-size, var(--kbq-size-m));
|
|
2064
|
-
--field-input-padding-block-start: var(--kbq-size-xs);
|
|
2065
|
-
--field-input-padding-block-end: var(--kbq-size-xs);
|
|
2066
|
-
border-radius: var(--field-content-border-radius);
|
|
2067
|
-
inline-size: 100%;
|
|
2068
|
-
display: flex;
|
|
2069
|
-
position: relative;
|
|
2070
|
-
}
|
|
2071
|
-
|
|
2072
|
-
.kbq-fieldcontentgroup-d85be3:before {
|
|
2073
|
-
content: "";
|
|
2074
|
-
pointer-events: none;
|
|
2075
|
-
border-radius: inherit;
|
|
2076
|
-
z-index: var(--kbq-layer-absolute);
|
|
2077
|
-
transition: border-color var(--kbq-transition-default);
|
|
2078
|
-
border: var(--field-content-border-width) solid var(--field-content-border-color, transparent);
|
|
2079
|
-
position: absolute;
|
|
2080
|
-
inset: 0;
|
|
2081
|
-
}
|
|
2082
|
-
|
|
2083
|
-
.kbq-fieldcontentgroup-d85be3:after {
|
|
2084
|
-
content: "";
|
|
2085
|
-
pointer-events: none;
|
|
2086
|
-
border-radius: inherit;
|
|
2087
|
-
z-index: var(--kbq-layer-absolute);
|
|
2088
|
-
transition: outline-color var(--kbq-transition-default);
|
|
2089
|
-
outline-offset: calc(-1 * var(--field-content-outline-width) / 2);
|
|
2090
|
-
outline: var(--field-content-outline-width) solid var(--field-content-outline-color);
|
|
2091
|
-
position: absolute;
|
|
2092
|
-
inset: 0;
|
|
2093
|
-
}
|
|
2094
|
-
|
|
2095
|
-
.kbq-fieldcontentgroup-hasStartAddon-62fb80 {
|
|
2096
|
-
--field-control-start-addon-inline-size: 36px;
|
|
2097
|
-
}
|
|
2098
|
-
|
|
2099
|
-
.kbq-fieldcontentgroup-hasEndAddon-e8c20a {
|
|
2100
|
-
--field-control-end-addon-inline-size: 36px;
|
|
2101
|
-
}
|
|
2102
|
-
|
|
2103
|
-
.kbq-fieldcontentgroup-transparent-ac42b6 {
|
|
2104
|
-
--field-content-border-color: transparent;
|
|
2105
|
-
}
|
|
2106
|
-
|
|
2107
|
-
.kbq-fieldcontentgroup-filled-37bb93 {
|
|
2108
|
-
--field-content-border-color: var(--kbq-line-contrast-fade);
|
|
2109
|
-
}
|
|
2110
|
-
|
|
2111
|
-
.kbq-fieldcontentgroup-filled-37bb93:where(.kbq-fieldcontentgroup-focused-8fb205) {
|
|
2112
|
-
--field-content-outline-color: var(--kbq-states-line-focus-theme);
|
|
2113
|
-
}
|
|
2114
|
-
|
|
2115
|
-
.kbq-fieldcontentgroup-filled-37bb93:where(.kbq-fieldcontentgroup-invalid-e4973b) {
|
|
2116
|
-
--field-content-border-color: var(--kbq-line-error);
|
|
2117
|
-
}
|
|
2118
|
-
|
|
2119
|
-
.kbq-fieldcontentgroup-filled-37bb93:where(.kbq-fieldcontentgroup-invalid-e4973b.kbq-fieldcontentgroup-focused-8fb205) {
|
|
2120
|
-
--field-content-outline-color: var(--field-content-border-color);
|
|
2121
|
-
}
|
|
2122
|
-
|
|
2123
|
-
.kbq-fieldcontentgroup-transparent-ac42b6:where(.kbq-fieldcontentgroup-invalid-e4973b) {
|
|
2124
|
-
--field-content-border-color: transparent;
|
|
2125
|
-
}
|
|
2126
|
-
|
|
2127
|
-
.kbq-fieldcontentgroup-filled-37bb93:where(.kbq-fieldcontentgroup-disabled-54827b) {
|
|
2128
|
-
--field-content-border-color: var(--kbq-states-line-disabled);
|
|
2129
|
-
}
|
|
2130
|
-
.kbq-fieldaddon-3388d3 {
|
|
2131
|
-
--field-addon-color: var(--kbq-icon-contrast-fade);
|
|
2132
|
-
z-index: 1;
|
|
2133
|
-
color: var(--field-addon-color);
|
|
2134
|
-
block-size: var(--field-size-height);
|
|
2135
|
-
transition: color var(--kbq-transition-default);
|
|
2136
|
-
justify-content: center;
|
|
2137
|
-
align-items: center;
|
|
2138
|
-
display: flex;
|
|
2139
|
-
position: absolute;
|
|
2140
|
-
}
|
|
2141
|
-
|
|
2142
|
-
.kbq-fieldaddon-start-83aa84 {
|
|
2143
|
-
padding-inline: var(--kbq-size-m) var(--kbq-size-s);
|
|
2144
|
-
}
|
|
2145
|
-
|
|
2146
|
-
.kbq-fieldaddon-end-f314bf {
|
|
2147
|
-
padding-inline: var(--kbq-size-s) var(--kbq-size-m);
|
|
2148
|
-
inset-inline-end: 0;
|
|
2149
|
-
}
|
|
2150
|
-
|
|
2151
|
-
.kbq-fieldaddon-invalid-08b1fe {
|
|
2152
|
-
--field-addon-color: var(--kbq-icon-error);
|
|
2153
|
-
}
|
|
2154
|
-
|
|
2155
|
-
.kbq-fieldaddon-disabled-c170bf {
|
|
2156
|
-
--field-addon-color: var(--kbq-states-icon-disabled);
|
|
2157
|
-
}
|
|
2158
|
-
.kbq-fieldinput-77b90b {
|
|
2159
|
-
--field-input-color: ;
|
|
2160
|
-
--field-input-bg-color: ;
|
|
2161
|
-
--field-input-placeholder-color: ;
|
|
2162
|
-
box-sizing: border-box;
|
|
2163
|
-
border-radius: inherit;
|
|
2164
|
-
inline-size: 100%;
|
|
2165
|
-
color: var(--field-input-color);
|
|
2166
|
-
background: var(--field-input-bg-color);
|
|
2167
|
-
padding-block: var(--field-input-padding-block-start) var(--field-input-padding-block-end);
|
|
2168
|
-
padding-inline: var(--field-input-padding-inline-start) var(--field-input-padding-inline-end);
|
|
2169
|
-
transition: color var(--kbq-transition-default), background-color var(--kbq-transition-default);
|
|
2170
|
-
font-size: var(--kbq-typography-text-normal-font-size);
|
|
2171
|
-
font-weight: var(--kbq-typography-text-normal-font-weight);
|
|
2172
|
-
line-height: var(--kbq-typography-text-normal-line-height);
|
|
2173
|
-
font-family: var(--kbq-typography-text-normal-font-family);
|
|
2174
|
-
font-style: var(--kbq-typography-text-normal-font-style);
|
|
2175
|
-
text-transform: var(--kbq-typography-text-normal-text-transform);
|
|
2176
|
-
font-feature-settings: var(--kbq-typography-text-normal-font-feature-settings);
|
|
2177
|
-
letter-spacing: var(--kbq-typography-text-normal-letter-spacing);
|
|
2178
|
-
text-underline-offset: calc(( var(--kbq-typography-text-normal-line-height) - var(--kbq-typography-text-normal-font-size)) / 2);
|
|
2179
|
-
border: none;
|
|
2180
|
-
outline: none;
|
|
2181
|
-
}
|
|
2182
|
-
|
|
2183
|
-
.kbq-fieldinput-77b90b:-webkit-autofill {
|
|
2184
|
-
box-shadow: 0 0 0 1000px var(--kbq-background-theme-fade) inset !important;
|
|
2185
|
-
background-color: #0000 !important;
|
|
2186
|
-
}
|
|
2187
|
-
|
|
2188
|
-
.kbq-fieldinput-77b90b::placeholder {
|
|
2189
|
-
color: var(--field-input-placeholder-color);
|
|
2190
|
-
}
|
|
2191
|
-
|
|
2192
|
-
.kbq-fieldinput-77b90b:where(input) {
|
|
2193
|
-
block-size: var(--field-size-height);
|
|
2194
|
-
}
|
|
2195
|
-
|
|
2196
|
-
.kbq-fieldinput-77b90b:where(textarea) {
|
|
2197
|
-
min-block-size: var(--field-size-height);
|
|
2341
|
+
.kbq-textarea-auto-size-566580 {
|
|
2198
2342
|
resize: none;
|
|
2199
2343
|
}
|
|
2200
2344
|
|
|
2201
|
-
.kbq-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
--field-input-placeholder-color: var(--kbq-foreground-contrast-tertiary);
|
|
2205
|
-
}
|
|
2206
|
-
|
|
2207
|
-
.kbq-fieldinput-filled-abb632 {
|
|
2208
|
-
--field-input-color: var(--kbq-foreground-contrast);
|
|
2209
|
-
--field-input-bg-color: var(--kbq-background-bg);
|
|
2210
|
-
--field-input-placeholder-color: var(--kbq-foreground-contrast-tertiary);
|
|
2211
|
-
}
|
|
2212
|
-
|
|
2213
|
-
.kbq-fieldinput-filled-abb632:where(.kbq-fieldinput-invalid-2af82b) {
|
|
2214
|
-
--field-input-color: var(--kbq-foreground-error);
|
|
2215
|
-
--field-input-bg-color: var(--kbq-background-error-less);
|
|
2216
|
-
--field-input-placeholder-color: var(--kbq-foreground-error-tertiary);
|
|
2345
|
+
.kbq-textarea-vertical-resize-bde131 {
|
|
2346
|
+
resize: block;
|
|
2347
|
+
overflow: auto;
|
|
2217
2348
|
}
|
|
2218
2349
|
|
|
2219
|
-
.kbq-
|
|
2220
|
-
|
|
2221
|
-
--field-input-bg-color: transparent;
|
|
2222
|
-
--field-input-placeholder-color: var(--kbq-foreground-error-tertiary);
|
|
2350
|
+
.kbq-textarea-body-943a69 {
|
|
2351
|
+
inline-size: 100%;
|
|
2223
2352
|
}
|
|
2224
2353
|
|
|
2225
|
-
.kbq-
|
|
2226
|
-
|
|
2354
|
+
.kbq-textarea-body-943a69 > :first-child + * {
|
|
2355
|
+
margin: 0;
|
|
2356
|
+
margin-block-start: var(--kbq-size-xs);
|
|
2227
2357
|
}
|
|
2228
2358
|
|
|
2229
|
-
.kbq-
|
|
2230
|
-
|
|
2231
|
-
|
|
2359
|
+
.kbq-textarea-body-943a69 > :first-child + * + * {
|
|
2360
|
+
margin: 0;
|
|
2361
|
+
margin-block-start: var(--kbq-size-xxs);
|
|
2232
2362
|
}
|
|
2233
2363
|
|
|
2234
|
-
.kbq-
|
|
2235
|
-
|
|
2236
|
-
}
|
|
2237
|
-
.kbq-fieldcaption-8a3413 {
|
|
2238
|
-
inline-size: 100%;
|
|
2239
|
-
font-size: var(--kbq-typography-text-compact-font-size);
|
|
2240
|
-
font-weight: var(--kbq-typography-text-compact-font-weight);
|
|
2241
|
-
line-height: var(--kbq-typography-text-compact-line-height);
|
|
2242
|
-
font-family: var(--kbq-typography-text-compact-font-family);
|
|
2243
|
-
font-style: var(--kbq-typography-text-compact-font-style);
|
|
2244
|
-
text-transform: var(--kbq-typography-text-compact-text-transform);
|
|
2245
|
-
font-feature-settings: var(--kbq-typography-text-compact-font-feature-settings);
|
|
2246
|
-
letter-spacing: var(--kbq-typography-text-compact-letter-spacing);
|
|
2247
|
-
text-underline-offset: calc(( var(--kbq-typography-text-compact-line-height) - var(--kbq-typography-text-compact-font-size)) / 2);
|
|
2248
|
-
color: var(--kbq-foreground-contrast-secondary);
|
|
2249
|
-
transition: color var(--kbq-transition-default);
|
|
2364
|
+
.kbq-textarea-group-c8f6ff {
|
|
2365
|
+
padding-inline: 0;
|
|
2250
2366
|
}
|
|
2251
|
-
.kbq-
|
|
2367
|
+
.kbq-inputnumber-body-4de1da {
|
|
2252
2368
|
inline-size: 100%;
|
|
2253
|
-
|
|
2254
|
-
font-weight: var(--kbq-typography-text-compact-font-weight);
|
|
2255
|
-
line-height: var(--kbq-typography-text-compact-line-height);
|
|
2256
|
-
font-family: var(--kbq-typography-text-compact-font-family);
|
|
2257
|
-
font-style: var(--kbq-typography-text-compact-font-style);
|
|
2258
|
-
text-transform: var(--kbq-typography-text-compact-text-transform);
|
|
2259
|
-
font-feature-settings: var(--kbq-typography-text-compact-font-feature-settings);
|
|
2260
|
-
letter-spacing: var(--kbq-typography-text-compact-letter-spacing);
|
|
2261
|
-
text-underline-offset: calc(( var(--kbq-typography-text-compact-line-height) - var(--kbq-typography-text-compact-font-size)) / 2);
|
|
2262
|
-
color: var(--kbq-foreground-error);
|
|
2263
|
-
transition: color var(--kbq-transition-default);
|
|
2369
|
+
min-inline-size: fit-content;
|
|
2264
2370
|
}
|
|
2265
|
-
|
|
2266
|
-
|
|
2371
|
+
|
|
2372
|
+
.kbq-inputnumber-body-4de1da > :first-child + * {
|
|
2373
|
+
margin: 0;
|
|
2374
|
+
margin-block-start: var(--kbq-size-xs);
|
|
2267
2375
|
}
|
|
2268
2376
|
|
|
2269
|
-
.kbq-
|
|
2270
|
-
|
|
2271
|
-
|
|
2377
|
+
.kbq-inputnumber-body-4de1da > :first-child + * + * {
|
|
2378
|
+
margin: 0;
|
|
2379
|
+
margin-block-start: var(--kbq-size-xxs);
|
|
2272
2380
|
}
|
|
2273
2381
|
.kbq-inputnumbercountercontrols-77ed13 {
|
|
2274
2382
|
flex-direction: column;
|
|
@@ -2290,6 +2398,20 @@
|
|
|
2290
2398
|
[data-label-placement="side"] .kbq-radiogroup-label-750809 {
|
|
2291
2399
|
padding-block-start: 0;
|
|
2292
2400
|
}
|
|
2401
|
+
|
|
2402
|
+
.kbq-radiogroup-body-4c887c {
|
|
2403
|
+
inline-size: 100%;
|
|
2404
|
+
}
|
|
2405
|
+
|
|
2406
|
+
.kbq-radiogroup-body-4c887c > :first-child + * {
|
|
2407
|
+
margin: 0;
|
|
2408
|
+
margin-block-start: var(--kbq-size-xs);
|
|
2409
|
+
}
|
|
2410
|
+
|
|
2411
|
+
.kbq-radiogroup-body-4c887c > :first-child + * + * {
|
|
2412
|
+
margin: 0;
|
|
2413
|
+
margin-block-start: var(--kbq-size-xxs);
|
|
2414
|
+
}
|
|
2293
2415
|
.kbq-radio-c3ed31 {
|
|
2294
2416
|
--radio-size: ;
|
|
2295
2417
|
--radio-opacity: 0;
|
|
@@ -3221,6 +3343,20 @@
|
|
|
3221
3343
|
margin: auto;
|
|
3222
3344
|
}
|
|
3223
3345
|
|
|
3346
|
+
.kbq-select-body-69aa88 {
|
|
3347
|
+
inline-size: 100%;
|
|
3348
|
+
}
|
|
3349
|
+
|
|
3350
|
+
.kbq-select-body-69aa88 > :first-child + * {
|
|
3351
|
+
margin: 0;
|
|
3352
|
+
margin-block-start: var(--kbq-size-xs);
|
|
3353
|
+
}
|
|
3354
|
+
|
|
3355
|
+
.kbq-select-body-69aa88 > :first-child + * + * {
|
|
3356
|
+
margin: 0;
|
|
3357
|
+
margin-block-start: var(--kbq-size-xxs);
|
|
3358
|
+
}
|
|
3359
|
+
|
|
3224
3360
|
.kbq-select-list-8ffac0 {
|
|
3225
3361
|
inline-size: 100%;
|
|
3226
3362
|
}
|
|
@@ -3244,76 +3380,6 @@
|
|
|
3244
3380
|
.kbq-select-clearButton-8031a1 {
|
|
3245
3381
|
margin-inline-end: var(--kbq-size-xxs);
|
|
3246
3382
|
}
|
|
3247
|
-
|
|
3248
|
-
.kbq-select-clearable-2f5092 {
|
|
3249
|
-
--field-input-padding-inline-end: calc(var(--field-control-end-addon-inline-size) + 28px);
|
|
3250
|
-
}
|
|
3251
|
-
.kbq-fieldselect-0f0f5e {
|
|
3252
|
-
--field-input-color: var(--kbq-foreground-contrast);
|
|
3253
|
-
--field-input-bg-color: var(--kbq-background-bg);
|
|
3254
|
-
--field-input-placeholder-color: var(--kbq-foreground-contrast-tertiary);
|
|
3255
|
-
cursor: pointer;
|
|
3256
|
-
box-sizing: border-box;
|
|
3257
|
-
border-radius: inherit;
|
|
3258
|
-
inline-size: 100%;
|
|
3259
|
-
color: var(--field-input-color);
|
|
3260
|
-
background: var(--field-input-bg-color);
|
|
3261
|
-
min-block-size: var(--field-size-height);
|
|
3262
|
-
padding-inline: var(--field-input-padding-inline-start) var(--field-input-padding-inline-end);
|
|
3263
|
-
transition: color var(--kbq-transition-default), background-color var(--kbq-transition-default);
|
|
3264
|
-
font-size: var(--kbq-typography-text-normal-font-size);
|
|
3265
|
-
font-weight: var(--kbq-typography-text-normal-font-weight);
|
|
3266
|
-
line-height: var(--kbq-typography-text-normal-line-height);
|
|
3267
|
-
font-family: var(--kbq-typography-text-normal-font-family);
|
|
3268
|
-
font-style: var(--kbq-typography-text-normal-font-style);
|
|
3269
|
-
text-transform: var(--kbq-typography-text-normal-text-transform);
|
|
3270
|
-
font-feature-settings: var(--kbq-typography-text-normal-font-feature-settings);
|
|
3271
|
-
letter-spacing: var(--kbq-typography-text-normal-letter-spacing);
|
|
3272
|
-
text-underline-offset: calc(( var(--kbq-typography-text-normal-line-height) - var(--kbq-typography-text-normal-font-size)) / 2);
|
|
3273
|
-
border: none;
|
|
3274
|
-
outline: none;
|
|
3275
|
-
flex-direction: column;
|
|
3276
|
-
display: flex;
|
|
3277
|
-
}
|
|
3278
|
-
|
|
3279
|
-
.kbq-fieldselect-container-422b17 {
|
|
3280
|
-
align-items: center;
|
|
3281
|
-
gap: var(--kbq-size-xs);
|
|
3282
|
-
block-size: 100%;
|
|
3283
|
-
display: flex;
|
|
3284
|
-
}
|
|
3285
|
-
|
|
3286
|
-
.kbq-fieldselect-content-c36142 {
|
|
3287
|
-
padding-block: var(--kbq-size-xs);
|
|
3288
|
-
white-space: nowrap;
|
|
3289
|
-
text-overflow: ellipsis;
|
|
3290
|
-
overflow: hidden;
|
|
3291
|
-
}
|
|
3292
|
-
|
|
3293
|
-
.kbq-fieldselect-invalid-db8152 {
|
|
3294
|
-
--field-input-color: var(--kbq-foreground-error);
|
|
3295
|
-
--field-input-bg-color: var(--kbq-background-error-less);
|
|
3296
|
-
--field-input-placeholder-color: var(--kbq-foreground-error-tertiary);
|
|
3297
|
-
}
|
|
3298
|
-
|
|
3299
|
-
.kbq-fieldselect-disabled-f0efd4 {
|
|
3300
|
-
--field-input-color: var(--kbq-states-foreground-disabled);
|
|
3301
|
-
--field-input-bg-color: var(--kbq-states-background-disabled);
|
|
3302
|
-
cursor: not-allowed;
|
|
3303
|
-
}
|
|
3304
|
-
|
|
3305
|
-
.kbq-fieldselect-hasPlaceholder-7b7518 {
|
|
3306
|
-
--field-input-color: var(--field-input-placeholder-color);
|
|
3307
|
-
}
|
|
3308
|
-
|
|
3309
|
-
.kbq-fieldselect-hiddenPlaceholder-a3a36d {
|
|
3310
|
-
text-align: start;
|
|
3311
|
-
visibility: hidden;
|
|
3312
|
-
white-space: nowrap;
|
|
3313
|
-
text-overflow: ellipsis;
|
|
3314
|
-
block-size: 0;
|
|
3315
|
-
overflow: hidden;
|
|
3316
|
-
}
|
|
3317
3383
|
.kbq-selectlist-label-4b49f4 {
|
|
3318
3384
|
padding: var(--kbq-size-xs) var(--kbq-size-m);
|
|
3319
3385
|
}
|
|
@@ -3742,6 +3808,33 @@
|
|
|
3742
3808
|
outline-offset: -2px;
|
|
3743
3809
|
outline: 2px solid var(--kbq-states-line-focus-theme);
|
|
3744
3810
|
}
|
|
3811
|
+
|
|
3812
|
+
.kbq-tablecolumnheader-sortable-038383 {
|
|
3813
|
+
cursor: pointer;
|
|
3814
|
+
}
|
|
3815
|
+
|
|
3816
|
+
.kbq-tablecolumnheader-content-2b6a20 {
|
|
3817
|
+
gap: var(--kbq-size-s);
|
|
3818
|
+
display: flex;
|
|
3819
|
+
}
|
|
3820
|
+
|
|
3821
|
+
.kbq-tablecolumnheader-sortIcon-b98bf4 {
|
|
3822
|
+
visibility: hidden;
|
|
3823
|
+
display: flex;
|
|
3824
|
+
}
|
|
3825
|
+
|
|
3826
|
+
.kbq-tablecolumnheader-sortIcon-b98bf4:after {
|
|
3827
|
+
content: " ";
|
|
3828
|
+
font-size: 0;
|
|
3829
|
+
}
|
|
3830
|
+
|
|
3831
|
+
.kbq-tablecolumnheader-sortIcon-b98bf4 > * {
|
|
3832
|
+
margin: auto;
|
|
3833
|
+
}
|
|
3834
|
+
|
|
3835
|
+
.kbq-tablecolumnheader-active-f9b640 {
|
|
3836
|
+
visibility: visible;
|
|
3837
|
+
}
|
|
3745
3838
|
.kbq-tablerow-4a268c {
|
|
3746
3839
|
box-sizing: border-box;
|
|
3747
3840
|
cursor: default;
|
|
@@ -4017,71 +4110,22 @@
|
|
|
4017
4110
|
.kbq-dateinput-a4c39b {
|
|
4018
4111
|
min-inline-size: 150px;
|
|
4019
4112
|
}
|
|
4020
|
-
.kbq-fieldinputdate-a54331 {
|
|
4021
|
-
--field-input-color: var(--kbq-foreground-contrast);
|
|
4022
|
-
--field-input-bg-color: var(--kbq-background-bg);
|
|
4023
|
-
--field-input-placeholder-color: var(--kbq-foreground-contrast-tertiary);
|
|
4024
|
-
cursor: pointer;
|
|
4025
|
-
box-sizing: border-box;
|
|
4026
|
-
inline-size: 100%;
|
|
4027
|
-
block-size: var(--field-size-height);
|
|
4028
|
-
border-radius: inherit;
|
|
4029
|
-
color: var(--field-input-color);
|
|
4030
|
-
background: var(--field-input-bg-color);
|
|
4031
|
-
padding-block: var(--field-input-padding-block-start) var(--field-input-padding-block-end);
|
|
4032
|
-
padding-inline: var(--field-input-padding-inline-start) var(--field-input-padding-inline-end);
|
|
4033
|
-
transition: color var(--kbq-transition-default), background-color var(--kbq-transition-default);
|
|
4034
|
-
font-size: var(--kbq-typography-text-normal-font-size);
|
|
4035
|
-
font-weight: var(--kbq-typography-text-normal-font-weight);
|
|
4036
|
-
line-height: var(--kbq-typography-text-normal-line-height);
|
|
4037
|
-
font-family: var(--kbq-typography-text-normal-font-family);
|
|
4038
|
-
font-style: var(--kbq-typography-text-normal-font-style);
|
|
4039
|
-
text-transform: var(--kbq-typography-text-normal-text-transform);
|
|
4040
|
-
font-feature-settings: var(--kbq-typography-text-normal-font-feature-settings);
|
|
4041
|
-
letter-spacing: var(--kbq-typography-text-normal-letter-spacing);
|
|
4042
|
-
text-underline-offset: calc(( var(--kbq-typography-text-normal-line-height) - var(--kbq-typography-text-normal-font-size)) / 2);
|
|
4043
|
-
align-items: center;
|
|
4044
|
-
display: flex;
|
|
4045
|
-
}
|
|
4046
|
-
|
|
4047
|
-
.kbq-fieldinputdate-transparent-04d912 {
|
|
4048
|
-
--field-input-color: var(--kbq-foreground-contrast);
|
|
4049
|
-
--field-input-bg-color: transparent;
|
|
4050
|
-
--field-input-placeholder-color: var(--kbq-foreground-contrast-tertiary);
|
|
4051
|
-
}
|
|
4052
|
-
|
|
4053
|
-
.kbq-fieldinputdate-filled-02db7d {
|
|
4054
|
-
--field-input-color: var(--kbq-foreground-contrast);
|
|
4055
|
-
--field-input-bg-color: var(--kbq-background-bg);
|
|
4056
|
-
--field-input-placeholder-color: var(--kbq-foreground-contrast-tertiary);
|
|
4057
|
-
}
|
|
4058
|
-
|
|
4059
|
-
.kbq-fieldinputdate-filled-02db7d:where(.kbq-fieldinputdate-invalid-d764c6) {
|
|
4060
|
-
--field-input-color: var(--kbq-foreground-error);
|
|
4061
|
-
--field-input-bg-color: var(--kbq-background-error-less);
|
|
4062
|
-
--field-input-placeholder-color: var(--kbq-foreground-error-tertiary);
|
|
4063
|
-
}
|
|
4064
|
-
|
|
4065
|
-
.kbq-fieldinputdate-transparent-04d912:where(.kbq-fieldinputdate-invalid-d764c6) {
|
|
4066
|
-
--field-input-color: var(--kbq-foreground-error);
|
|
4067
|
-
--field-input-bg-color: transparent;
|
|
4068
|
-
--field-input-placeholder-color: var(--kbq-foreground-error-tertiary);
|
|
4069
|
-
}
|
|
4070
4113
|
|
|
4071
|
-
.kbq-
|
|
4072
|
-
|
|
4114
|
+
.kbq-dateinput-body-64bfc5 {
|
|
4115
|
+
inline-size: 100%;
|
|
4073
4116
|
}
|
|
4074
4117
|
|
|
4075
|
-
.kbq-
|
|
4076
|
-
|
|
4077
|
-
|
|
4118
|
+
.kbq-dateinput-body-64bfc5 > :first-child + * {
|
|
4119
|
+
margin: 0;
|
|
4120
|
+
margin-block-start: var(--kbq-size-xs);
|
|
4078
4121
|
}
|
|
4079
4122
|
|
|
4080
|
-
.kbq-
|
|
4081
|
-
|
|
4123
|
+
.kbq-dateinput-body-64bfc5 > :first-child + * + * {
|
|
4124
|
+
margin: 0;
|
|
4125
|
+
margin-block-start: var(--kbq-size-xxs);
|
|
4082
4126
|
}
|
|
4083
4127
|
.kbq-datesegment-3b7153 {
|
|
4084
|
-
--date-input-segment-color: var(--field-
|
|
4128
|
+
--date-input-segment-color: var(--form-field-control-color);
|
|
4085
4129
|
color: var(--date-input-segment-color);
|
|
4086
4130
|
}
|
|
4087
4131
|
|
|
@@ -4092,7 +4136,7 @@
|
|
|
4092
4136
|
}
|
|
4093
4137
|
|
|
4094
4138
|
.kbq-datesegment-placeholder-b233e5 {
|
|
4095
|
-
color: var(--field-
|
|
4139
|
+
color: var(--form-field-control-placeholder-color);
|
|
4096
4140
|
}
|
|
4097
4141
|
|
|
4098
4142
|
.kbq-datesegment-literal-a4b534 {
|
|
@@ -4100,7 +4144,7 @@
|
|
|
4100
4144
|
}
|
|
4101
4145
|
|
|
4102
4146
|
.kbq-datesegment-literal-a4b534:not(.kbq-datesegment-hasValue-800714) {
|
|
4103
|
-
color: var(--field-
|
|
4147
|
+
color: var(--form-field-control-placeholder-color);
|
|
4104
4148
|
}
|
|
4105
4149
|
.kbq-datepicker-calendar-25a0d7 {
|
|
4106
4150
|
margin-inline-end: calc(-1 * var(--kbq-size-xxs));
|
|
@@ -4132,6 +4176,20 @@
|
|
|
4132
4176
|
.kbq-timepicker-startAddon-46c835 > :not(.kbq-timepicker-clock-920ed0) {
|
|
4133
4177
|
pointer-events: all;
|
|
4134
4178
|
}
|
|
4179
|
+
|
|
4180
|
+
.kbq-timepicker-body-15a987 {
|
|
4181
|
+
inline-size: 100%;
|
|
4182
|
+
}
|
|
4183
|
+
|
|
4184
|
+
.kbq-timepicker-body-15a987 > :first-child + * {
|
|
4185
|
+
margin: 0;
|
|
4186
|
+
margin-block-start: var(--kbq-size-xs);
|
|
4187
|
+
}
|
|
4188
|
+
|
|
4189
|
+
.kbq-timepicker-body-15a987 > :first-child + * + * {
|
|
4190
|
+
margin: 0;
|
|
4191
|
+
margin-block-start: var(--kbq-size-xxs);
|
|
4192
|
+
}
|
|
4135
4193
|
.kbq-searchinput-input-f896b1::-webkit-search-decoration {
|
|
4136
4194
|
appearance: none;
|
|
4137
4195
|
}
|
|
@@ -4159,53 +4217,78 @@
|
|
|
4159
4217
|
.kbq-searchinput-clearButton-71f872 {
|
|
4160
4218
|
margin-inline-end: calc(-1 * var(--kbq-size-xxs));
|
|
4161
4219
|
}
|
|
4162
|
-
|
|
4220
|
+
|
|
4221
|
+
.kbq-searchinput-body-972749 {
|
|
4222
|
+
inline-size: 100%;
|
|
4223
|
+
min-inline-size: fit-content;
|
|
4224
|
+
}
|
|
4225
|
+
|
|
4226
|
+
.kbq-searchinput-body-972749 > :first-child + * {
|
|
4227
|
+
margin: 0;
|
|
4228
|
+
margin-block-start: var(--kbq-size-xs);
|
|
4229
|
+
}
|
|
4230
|
+
|
|
4231
|
+
.kbq-searchinput-body-972749 > :first-child + * + * {
|
|
4232
|
+
margin: 0;
|
|
4233
|
+
margin-block-start: var(--kbq-size-xxs);
|
|
4234
|
+
}
|
|
4235
|
+
.kbq-form-40d37e {
|
|
4163
4236
|
--gap-y: var(--kbq-size-xl);
|
|
4164
|
-
--
|
|
4165
|
-
display: grid;
|
|
4237
|
+
--label-inline-size: ;
|
|
4166
4238
|
}
|
|
4167
4239
|
|
|
4168
|
-
|
|
4169
|
-
|
|
4240
|
+
.kbq-form-40d37e > [data-slot="form-field"], .kbq-form-40d37e > .kbq-form-group-4158f5 > [data-slot="form-field"] {
|
|
4241
|
+
inline-size: 100%;
|
|
4170
4242
|
}
|
|
4171
4243
|
|
|
4172
|
-
|
|
4173
|
-
|
|
4244
|
+
.kbq-form-caption-052541 {
|
|
4245
|
+
display: table-caption;
|
|
4174
4246
|
}
|
|
4175
4247
|
|
|
4176
|
-
|
|
4177
|
-
|
|
4178
|
-
justify-self: start;
|
|
4248
|
+
.kbq-form-caption-052541 .kbq-form-top-605582 {
|
|
4249
|
+
caption-side: top;
|
|
4179
4250
|
}
|
|
4180
4251
|
|
|
4181
|
-
.kbq-form-
|
|
4182
|
-
|
|
4183
|
-
margin: 0;
|
|
4184
|
-
padding: 0;
|
|
4252
|
+
.kbq-form-caption-052541 .kbq-form-bottom-c13772 {
|
|
4253
|
+
caption-side: bottom;
|
|
4185
4254
|
}
|
|
4186
4255
|
|
|
4187
|
-
.kbq-form-
|
|
4188
|
-
|
|
4256
|
+
.kbq-form-vertical-2f3a00, .kbq-form-vertical-2f3a00 .kbq-form-group-4158f5 {
|
|
4257
|
+
gap: var(--gap-y);
|
|
4258
|
+
flex-direction: column;
|
|
4259
|
+
display: flex;
|
|
4189
4260
|
}
|
|
4190
4261
|
|
|
4191
|
-
.kbq-form-horizontal-52dea8
|
|
4192
|
-
|
|
4262
|
+
.kbq-form-horizontal-52dea8 {
|
|
4263
|
+
border-collapse: separate;
|
|
4264
|
+
border-spacing: 0 var(--gap-y);
|
|
4265
|
+
margin-block: calc(-1 * var(--gap-y));
|
|
4266
|
+
display: table;
|
|
4193
4267
|
}
|
|
4194
4268
|
|
|
4195
|
-
|
|
4196
|
-
|
|
4197
|
-
|
|
4198
|
-
|
|
4269
|
+
.kbq-form-horizontal-52dea8 > [data-slot="form-field"], .kbq-form-horizontal-52dea8 > .kbq-form-group-4158f5 > [data-slot="form-field"] {
|
|
4270
|
+
inline-size: 100%;
|
|
4271
|
+
display: table-row;
|
|
4272
|
+
}
|
|
4273
|
+
|
|
4274
|
+
:is(.kbq-form-horizontal-52dea8 > [data-slot="form-field"], .kbq-form-horizontal-52dea8 > .kbq-form-group-4158f5 > [data-slot="form-field"]) [data-slot="form-field-label"] {
|
|
4275
|
+
inline-size: var(--label-inline-size);
|
|
4276
|
+
display: table-cell;
|
|
4199
4277
|
}
|
|
4200
4278
|
|
|
4201
|
-
|
|
4202
|
-
|
|
4203
|
-
align-self: start;
|
|
4279
|
+
.kbq-form-horizontal-52dea8 .kbq-form-group-4158f5 {
|
|
4280
|
+
display: table-row-group;
|
|
4204
4281
|
}
|
|
4205
4282
|
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
|
|
4283
|
+
.kbq-form-horizontal-52dea8 .kbq-form-actions-22aca9 {
|
|
4284
|
+
inline-size: 100%;
|
|
4285
|
+
display: table-row;
|
|
4286
|
+
}
|
|
4287
|
+
|
|
4288
|
+
.kbq-form-horizontal-52dea8 .kbq-form-actions-22aca9:before {
|
|
4289
|
+
content: "";
|
|
4290
|
+
inline-size: var(--label-inline-size);
|
|
4291
|
+
display: table-cell;
|
|
4209
4292
|
}
|
|
4210
4293
|
.kbq-spacing-mbs_0-be7021 {
|
|
4211
4294
|
margin-block-start: 0;
|