Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

dat.gui custom css class

I've been trying to figure out a way to style individual panels or gui's using Dat.gui.

What is the best way to do this? I could search for panel names in the DOM then apply the style but it seems like an overly complicated solution.

like image 662
jthompson Avatar asked Nov 13 '22 04:11

jthompson


1 Answers

From the looks of this example you could use the CSS selector .dg.main to start, that is the panel container element.

You could use CSS to style the elements, or jQuery or similar to manipulate the DOM.

like image 191
mswieboda Avatar answered Nov 14 '22 23:11

mswieboda