zydx-plus 1.33.435 → 1.33.436
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/package.json
CHANGED
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
<div class="tool-img" :class="{'tool-arr-act': item.id === toolId}" :data-index="index">
|
|
20
20
|
<img :src="item.img" alt=""/>
|
|
21
21
|
</div>
|
|
22
|
-
<div class="prompt">{{ item.name }}</div>
|
|
22
|
+
<div class="prompt-paint">{{ item.name }}</div>
|
|
23
23
|
</div>
|
|
24
24
|
</div>
|
|
25
25
|
<div class="tool-pop" v-if="toolMenu" :style="{bottom: toolTop + 'px', left: toolLeft + 'px'}">
|
|
@@ -655,7 +655,7 @@ export default {
|
|
|
655
655
|
margin-top: -5px;
|
|
656
656
|
}
|
|
657
657
|
|
|
658
|
-
.prompt {
|
|
658
|
+
.prompt-paint {
|
|
659
659
|
position: absolute;
|
|
660
660
|
top: -38px;
|
|
661
661
|
left: -10px;
|
|
@@ -668,7 +668,7 @@ export default {
|
|
|
668
668
|
display: none;
|
|
669
669
|
}
|
|
670
670
|
|
|
671
|
-
.prompt:after {
|
|
671
|
+
.prompt-paint:after {
|
|
672
672
|
content: '';
|
|
673
673
|
width: 0;
|
|
674
674
|
height: 0;
|
|
@@ -714,7 +714,7 @@ export default {
|
|
|
714
714
|
background-color: #00FF00;
|
|
715
715
|
}
|
|
716
716
|
|
|
717
|
-
.tool-item:hover .prompt {
|
|
717
|
+
.tool-item:hover .prompt-paint {
|
|
718
718
|
display: block;
|
|
719
719
|
}
|
|
720
720
|
|