qazwsx5513 / dat-gui

Automatically exported from code.google.com/p/dat-gui
0 stars 0 forks source link

Does not work with bootstrap 3 #51

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
dat-gui played fine with bootstrap 2, however with bootstrap 3 the styling goes 
out the window for dat-gui (see attached screenshots working with bootstrap 2 
and not working with bootstrap 3).

Are there any plans to make dat-gui work with bootstrap 3?

Original issue reported on code.google.com by Benjamin...@gmail.com on 19 Jul 2014 at 1:51

Attachments:

GoogleCodeExporter commented 9 years ago
I've solved this problem with these additional css codes.
======================
.dg .c input[type=text] {                                                       

  line-height:normal;                                                                  
} 
.dg .c div {
  box-sizing: content-box;                                                             
}

Original comment by seongyoo...@ixdl.kr on 15 Apr 2015 at 2:52

GoogleCodeExporter commented 9 years ago
My current hack:
d3.selectAll('.hue-field').style('width','13px');

Original comment by nye...@gmail.com on 1 May 2015 at 6:05