[imp] made the body css properties be included only in full web-client mode

bzr revid: nicolas.vanhoren@openerp.com-20120220095238-lxwtctbpo46ekpul
This commit is contained in:
niv-openerp 2012-02-20 10:52:38 +01:00
parent 1ecec769b9
commit 8036408be5
3 changed files with 7 additions and 6 deletions

View File

@ -98,6 +98,7 @@ html_template = """<!DOCTYPE html>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>OpenERP</title>
<link rel="shortcut icon" href="/web/static/src/img/favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" href="/web/static/src/css/full.css" />
%(css)s
%(js)s
<script type="text/javascript">

View File

@ -1,9 +1,3 @@
body {
padding: 0;
margin: 0;
overflow-y: scroll;
height: 100%;
}
.openerp {
padding: 0;
margin: 0;

View File

@ -0,0 +1,6 @@
body {
padding: 0;
margin: 0;
overflow-y: scroll;
height: 100%;
}