ananzhusen 1 rok pred
rodič
commit
a1dc0f4fed

+ 1 - 1
src/views/components/Actions.vue

@@ -168,7 +168,7 @@
                 class="center gray mt-8"
               >
                 <div class="prop-grid mt-8" v-for="(value, key) in a.value">
-                  <div class="ml-8">
+                  <div class="ml-8 value-label">
                     <t-tooltip :content="key">
                       {{ getPropDesc(a, key) }}
                     </t-tooltip>

+ 7 - 0
src/views/components/PenEvents.vue

@@ -179,5 +179,12 @@ onUnmounted(() => {});
   :deep(.value-input) {
     max-width: 95px;
   }
+
+  :deep(.value-label){
+    width: 50px;
+    overflow: hidden;
+    text-overflow:ellipsis;
+    white-space: nowrap;
+  }
 }
 </style>