From aaa2e43796929b01562bc6cc57c7f250fe688af4 Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Mon, 16 Dec 2024 17:43:16 -0800 Subject: [PATCH] Closes #7936 - Removed event handle again. --- src/plugins/events/components/events-view.scss | 2 ++ src/plugins/timeline/timeline.scss | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/plugins/events/components/events-view.scss b/src/plugins/events/components/events-view.scss index 53d74ace9fb..fec35d46e53 100644 --- a/src/plugins/events/components/events-view.scss +++ b/src/plugins/events/components/events-view.scss @@ -37,6 +37,8 @@ transform: translateX(($hitAreaW - $lineW) * -0.5); } + &.is-selected, // TODO: temp, remove this once we set selection correctly + &[s-selected], &:hover { z-index: 2; background-color: $c; diff --git a/src/plugins/timeline/timeline.scss b/src/plugins/timeline/timeline.scss index 730ca8e4c2c..cbfb2a8871c 100644 --- a/src/plugins/timeline/timeline.scss +++ b/src/plugins/timeline/timeline.scss @@ -47,15 +47,14 @@ &__overlay-lines { //background: rgba(deeppink, 0.2); @include abs(); + top: 20px; // Offset down to line up with time axis ticks line pointer-events: none; // Allows clicks to pass through z-index: 10; // Ensure it sits atop swimlanes } &__extended-line { position: absolute; - top: 20px; // Offset down to line up with time axis ticks line width: $eventLineW; - pointer-events: auto; // TODO: don't think we want this, extended lines shouldn't be accepting pointer events background-color: $colorEventLineExtended; }