瀏覽代碼

鼠标点击样式

Michael Wang 4 年之前
父節點
當前提交
324895248a

+ 1 - 1
src/features/mark/MarkBoardKeyBoard.vue

@@ -66,7 +66,7 @@
       >
         <div
           @click="chooseQuestion(question)"
-          class="question tw-rounded tw-p-1 tw-mb-2"
+          class="question tw-rounded tw-p-1 tw-mb-2 tw-cursor-pointer"
           :class="isCurrentQuestion(question) && 'current-question'"
         >
           <div class="tw-flex tw-justify-between">

+ 1 - 1
src/features/mark/MarkBoardMouse.vue

@@ -86,7 +86,7 @@
                 v-for="(s, i) in questionScoreSteps(question)"
                 :key="i"
                 @click="chooseScore(question, s)"
-                class="single-score"
+                class="single-score tw-cursor-pointer"
                 :class="isCurrentScore(question, s) && 'current-score'"
               >
                 {{ s }}

+ 2 - 2
src/features/mark/MarkBoardTrack.vue

@@ -78,7 +78,7 @@
         >
           <div
             @click="chooseQuestion(question)"
-            class="question tw-rounded tw-p-1"
+            class="question tw-rounded tw-p-1 tw-cursor-pointer"
             :class="isCurrentQuestion(question) && 'current-question'"
           >
             <div style="border-bottom: 1px solid grey">
@@ -119,7 +119,7 @@
           v-for="(s, i) in questionScoreSteps"
           :key="i"
           @click="chooseScore(s)"
-          class="single-score"
+          class="single-score tw-cursor-pointer"
           :class="isCurrentScore(s) && 'current-score'"
         >
           {{ s }}