css fix for slickgrid and bootstrap to play nicely together
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Tue, 3 Dec 2013 10:36:05 +0000 (11:36 +0100)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Tue, 3 Dec 2013 10:36:05 +0000 (11:36 +0100)
plugins/querytable/static/css/querytable.css

index b771294..3c7002c 100644 (file)
@@ -5,3 +5,12 @@ div.querytable {
     width: 100%;
     height: 400px;
 }
+
+/* this is crucial for slickgrid and bootstrap3 to play together nicely
+   https://github.com/mleibman/SlickGrid/issues/742
+ */
+div.querytable div {
+  -webkit-box-sizing: content-box;
+     -moz-box-sizing: content-box;
+          box-sizing: content-box;
+}