@thinkpixellab-public/px-vue 3.0.17 → 3.0.18
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/components/PxFloat.vue
CHANGED
|
@@ -344,9 +344,11 @@ export default {
|
|
|
344
344
|
},
|
|
345
345
|
methods: {
|
|
346
346
|
show(reference) {
|
|
347
|
+
if (reference) {
|
|
348
|
+
this.referenceValue = reference;
|
|
349
|
+
}
|
|
347
350
|
this.hideSource = null;
|
|
348
351
|
this.visibleValue = true;
|
|
349
|
-
this.referenceValue = reference;
|
|
350
352
|
},
|
|
351
353
|
|
|
352
354
|
showAtCursor(mouseEvent) {
|
|
@@ -121,7 +121,6 @@ $dur: 400ms;
|
|
|
121
121
|
|
|
122
122
|
&__overlay {
|
|
123
123
|
background-color: clr(accent, -6, 0.2);
|
|
124
|
-
backdrop-filter: blur(10px);
|
|
125
124
|
}
|
|
126
125
|
|
|
127
126
|
&__drawer,
|
|
@@ -160,5 +159,11 @@ $dur: 400ms;
|
|
|
160
159
|
)
|
|
161
160
|
);
|
|
162
161
|
}
|
|
162
|
+
|
|
163
|
+
&--blur & {
|
|
164
|
+
&__overlay {
|
|
165
|
+
backdrop-filter: blur(10px);
|
|
166
|
+
}
|
|
167
|
+
}
|
|
163
168
|
}
|
|
164
169
|
</style>
|