From 9d65ff69dab89198e551fbeff94bed7ca86f933b Mon Sep 17 00:00:00 2001 From: Kersten Jeremy Date: Tue, 18 Mar 2014 16:00:59 +0100 Subject: [PATCH] [FIX] Hack css for graph view The best way will be to set svg height, but IE9 does not understand height="xxx". So we override the overflow set by bootstrap.css to fix it. bzr revid: jke@openerp.com-20140318150059-nd6bdd58uvr1s4um --- addons/web_graph/static/src/css/graph.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/addons/web_graph/static/src/css/graph.css b/addons/web_graph/static/src/css/graph.css index 1949028d6d8..25ee5db9594 100644 --- a/addons/web_graph/static/src/css/graph.css +++ b/addons/web_graph/static/src/css/graph.css @@ -1,3 +1,11 @@ + /* + This is a hack for IE9 ... + Attrs : width and height are not take in consideration + */ +.openerp svg:not(:root) { + overflow: visible; +} + .graph_pivot_mode { position:initial; }