Skip to content

Commit

Permalink
remove hover bg-success for output nodes in invocation graph
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedhamidawan committed Apr 23, 2024
1 parent a52e59c commit 74df34c
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions client/src/components/Workflow/Editor/NodeOutput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ const removeTagsAction = computed(() => {
ref="terminalComponent"
v-b-tooltip.hover="!props.blank ? outputDetails : ''"
class="output-terminal prevent-zoom"
:class="{ 'mapped-over': isMultiple }"
:class="{ 'mapped-over': isMultiple, 'blank-output': props.blank }"
:output-name="output.name"
:root-offset="rootOffset"
:prevent-default="false"
Expand Down Expand Up @@ -451,12 +451,14 @@ const removeTagsAction = computed(() => {
.output-terminal {
@include node-terminal-style(right);
&:hover {
color: $brand-success;
}
&:not(.blank-output) {
&:hover {
color: $brand-success;
}
button:focus + .terminal-icon {
color: $brand-success;
button:focus + .terminal-icon {
color: $brand-success;
}
}
}
Expand Down

0 comments on commit 74df34c

Please sign in to comment.