[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
This commit is contained in:
Kersten Jeremy 2014-03-18 16:00:59 +01:00
parent af8147fc95
commit 9d65ff69da
1 changed files with 8 additions and 0 deletions

View File

@ -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;
}