diff --git a/src/components/timeline/Row.svelte b/src/components/timeline/Row.svelte index 85221a5e03..709c02db33 100644 --- a/src/components/timeline/Row.svelte +++ b/src/components/timeline/Row.svelte @@ -6,6 +6,7 @@ import { select } from 'd3-selection'; import { pick } from 'lodash-es'; import { createEventDispatcher } from 'svelte'; + import { allResources } from '../../stores/simulation'; import { selectedRow, viewSetSelectedRow, viewTogglePanel } from '../../stores/views'; import type { ActivityDirective, @@ -42,8 +43,8 @@ import RowHorizontalGuides from './RowHorizontalGuides.svelte'; import RowXAxisTicks from './RowXAxisTicks.svelte'; import RowYAxes from './RowYAxes.svelte'; + import RowYAxisTicks from './RowYAxisTicks.svelte'; import TimelineViewDirectiveControls from './TimelineViewDirectiveControls.svelte'; - import { allResources } from '../../stores/simulation'; export let activityDirectivesByView: ActivityDirectivesByView = { byLayerId: {}, byTimelineId: {} }; export let activityDirectivesMap: ActivityDirectivesMap = {}; @@ -274,6 +275,7 @@ {#if drawWidth > 0} + + + + + + {#each ticks as tick} + + + + {/each} + diff --git a/src/components/timeline/TimelineCursor.svelte b/src/components/timeline/TimelineCursor.svelte index dae9fac12b..889d35fd65 100644 --- a/src/components/timeline/TimelineCursor.svelte +++ b/src/components/timeline/TimelineCursor.svelte @@ -37,7 +37,6 @@ height: 100%; left: 0; opacity: 1; - pointer-events: all; position: absolute; top: -10px; transform: translateX(0); diff --git a/src/components/timeline/TimelineCursors.svelte b/src/components/timeline/TimelineCursors.svelte index 3a52131ee4..e3c2c90f2a 100644 --- a/src/components/timeline/TimelineCursors.svelte +++ b/src/components/timeline/TimelineCursors.svelte @@ -195,6 +195,7 @@ pointer-events: none; position: absolute; width: 100%; + z-index: 2; } .timeline-cursor-header { diff --git a/src/components/timeline/form/TimelineEditorYAxisSettings.svelte b/src/components/timeline/form/TimelineEditorYAxisSettings.svelte index d0ef0499e6..ed86bb5b7e 100644 --- a/src/components/timeline/form/TimelineEditorYAxisSettings.svelte +++ b/src/components/timeline/form/TimelineEditorYAxisSettings.svelte @@ -3,16 +3,16 @@