Node editor UI

 From:  Michael Gibson
8456.2 In reply to 8456.1 
Hi Barry, yes I think it's possible to enlarge the UI. It looks like you would need to edit one of the .css files which are inside the node editor in the css subdirectory.

From a quick look I think you'd need to change the file litegraph-editor.css , it looks like there are several css classes in there that define things for the info panel, like this:

code:
.node-info .node-infoline {
	width: 100%;
	font-size: 12px;
	display: inline-block;
}


You'd need to edit the font-size value in there to increase the size of that particular element. It looks like there are individual font sizes set for various controls, so you'll need to look through everything in the /* NODE PANEL *********************/ section and adjust all the font sizes you find there.

It can be nicer if control font sizes are set as percentage values instead of direct pixel values, that way you can control many things with just one font setting on a container element. To do that you'd modify things like font-size:14px to font-size:110% , and then add a base font-size to the parent element which looks like probably the .node-panel class.

- Michael