Node editor UI

 From:  Michael Gibson
8456.8 In reply to 8456.7 
Hi Barry, it's because of using // for commenting out stuff in the editor.css file. Unfortunately unlike .js files, css doesn't understand // meaning a comment, it only knows /* */ for comments.

So in the .node-panel class in editor.css, when you have this:

code:
	width: 300px;//240
	right: 0px;


it's going to think you have 2 properties there named 'width' with a value of 300px and then another one named '//240 right' which won't be recognized so essentially right: is disabled there.

If you remove the // comments or switch them to /* */ then shut down and restart MoI you should then be back to what you want.

You may have had a few other various side effects from the // comments effectively disabling the property on the next line after in other areas too.

- Michael