[FIX] put the scrollbar back in web/tests
authorGéry Debongnie <ged@odoo.com>
Wed, 8 Oct 2014 13:34:19 +0000 (15:34 +0200)
committerGéry Debongnie <ged@odoo.com>
Tue, 21 Oct 2014 07:33:52 +0000 (09:33 +0200)
for some reason, the web tests interface loads base.css, in which the .openerp is overflow:hidden, which is not fun in the tests.

The correct fix is actually to remove base.css from the tests, but the way I did it had some problems. So, this is a simple workaround that can be safely removed if base.css is removed from the view.

addons/web_tests/static/src/css/web_tests.css

index 0d7aec3..4f7937d 100644 (file)
@@ -1,3 +1,7 @@
 .oe_bunchaforms > div {
     float: left;
 }
+
+body.openerp {
+       overflow: auto;
+}
\ No newline at end of file