mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
feat(editor): Bring selected nodes and edges to front on new canvas (no-changelog) (#11158)
This commit is contained in:
parent
7f7294be9e
commit
f124687b01
|
@ -70,7 +70,7 @@
|
|||
}
|
||||
|
||||
/**
|
||||
* Node
|
||||
* Nodes
|
||||
*/
|
||||
|
||||
.vue-flow__node {
|
||||
|
@ -83,6 +83,10 @@
|
|||
cursor: grabbing;
|
||||
}
|
||||
|
||||
&.selected {
|
||||
z-index: 1 !important;
|
||||
}
|
||||
|
||||
&:has(.sticky--active) {
|
||||
z-index: 1 !important;
|
||||
}
|
||||
|
@ -98,3 +102,12 @@
|
|||
margin-left: calc(-1 * var(--spacing-2xs));
|
||||
padding: var(--spacing-2xs);
|
||||
}
|
||||
|
||||
/**
|
||||
* Edges
|
||||
*/
|
||||
|
||||
.vue-flow__edges,
|
||||
.vue-flow__edge-labels {
|
||||
z-index: 1 !important;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue