💄 Improve position of node options

This commit is contained in:
Jan Oberhauser 2019-07-26 07:49:00 +02:00
parent 4bbc7edad2
commit dae2aa3d5d

View file

@ -99,6 +99,10 @@ export default mixins(nodeBase, workflowHelpers).extend({
classes.push('has-data');
}
if (this.hasIssues) {
classes.push('has-issues');
}
return classes;
},
nodeIssues (): string {
@ -312,7 +316,7 @@ export default mixins(nodeBase, workflowHelpers).extend({
.node-options {
display: none;
position: absolute;
top: -35px;
top: -25px;
left: -10px;
width: 120px;
height: 45px;
@ -338,6 +342,11 @@ export default mixins(nodeBase, workflowHelpers).extend({
}
}
}
&.has-data .node-options,
&.has-issues .node-options {
top: -35px;
}
}
}