@sbb-esta/lyne-elements-dev 4.0.0-dev.1775640696 → 4.0.0-dev.1775641407
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 +4 -0
- package/core.css +14 -0
- package/custom-elements.json +396 -396
- package/development/tooltip/tooltip.component.js +1 -1
- package/development/tooltip.component-epXOY5vO.js +378 -0
- package/development/tooltip.js +1 -1
- package/development/tooltip.pure.js +1 -1
- package/off-brand-theme.css +14 -0
- package/package.json +2 -2
- package/safety-theme.css +14 -0
- package/standard-theme.css +14 -0
- package/tooltip/tooltip.component.js +1 -1
- package/{tooltip.component-BY9mV5Sw.js → tooltip.component-B3XLLpLg.js} +1 -1
- package/tooltip.js +1 -1
- package/tooltip.pure.js +1 -1
- package/development/tooltip.component-DzSd9VjW.js +0 -378
package/core/styles/core.scss
CHANGED
|
@@ -256,6 +256,9 @@ $theme: 'standard' !default;
|
|
|
256
256
|
@use '../../timetable-occupancy/timetable-occupancy.global' as timetable-occupancy with (
|
|
257
257
|
$theme: $theme
|
|
258
258
|
);
|
|
259
|
+
@use '../../tooltip/tooltip.global' as tooltip with (
|
|
260
|
+
$theme: $theme
|
|
261
|
+
);
|
|
259
262
|
@use '../../visual-checkbox/visual-checkbox.global' as visual-checkbox with (
|
|
260
263
|
$theme: $theme
|
|
261
264
|
);
|
|
@@ -340,6 +343,7 @@ $theme: 'standard' !default;
|
|
|
340
343
|
@include timetable-form-details.base;
|
|
341
344
|
@include timetable-form-field.base;
|
|
342
345
|
@include timetable-occupancy.base;
|
|
346
|
+
@include tooltip.base;
|
|
343
347
|
@include visual-checkbox.base;
|
|
344
348
|
|
|
345
349
|
@include a11y.if-forced-colors {
|
package/core.css
CHANGED
|
@@ -1781,6 +1781,20 @@ slot[name=error]::slotted(*) {
|
|
|
1781
1781
|
--sbb-timetable-occupancy-font-size: var(--sbb-text-font-size-s);
|
|
1782
1782
|
--sbb-timetable-occupancy-list-gap: var(--sbb-spacing-fixed-2x);
|
|
1783
1783
|
--sbb-timetable-occupancy-item-gap: var(--sbb-spacing-fixed-1x);
|
|
1784
|
+
--sbb-tooltip-animation-easing: ease-out;
|
|
1785
|
+
--sbb-tooltip-animation-translate: 0 var(--sbb-spacing-fixed-2x);
|
|
1786
|
+
--sbb-tooltip-background-color: var(--sbb-background-color-1-inverted);
|
|
1787
|
+
--sbb-tooltip-color: var(--sbb-color-2-inverted);
|
|
1788
|
+
--sbb-tooltip-border-color: var(--sbb-background-color-1-inverted);
|
|
1789
|
+
--sbb-tooltip-border-radius: var(--sbb-border-radius-8x);
|
|
1790
|
+
--sbb-tooltip-font-size: var(--sbb-text-font-size-xs);
|
|
1791
|
+
--sbb-tooltip-gap: var(--sbb-spacing-fixed-2x);
|
|
1792
|
+
--sbb-tooltip-min-width: var(--sbb-spacing-fixed-8x);
|
|
1793
|
+
--sbb-tooltip-padding: var(--sbb-spacing-fixed-2x) var(--sbb-spacing-fixed-4x);
|
|
1794
|
+
--sbb-overlay-position-area: block-start;
|
|
1795
|
+
--sbb-overlay-position-try-fallbacks:
|
|
1796
|
+
block-start span-inline-end, block-start span-inline-start, block-end,
|
|
1797
|
+
block-end span-inline-end, block-end span-inline-start;
|
|
1784
1798
|
--sbb-visual-checkbox-dimension: var(--sbb-checkbox-dimension-m);
|
|
1785
1799
|
--sbb-visual-checkbox-selection-color: var(--sbb-color-primary);
|
|
1786
1800
|
--sbb-visual-checkbox-selection-color-negative: var(--sbb-color-primary85);
|