pipipi-pikachu пре 5 година
родитељ
комит
8ba7a9d91c

+ 0 - 1
src/views/Editor/Canvas/EditableElement.vue

@@ -6,7 +6,6 @@
     :style="{ zIndex: elementIndex }"
     :style="{ zIndex: elementIndex }"
   >
   >
     <component
     <component
-      :id="`editable-element-${elementInfo.id}`"
       :is="currentElementComponent"
       :is="currentElementComponent"
       :elementInfo="elementInfo"
       :elementInfo="elementInfo"
       :selectElement="selectElement"
       :selectElement="selectElement"

+ 5 - 0
src/views/Editor/Canvas/Operate/RotateHandler.vue

@@ -18,5 +18,10 @@ export default {
   border: 1px solid $themeColor;
   border: 1px solid $themeColor;
   background-color: #fff;
   background-color: #fff;
   border-radius: 1px;
   border-radius: 1px;
+  cursor: grab;
+
+  &:active {
+    cursor: grabbing;
+  }
 }
 }
 </style>
 </style>

+ 5 - 0
src/views/Editor/Thumbnails/index.vue

@@ -187,5 +187,10 @@ export default defineComponent({
   font-size: 12px;
   font-size: 12px;
   color: #999;
   color: #999;
   width: 20px;
   width: 20px;
+  cursor: grab;
+
+  &:active {
+    cursor: grabbing;
+  }
 }
 }
 </style>
 </style>

+ 5 - 0
src/views/Editor/Toolbar/ElementAnimationPanel.vue

@@ -251,6 +251,11 @@ export default defineComponent({
   padding: 6px;
   padding: 6px;
   border-radius: $borderRadius;
   border-radius: $borderRadius;
   margin-bottom: 8px;
   margin-bottom: 8px;
+  cursor: grab;
+
+  &:active {
+    cursor: grabbing;
+  }
 
 
   &.active {
   &.active {
     border-color: $themeColor;
     border-color: $themeColor;