Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,9 @@ function stepClicked(nodeId: number | null) {
@mouseover="showSideOverlay = true"
@mouseleave="showSideOverlay = false">
<BCard no-body>
<div v-if="activeNodeId !== null && showSideOverlay" class="overlay overlay-left" />
<div
v-if="activeNodeId !== null && showSideOverlay"
class="graph-scroll-overlay overlay-left" />
<WorkflowGraph
ref="workflowGraph"
class="invocation-graph"
Expand All @@ -218,7 +220,9 @@ function stepClicked(nodeId: number | null) {
is-invocation
readonly
@stepClicked="stepClicked" />
<div v-if="activeNodeId !== null && showSideOverlay" class="overlay overlay-right" />
<div
v-if="activeNodeId !== null && showSideOverlay"
class="graph-scroll-overlay overlay-right" />
</BCard>
</div>
</div>
Expand Down Expand Up @@ -289,11 +293,13 @@ function stepClicked(nodeId: number | null) {
}
}

.overlay {
.graph-scroll-overlay {
bottom: 0;
width: 1.5rem;
background: $gray-200;
opacity: 0.5;
position: absolute;
height: 100%;
&.overlay-left {
z-index: 1;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const props = defineProps<{
<span
class="d-flex align-items-center"
data-description="invocation step state counter"
:data-state="state"
:data-step-state="state"
:data-count="jobCount">
<FontAwesomeIcon
v-if="iconClasses[props.state]"
Expand Down
2 changes: 1 addition & 1 deletion client/src/utils/navigation/navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ invocations:
selector: '//span[contains(@class, "content-title name")][text()="${element_identifier}"]'
step_output_collection_element_datatype: '[data-step="${order_index}"] .invocation-step-output-collection-details .not-loading .datatype .value'
step_job_details: '[data-step="${order_index}"] .invocation-step-job-details'
step_job_details_state_counter: '[data-description="invocation step state counter"][data-state="${state}"]'
step_job_details_state_counter: '[data-description="invocation step state counter"][data-step-state="${state}"]'
step_job_information: '[data-step="${order_index}"] .invocation-step-job-details .info_data_table'
step_job_information_tool_id: '[data-step="${order_index}"] .invocation-step-job-details .info_data_table #galaxy-tool-id'
export_tab: '.invocation-export-tab'
Expand Down
Loading