Fix splitter overlay z-index (#230)

This commit is contained in:
Chenlei Hu
2024-07-26 10:47:04 -04:00
committed by GitHub
parent ee6eed1c1c
commit 4dba1d3ab0

View File

@@ -52,7 +52,11 @@ const gutterClass = computed(() => {
left: 0;
background-color: transparent;
pointer-events: none;
z-index: 10;
/* Set it the same as the ComfyUI menu */
/* Note: Lite-graph DOM widgets have the same z-index as the node id, so
999 should be sufficient to make sure splitter overlays on node's DOM
widgets */
z-index: 999;
border: none;
}
</style>