css fix for slickgrid and bootstrap to play nicely together
[myslice.git] / plugins / querytable / static / css / querytable.css
1 /* the bottom of the datatable needs more space */
2 div.querytable-spacer { padding: 8px 4px 15px 4px; }
3
4 div.querytable {
5     width: 100%;
6     height: 400px;
7 }
8
9 /* this is crucial for slickgrid and bootstrap3 to play together nicely
10    https://github.com/mleibman/SlickGrid/issues/742
11  */
12 div.querytable div {
13   -webkit-box-sizing: content-box;
14      -moz-box-sizing: content-box;
15           box-sizing: content-box;
16 }