- Removed event handle again.
This commit is contained in:
Charles Hacskaylo 2024-12-16 17:43:16 -08:00
parent 6bda108e95
commit aaa2e43796
2 changed files with 3 additions and 2 deletions

View File

@ -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;

View File

@ -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;
}