feat(editor): Bring selected nodes and edges to front on new canvas (no-changelog) (#11158)

This commit is contained in:
Alex Grozav 2024-10-08 14:49:13 +03:00 committed by GitHub
parent 7f7294be9e
commit f124687b01
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}