Browse Source

fix: Action title styling on the argument form

jamesread 3 weeks ago
parent
commit
9e7a397898
1 changed files with 6 additions and 23 deletions
  1. 6 23
      frontend/resources/vue/views/ArgumentForm.vue

+ 6 - 23
frontend/resources/vue/views/ArgumentForm.vue

@@ -4,17 +4,12 @@
       <h2>
         <span class="section-title-with-icon">
           Start action:
-          <router-link
-            :to="`/action/${bindingId}`"
-            class="action-details-title-link"
-          >
-            <ActionIconGlyph
-              v-if="icon"
-              class="action-title-icon"
-              :glyph="icon"
-            />
-            {{ title }}
-          </router-link>
+          <ActionIconGlyph
+            v-if="icon"
+            class="action-title-icon"
+            :glyph="icon"
+          />
+          {{ title }}
         </span>
       </h2>
     </div>
@@ -684,18 +679,6 @@ onUnmounted(() => {
   font-size: 1.5rem;
 }
 
-.action-details-title-link {
-  display: inline-flex;
-  align-items: center;
-  gap: 0.5rem;
-  color: var(--link-color, #0066cc);
-  text-decoration: underline;
-}
-
-.action-details-title-link:hover {
-  color: var(--link-hover-color, #004499);
-}
-
 form {
   grid-template-columns: max-content auto auto;
 }