Files
ComfyUI_frontend/css/litegraph.css
tamat 6248dd4e0f WebGL support
Subgraph support
FX nodes moved from gltexture to glfx
Improves in gltexture
2014-10-02 15:38:19 +02:00

45 lines
832 B
CSS

/* this CSS contains only the basic CSS needed to run the app and use it */
.lgraphcanvas {
cursor: crosshair;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
}
.litecontextualmenu {
padding: 4px;
min-width: 100px;
}
.litemenu-entry {
box-sizing: border-box;
margin: 2px;
padding-left: 20px;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
transition: * linear 0.5s;
}
.litemenu-entry.disabled {
opacity: 0.3;
}
.litemenu-entry.submenu {
border-right: 2px solid #EEE;
}
.litemenu-entry:hover {
background-color: #555;
}
.litemenu-entry.separator {
background-color: #111;
border-bottom: 1px solid #666;
height: 1px;
width: calc( 100% - 20px );
-moz-width: calc( 100% - 20px );
-webkit-width: calc( 100% - 20px );
}