mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix selected node
This commit is contained in:
parent
17d9278b75
commit
aafa7b79c3
|
@ -1,5 +1,5 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="node-wrapper" :style="nodePosition">
|
<div :class="{'node-wrapper': true, selected: isSelected}" :style="nodePosition">
|
||||||
<div class="select-background" v-show="isSelected"></div>
|
<div class="select-background" v-show="isSelected"></div>
|
||||||
<div class="node-default" :data-name="data.name" :ref="data.name">
|
<div class="node-default" :data-name="data.name" :ref="data.name">
|
||||||
<div :class="nodeClass" :style="nodeStyle" @dblclick="setNodeActive" @click.left="mouseLeftClick" v-touch:start="touchStart" v-touch:end="touchEnd">
|
<div :class="nodeClass" :style="nodeStyle" @dblclick="setNodeActive" @click.left="mouseLeftClick" v-touch:start="touchStart" v-touch:end="touchEnd">
|
||||||
|
@ -114,10 +114,6 @@ export default mixins(externalHooks, nodeBase, nodeHelpers, workflowHelpers).ext
|
||||||
nodeClass () {
|
nodeClass () {
|
||||||
const classes = ['node-box'];
|
const classes = ['node-box'];
|
||||||
|
|
||||||
if (this.isSelected) {
|
|
||||||
classes.push('selected');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (this.data.disabled) {
|
if (this.data.disabled) {
|
||||||
classes.push('disabled');
|
classes.push('disabled');
|
||||||
}
|
}
|
||||||
|
@ -478,12 +474,8 @@ export default mixins(externalHooks, nodeBase, nodeHelpers, workflowHelpers).ext
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
/** node */
|
/** node */
|
||||||
.node-box {
|
.node-wrapper.selected {
|
||||||
z-index: 1;
|
|
||||||
|
|
||||||
&.selected {
|
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** connector */
|
/** connector */
|
||||||
|
|
Loading…
Reference in a new issue