From 092e8fe45a72897f8b78d382686c2dac003375da Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 2 Mar 2026 13:44:16 +0100 Subject: [PATCH] fix(gantt): remove unreachable hover rule on relation arrows --- frontend/src/components/gantt/GanttRelationArrows.vue | 5 ----- 1 file changed, 5 deletions(-) diff --git a/frontend/src/components/gantt/GanttRelationArrows.vue b/frontend/src/components/gantt/GanttRelationArrows.vue index 3f34fffc1..56eb785fd 100644 --- a/frontend/src/components/gantt/GanttRelationArrows.vue +++ b/frontend/src/components/gantt/GanttRelationArrows.vue @@ -122,11 +122,6 @@ function getMarkerEnd(arrow: GanttArrow): string { .gantt-arrow { opacity: 0.7; - transition: opacity 0.2s ease; - - &:hover { - opacity: 1; - } }