@sbb-esta/lyne-elements-dev 4.7.0-dev.1773213760 → 4.7.0-dev.1773217409
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/core/styles/core.scss +11 -116
- package/core.css +94 -71
- package/custom-elements.json +856 -856
- package/development/form-field/error/error.component.js +6 -12
- package/development/form-field/form-field/form-field.component.js +33 -60
- package/form-field/error/error.component.js +2 -2
- package/form-field/form-field/form-field.component.js +18 -18
- package/off-brand-theme.css +94 -71
- package/package.json +2 -2
- package/safety-theme.css +94 -71
- package/standard-theme.css +94 -71
package/core/styles/core.scss
CHANGED
|
@@ -107,6 +107,12 @@ $theme: 'standard' !default;
|
|
|
107
107
|
@use '../../footer/footer.global' as footer with (
|
|
108
108
|
$theme: $theme
|
|
109
109
|
);
|
|
110
|
+
@use '../../form-field/error/error.global' as error with (
|
|
111
|
+
$theme: $theme
|
|
112
|
+
);
|
|
113
|
+
@use '../../form-field/form-field/form-field.global' as form-field with (
|
|
114
|
+
$theme: $theme
|
|
115
|
+
);
|
|
110
116
|
@use '../../icon-sidebar/icon-sidebar/icon-sidebar.global' as icon-sidebar with (
|
|
111
117
|
$theme: $theme
|
|
112
118
|
);
|
|
@@ -179,12 +185,14 @@ $theme: 'standard' !default;
|
|
|
179
185
|
@include dialog.base;
|
|
180
186
|
@include dialog-close-button.base;
|
|
181
187
|
@include divider.base;
|
|
188
|
+
@include error.base;
|
|
182
189
|
@include expansion-panel.base;
|
|
183
190
|
@include expansion-panel-content.base;
|
|
184
191
|
@include expansion-panel-header.base;
|
|
185
192
|
@include flip-card.base;
|
|
186
193
|
@include flip-card-details.base;
|
|
187
194
|
@include footer.base;
|
|
195
|
+
@include form-field.base;
|
|
188
196
|
@include icon-sidebar.base;
|
|
189
197
|
@include lead-container.base;
|
|
190
198
|
@include option.base;
|
|
@@ -207,6 +215,7 @@ $theme: 'standard' !default;
|
|
|
207
215
|
@include card.base-forced-colors;
|
|
208
216
|
@include card-badge.base-forced-colors;
|
|
209
217
|
@include expansion-panel-header.base-forced-colors;
|
|
218
|
+
@include form-field.base-forced-colors;
|
|
210
219
|
@include visual-checkbox.base-forced-colors;
|
|
211
220
|
@include radio-button-common.base-forced-colors;
|
|
212
221
|
}
|
|
@@ -285,6 +294,7 @@ $theme: 'standard' !default;
|
|
|
285
294
|
@include chip-group.base-breakpoint-large;
|
|
286
295
|
@include dialog.base-breakpoint-large;
|
|
287
296
|
@include flip-card.base-breakpoint-large;
|
|
297
|
+
@include form-field.base-breakpoint-large;
|
|
288
298
|
|
|
289
299
|
// TODO: Remove complete block when new lean theme is complete
|
|
290
300
|
// Only render the block in standard theme as fallback for CSS class usage
|
|
@@ -321,6 +331,7 @@ $theme: 'standard' !default;
|
|
|
321
331
|
@include dialog-content.rules;
|
|
322
332
|
@include dialog-title.rules;
|
|
323
333
|
@include flip-card-summary.rules;
|
|
334
|
+
@include form-field.rules;
|
|
324
335
|
@include icon-sidebar.rules;
|
|
325
336
|
@include lead-container.rules;
|
|
326
337
|
@include option.rules;
|
|
@@ -352,122 +363,6 @@ html {
|
|
|
352
363
|
@include typo.placeholder;
|
|
353
364
|
}
|
|
354
365
|
|
|
355
|
-
:is(sbb-form-field, sbb-timetable-form-field) {
|
|
356
|
-
:where(input, select, textarea, sbb-select, sbb-date-input, sbb-time-input) {
|
|
357
|
-
@include typo.text-m--regular;
|
|
358
|
-
@include helpers.ellipsis;
|
|
359
|
-
@include inputs.input-reset;
|
|
360
|
-
|
|
361
|
-
// Use !important here to not interfere with Firefox focus ring definition
|
|
362
|
-
// which appears in normalize CSS of several frameworks.
|
|
363
|
-
outline: none !important;
|
|
364
|
-
overflow: var(--sbb-form-field-overflow);
|
|
365
|
-
width: 100%;
|
|
366
|
-
box-sizing: border-box;
|
|
367
|
-
color: var(--sbb-form-field-text-color);
|
|
368
|
-
|
|
369
|
-
// Fill color needed for Safari
|
|
370
|
-
-webkit-text-fill-color: var(--sbb-form-field-text-color);
|
|
371
|
-
opacity: 1;
|
|
372
|
-
background-color: transparent;
|
|
373
|
-
|
|
374
|
-
// To be more specific than the styles in normalize.scss we need to use !important
|
|
375
|
-
// TODO: Find a better solution
|
|
376
|
-
font-size: var(--sbb-form-field-input-text-size) !important;
|
|
377
|
-
font-family: var(--sbb-typo-font-family) !important;
|
|
378
|
-
line-height: var(--sbb-typo-line-height-text) !important;
|
|
379
|
-
|
|
380
|
-
&::placeholder {
|
|
381
|
-
@include typo.placeholder;
|
|
382
|
-
}
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
&[floating-label] :where(input, select, textarea, sbb-select)::placeholder,
|
|
386
|
-
// This covers the placeholder of the sbb-date-input and sbb-time-input
|
|
387
|
-
&[floating-label] :where(sbb-date-input, sbb-time-input)::after {
|
|
388
|
-
color: transparent !important;
|
|
389
|
-
-webkit-text-fill-color: transparent !important;
|
|
390
|
-
|
|
391
|
-
@include a11y.if-forced-colors {
|
|
392
|
-
color: Canvas !important;
|
|
393
|
-
-webkit-text-fill-color: Canvas !important;
|
|
394
|
-
}
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
// TODO: Remove if webkit bug is resolved: https://bugs.webkit.org/show_bug.cgi?id=223814
|
|
398
|
-
&:not([floating-label]) :where(input, select, textarea, sbb-select):disabled::placeholder {
|
|
399
|
-
color: light-dark(var(--sbb-color-granite), var(--sbb-color-smoke));
|
|
400
|
-
-webkit-text-fill-color: light-dark(var(--sbb-color-granite), var(--sbb-color-smoke));
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
// Fix positioning issue for select which occurs in Safari
|
|
404
|
-
:where(select) {
|
|
405
|
-
vertical-align: middle;
|
|
406
|
-
}
|
|
407
|
-
|
|
408
|
-
:where(select, sbb-select) {
|
|
409
|
-
padding-inline-end: var(--sbb-form-field-select-inline-padding-end);
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
&[size='s'] :where(input, sbb-date-input, sbb-time-input) {
|
|
413
|
-
// We shrink the input's height to support all types of inputs (especially type=number).
|
|
414
|
-
// Factor 1.25 ensures, letters are not cut.
|
|
415
|
-
height: calc(var(--sbb-form-field-input-text-size) * 1.25);
|
|
416
|
-
|
|
417
|
-
// Avoids Safari bug, where text gets misaligned with type=number
|
|
418
|
-
line-height: 1 !important;
|
|
419
|
-
|
|
420
|
-
// We add the missing block spacing to fit the line-height
|
|
421
|
-
margin-block: calc(
|
|
422
|
-
0.5 * (var(--sbb-form-field-input-text-size) * (var(--sbb-typo-line-height-text) - 1.25))
|
|
423
|
-
);
|
|
424
|
-
}
|
|
425
|
-
|
|
426
|
-
:where(textarea) {
|
|
427
|
-
@include scrollbar.scrollbar;
|
|
428
|
-
|
|
429
|
-
position: relative;
|
|
430
|
-
resize: none;
|
|
431
|
-
|
|
432
|
-
// White-space break needed for Firefox
|
|
433
|
-
white-space: break-spaces;
|
|
434
|
-
overflow-y: auto;
|
|
435
|
-
min-height: calc((var(--sbb-typo-line-height-text) * 1em));
|
|
436
|
-
height: 100%;
|
|
437
|
-
}
|
|
438
|
-
|
|
439
|
-
&[size='l'] :where(textarea) {
|
|
440
|
-
padding-block-end: #{functions.px-to-rem-build(5.5)};
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
&[negative] :where(textarea) {
|
|
444
|
-
@include scrollbar.scrollbar($negative: true);
|
|
445
|
-
}
|
|
446
|
-
|
|
447
|
-
&:has(
|
|
448
|
-
:is(
|
|
449
|
-
:is(input, textarea, select):user-invalid,
|
|
450
|
-
:state(interacted):invalid,
|
|
451
|
-
.ng-touched.ng-invalid,
|
|
452
|
-
.sbb-invalid
|
|
453
|
-
)
|
|
454
|
-
),
|
|
455
|
-
:is(.ng-submitted, .sbb-show-errors) &:has(:is(:invalid, .ng-invalid)) {
|
|
456
|
-
--sbb-form-field-border-color: var(--sbb-color-error);
|
|
457
|
-
--sbb-form-field-text-color: var(--sbb-color-error);
|
|
458
|
-
|
|
459
|
-
&[negative] {
|
|
460
|
-
--sbb-form-field-border-color: var(--sbb-color-red85);
|
|
461
|
-
--sbb-form-field-text-color: var(--sbb-color-red85);
|
|
462
|
-
}
|
|
463
|
-
|
|
464
|
-
@include a11y.if-forced-colors {
|
|
465
|
-
--sbb-form-field-border-color: LinkText !important;
|
|
466
|
-
--sbb-form-field-text-color: LinkText !important;
|
|
467
|
-
}
|
|
468
|
-
}
|
|
469
|
-
}
|
|
470
|
-
|
|
471
366
|
// Hiding components until they are instantiated
|
|
472
367
|
:is(
|
|
473
368
|
sbb-autocomplete,
|
package/core.css
CHANGED
|
@@ -1436,6 +1436,9 @@
|
|
|
1436
1436
|
--sbb-divider-color: var(--sbb-background-color-4);
|
|
1437
1437
|
--sbb-divider-color-negative: var(--sbb-background-color-4-negative);
|
|
1438
1438
|
--sbb-divider-border-width: var(--sbb-border-width-1x);
|
|
1439
|
+
--sbb-error-color: var(--sbb-color-error);
|
|
1440
|
+
--sbb-error-icon-size: 1.0625rem;
|
|
1441
|
+
--sbb-error-font-size: var(--sbb-text-font-size-xs);
|
|
1439
1442
|
--sbb-expansion-panel-background-color: var(--sbb-background-color-1);
|
|
1440
1443
|
--sbb-expansion-panel-background-color-hover: var(--sbb-background-color-3);
|
|
1441
1444
|
--sbb-expansion-panel-border-radius: var(--sbb-border-radius-4x);
|
|
@@ -1476,6 +1479,27 @@
|
|
|
1476
1479
|
--sbb-footer-gap-horizontal: var(--sbb-grid-base-gutter-responsive);
|
|
1477
1480
|
--sbb-footer-gap-vertical: var(--sbb-spacing-responsive-l);
|
|
1478
1481
|
--sbb-footer-padding-block: var(--sbb-spacing-responsive-l);
|
|
1482
|
+
--sbb-form-field-background-color: var(--sbb-background-color-1);
|
|
1483
|
+
--sbb-form-field-border-color: var(--sbb-border-color-5);
|
|
1484
|
+
--sbb-form-field-border-style: solid;
|
|
1485
|
+
--sbb-form-field-border-radius: var(--sbb-border-radius-4x);
|
|
1486
|
+
--sbb-form-field-border-width: var(--sbb-border-width-1x);
|
|
1487
|
+
--sbb-form-field-color: var(--sbb-color-3);
|
|
1488
|
+
--sbb-form-field-label-color: var(--sbb-color-metal);
|
|
1489
|
+
--sbb-form-field-label-color: light-dark(var(--sbb-color-metal), var(--sbb-color-smoke));
|
|
1490
|
+
--sbb-form-field-prefix-color: var(--sbb-color-metal);
|
|
1491
|
+
--sbb-form-field-prefix-color: light-dark(var(--sbb-color-metal), var(--sbb-color-smoke));
|
|
1492
|
+
--sbb-form-field-text-color: var(--sbb-color-3);
|
|
1493
|
+
--sbb-form-field-arrow-color: var(--sbb-color-3);
|
|
1494
|
+
--sbb-form-field-gap: var(--sbb-spacing-fixed-2x);
|
|
1495
|
+
--sbb-form-field-icon-size: var(--sbb-size-icon-ui-small);
|
|
1496
|
+
--sbb-form-field-min-height: var(--sbb-size-element-m);
|
|
1497
|
+
--sbb-form-field-padding-inline: var(--sbb-spacing-fixed-3x);
|
|
1498
|
+
--sbb-form-field-input-text-size: var(--sbb-text-font-size-m);
|
|
1499
|
+
--sbb-form-field-label-text-size: var(--sbb-text-font-size-xs);
|
|
1500
|
+
--_sbb-form-field-label-to-input-overlapping: var(--sbb-spacing-fixed-1x);
|
|
1501
|
+
--_sbb-form-field-floating-label-transform: 0.53125rem;
|
|
1502
|
+
--_sbb-form-field-spacer-margin-block-end: calc(-1 * var(--_sbb-form-field-label-to-input-overlapping));
|
|
1479
1503
|
--sbb-icon-sidebar-background-color: var(--sbb-background-color-1);
|
|
1480
1504
|
--sbb-icon-sidebar-border-radius: var(--sbb-border-radius-8x);
|
|
1481
1505
|
--sbb-lead-container-background-color: var(--sbb-background-color-1);
|
|
@@ -1607,6 +1631,7 @@
|
|
|
1607
1631
|
--sbb-card-badge-border-display: block;
|
|
1608
1632
|
--sbb-card-badge-inline-border-display: none;
|
|
1609
1633
|
--sbb-expansion-panel-header-text-color: ButtonText;
|
|
1634
|
+
--sbb-form-field-border-color: ButtonBorder;
|
|
1610
1635
|
--sbb-visual-checkbox-selection-color: Canvas;
|
|
1611
1636
|
--sbb-visual-checkbox-selection-color-negative: Canvas;
|
|
1612
1637
|
--sbb-visual-checkbox-selection-color-disabled: Canvas;
|
|
@@ -1716,6 +1741,9 @@
|
|
|
1716
1741
|
--sbb-dialog-padding-inline: var(--sbb-spacing-responsive-s);
|
|
1717
1742
|
--sbb-dialog-max-height: calc(100vh - var(--sbb-spacing-fixed-16x));
|
|
1718
1743
|
--sbb-flip-card-min-height: 20rem;
|
|
1744
|
+
--_sbb-form-field-label-to-input-overlapping: var(--sbb-spacing-fixed-1x);
|
|
1745
|
+
--_sbb-form-field-floating-label-transform: 0.65625rem;
|
|
1746
|
+
--_sbb-form-field-spacer-margin-block-end: calc(-1 * var(--_sbb-form-field-label-to-input-overlapping));
|
|
1719
1747
|
}
|
|
1720
1748
|
:root.sbb-lean {
|
|
1721
1749
|
--sbb-title-font-size-level-6-lean: var(--sbb-typo-scale-0-875x);
|
|
@@ -1810,77 +1838,7 @@ sbb-flip-card-summary > [slot=image] :is(sbb-image, img):not(.sbb-figure-overlap
|
|
|
1810
1838
|
height: 100%;
|
|
1811
1839
|
}
|
|
1812
1840
|
|
|
1813
|
-
sbb-icon-sidebar-content + sbb-icon-sidebar :is(sbb-icon-sidebar-link, sbb-icon-sidebar-button) {
|
|
1814
|
-
--sbb-icon-sidebar-button__current-border-inset-inline-start: auto;
|
|
1815
|
-
}
|
|
1816
|
-
|
|
1817
|
-
sbb-icon-sidebar-content + sbb-icon-sidebar {
|
|
1818
|
-
border-start-end-radius: 0;
|
|
1819
|
-
border-start-start-radius: var(--sbb-icon-sidebar-border-radius);
|
|
1820
|
-
}
|
|
1821
|
-
|
|
1822
|
-
sbb-lead-container > [slot=image]:is(sbb-image, img, picture),
|
|
1823
|
-
sbb-lead-container > [slot=image] :is(sbb-image, img, picture):not(.sbb-figure-overlap-image) {
|
|
1824
|
-
--sbb-image-aspect-ratio: var(--sbb-lead-container-image-ratio);
|
|
1825
|
-
--sbb-image-object-fit: cover;
|
|
1826
|
-
border-radius: var(--sbb-lead-container-image-border-radius);
|
|
1827
|
-
}
|
|
1828
|
-
|
|
1829
|
-
:where(sbb-select, sbb-autocomplete, sbb-autocomplete-grid)[size=s] :where(sbb-option, sbb-autocomplete-grid-option) {
|
|
1830
|
-
--sbb-option-min-height: var(--sbb-size-element-xxs);
|
|
1831
|
-
--sbb-focus-outline-offset: calc(-1 * var(--sbb-spacing-fixed-1x));
|
|
1832
|
-
--sbb-option-focus-outline-inset: 0 var(--sbb-spacing-fixed-1x);
|
|
1833
|
-
}
|
|
1834
|
-
:where(sbb-select, sbb-autocomplete, sbb-autocomplete-grid)[size=s] sbb-optgroup {
|
|
1835
|
-
--sbb-optgroup-label-padding-end: var(--sbb-spacing-fixed-1x);
|
|
1836
|
-
}
|
|
1837
|
-
:where(sbb-select, sbb-autocomplete, sbb-autocomplete-grid)[size=s] sbb-option-hint {
|
|
1838
|
-
--sbb-option-hint-padding-block-end: var(--sbb-spacing-fixed-1x);
|
|
1839
|
-
}
|
|
1840
|
-
|
|
1841
|
-
sbb-tab-nav-bar .sbb-tab-amount {
|
|
1842
|
-
margin: 0;
|
|
1843
|
-
color: var(--sbb-tab-label-amount-color);
|
|
1844
|
-
font-weight: normal;
|
|
1845
|
-
text-decoration: var(--sbb-tab-label-text-decoration);
|
|
1846
|
-
}
|
|
1847
|
-
|
|
1848
|
-
.sbb-dark {
|
|
1849
|
-
color-scheme: dark;
|
|
1850
|
-
}
|
|
1851
|
-
|
|
1852
|
-
.sbb-light {
|
|
1853
|
-
color-scheme: light;
|
|
1854
|
-
}
|
|
1855
|
-
|
|
1856
|
-
.sbb-light-dark {
|
|
1857
|
-
color-scheme: light dark;
|
|
1858
|
-
}
|
|
1859
|
-
|
|
1860
|
-
html {
|
|
1861
|
-
font-family: var(--sbb-typo-font-family);
|
|
1862
|
-
font-weight: normal;
|
|
1863
|
-
line-height: var(--sbb-typo-line-height-text);
|
|
1864
|
-
letter-spacing: var(--sbb-typo-letter-spacing-text);
|
|
1865
|
-
font-size: var(--sbb-text-font-size);
|
|
1866
|
-
color-scheme: light dark;
|
|
1867
|
-
color: var(--sbb-font-color-default);
|
|
1868
|
-
background-color: var(--sbb-background-color-1);
|
|
1869
|
-
}
|
|
1870
|
-
|
|
1871
|
-
::placeholder {
|
|
1872
|
-
color: var(--sbb-color-5);
|
|
1873
|
-
-webkit-text-fill-color: var(--sbb-color-5);
|
|
1874
|
-
opacity: 1;
|
|
1875
|
-
}
|
|
1876
|
-
|
|
1877
1841
|
:is(sbb-form-field, sbb-timetable-form-field) :where(input, select, textarea, sbb-select, sbb-date-input, sbb-time-input) {
|
|
1878
|
-
--sbb-text-font-size: var(--sbb-text-font-size-m);
|
|
1879
|
-
font-family: var(--sbb-typo-font-family);
|
|
1880
|
-
font-weight: normal;
|
|
1881
|
-
line-height: var(--sbb-typo-line-height-text);
|
|
1882
|
-
letter-spacing: var(--sbb-typo-letter-spacing-text);
|
|
1883
|
-
font-size: var(--sbb-text-font-size);
|
|
1884
1842
|
overflow: hidden;
|
|
1885
1843
|
white-space: nowrap;
|
|
1886
1844
|
text-overflow: ellipsis;
|
|
@@ -1890,7 +1848,7 @@ html {
|
|
|
1890
1848
|
padding: 0;
|
|
1891
1849
|
appearance: none;
|
|
1892
1850
|
outline: none !important;
|
|
1893
|
-
overflow: var(--sbb-form-field-overflow);
|
|
1851
|
+
overflow: var(--sbb-form-field-overflow, hidden);
|
|
1894
1852
|
width: 100%;
|
|
1895
1853
|
box-sizing: border-box;
|
|
1896
1854
|
color: var(--sbb-form-field-text-color);
|
|
@@ -1898,6 +1856,7 @@ html {
|
|
|
1898
1856
|
opacity: 1;
|
|
1899
1857
|
background-color: transparent;
|
|
1900
1858
|
font-size: var(--sbb-form-field-input-text-size) !important;
|
|
1859
|
+
letter-spacing: var(--sbb-typo-letter-spacing-text) !important;
|
|
1901
1860
|
font-family: var(--sbb-typo-font-family) !important;
|
|
1902
1861
|
line-height: var(--sbb-typo-line-height-text) !important;
|
|
1903
1862
|
}
|
|
@@ -2048,6 +2007,70 @@ html {
|
|
|
2048
2007
|
}
|
|
2049
2008
|
}
|
|
2050
2009
|
|
|
2010
|
+
sbb-icon-sidebar-content + sbb-icon-sidebar :is(sbb-icon-sidebar-link, sbb-icon-sidebar-button) {
|
|
2011
|
+
--sbb-icon-sidebar-button__current-border-inset-inline-start: auto;
|
|
2012
|
+
}
|
|
2013
|
+
|
|
2014
|
+
sbb-icon-sidebar-content + sbb-icon-sidebar {
|
|
2015
|
+
border-start-end-radius: 0;
|
|
2016
|
+
border-start-start-radius: var(--sbb-icon-sidebar-border-radius);
|
|
2017
|
+
}
|
|
2018
|
+
|
|
2019
|
+
sbb-lead-container > [slot=image]:is(sbb-image, img, picture),
|
|
2020
|
+
sbb-lead-container > [slot=image] :is(sbb-image, img, picture):not(.sbb-figure-overlap-image) {
|
|
2021
|
+
--sbb-image-aspect-ratio: var(--sbb-lead-container-image-ratio);
|
|
2022
|
+
--sbb-image-object-fit: cover;
|
|
2023
|
+
border-radius: var(--sbb-lead-container-image-border-radius);
|
|
2024
|
+
}
|
|
2025
|
+
|
|
2026
|
+
:where(sbb-select, sbb-autocomplete, sbb-autocomplete-grid)[size=s] :where(sbb-option, sbb-autocomplete-grid-option) {
|
|
2027
|
+
--sbb-option-min-height: var(--sbb-size-element-xxs);
|
|
2028
|
+
--sbb-focus-outline-offset: calc(-1 * var(--sbb-spacing-fixed-1x));
|
|
2029
|
+
--sbb-option-focus-outline-inset: 0 var(--sbb-spacing-fixed-1x);
|
|
2030
|
+
}
|
|
2031
|
+
:where(sbb-select, sbb-autocomplete, sbb-autocomplete-grid)[size=s] sbb-optgroup {
|
|
2032
|
+
--sbb-optgroup-label-padding-end: var(--sbb-spacing-fixed-1x);
|
|
2033
|
+
}
|
|
2034
|
+
:where(sbb-select, sbb-autocomplete, sbb-autocomplete-grid)[size=s] sbb-option-hint {
|
|
2035
|
+
--sbb-option-hint-padding-block-end: var(--sbb-spacing-fixed-1x);
|
|
2036
|
+
}
|
|
2037
|
+
|
|
2038
|
+
sbb-tab-nav-bar .sbb-tab-amount {
|
|
2039
|
+
margin: 0;
|
|
2040
|
+
color: var(--sbb-tab-label-amount-color);
|
|
2041
|
+
font-weight: normal;
|
|
2042
|
+
text-decoration: var(--sbb-tab-label-text-decoration);
|
|
2043
|
+
}
|
|
2044
|
+
|
|
2045
|
+
.sbb-dark {
|
|
2046
|
+
color-scheme: dark;
|
|
2047
|
+
}
|
|
2048
|
+
|
|
2049
|
+
.sbb-light {
|
|
2050
|
+
color-scheme: light;
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
.sbb-light-dark {
|
|
2054
|
+
color-scheme: light dark;
|
|
2055
|
+
}
|
|
2056
|
+
|
|
2057
|
+
html {
|
|
2058
|
+
font-family: var(--sbb-typo-font-family);
|
|
2059
|
+
font-weight: normal;
|
|
2060
|
+
line-height: var(--sbb-typo-line-height-text);
|
|
2061
|
+
letter-spacing: var(--sbb-typo-letter-spacing-text);
|
|
2062
|
+
font-size: var(--sbb-text-font-size);
|
|
2063
|
+
color-scheme: light dark;
|
|
2064
|
+
color: var(--sbb-font-color-default);
|
|
2065
|
+
background-color: var(--sbb-background-color-1);
|
|
2066
|
+
}
|
|
2067
|
+
|
|
2068
|
+
::placeholder {
|
|
2069
|
+
color: var(--sbb-color-5);
|
|
2070
|
+
-webkit-text-fill-color: var(--sbb-color-5);
|
|
2071
|
+
opacity: 1;
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2051
2074
|
:is(sbb-autocomplete,
|
|
2052
2075
|
sbb-autocomplete-grid,
|
|
2053
2076
|
sbb-datepicker,
|