@finsweet/webflow-apps-utils 1.0.39 → 1.0.41
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.
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
const dropdownStyles = $derived(() => {
|
|
96
96
|
const base = {
|
|
97
97
|
borderRadius: 'var(--border-radius, 4px)',
|
|
98
|
-
background: 'var(--
|
|
98
|
+
background: 'var(--background5)',
|
|
99
99
|
boxShadow: '0px 0.5px 1px 0px #000, 0px 0.5px 0.5px 0px rgba(255, 255, 255, 0.12) inset'
|
|
100
100
|
};
|
|
101
101
|
|
|
@@ -123,7 +123,7 @@
|
|
|
123
123
|
if (isHovered) {
|
|
124
124
|
return {
|
|
125
125
|
...base,
|
|
126
|
-
background: 'var(--
|
|
126
|
+
background: 'var(--background5)'
|
|
127
127
|
};
|
|
128
128
|
}
|
|
129
129
|
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
fallbackPlacements = [],
|
|
41
41
|
stopPropagation = true,
|
|
42
42
|
fontColor = 'var(--text2)',
|
|
43
|
-
bgColor = 'var(--
|
|
43
|
+
bgColor = 'var(--background3)',
|
|
44
44
|
class: className = '',
|
|
45
45
|
targetClassName = '',
|
|
46
46
|
target,
|
|
@@ -357,7 +357,7 @@
|
|
|
357
357
|
class="arrow"
|
|
358
358
|
id="arrow_{tooltipId}"
|
|
359
359
|
bind:this={arrowElement}
|
|
360
|
-
style="background-color:
|
|
360
|
+
style="background-color: {bgColor};"
|
|
361
361
|
></div>
|
|
362
362
|
{/if}
|
|
363
363
|
</div>
|
|
@@ -382,8 +382,9 @@
|
|
|
382
382
|
z-index: 99999999999;
|
|
383
383
|
border-radius: 4px;
|
|
384
384
|
box-shadow:
|
|
385
|
-
0 0
|
|
386
|
-
|
|
385
|
+
0px 4px 12px 0px rgb(0 0 0 / 15%),
|
|
386
|
+
0px 2px 4px 0px rgb(0 0 0 / 10%),
|
|
387
|
+
0px 0.5px 0.5px 0px rgb(255 255 255 / 10%) inset;
|
|
387
388
|
|
|
388
389
|
color: var(--text2, #b9b9b9);
|
|
389
390
|
|