Mohammed Shekha(Open ERP) has proposed merging
lp:~openerp-dev/openobject-client-web/6.0-opw-381976-msh into
lp:openobject-client-web.
Requested reviews:
OpenERP Core Team (openerp)
For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-client-web/6.0-opw-381976-msh/+merge/91629
Hello,
Fixed the issue of IE9 which does not show filters in proper arranged format.
The issue faced with IE9.
Demo :- Go to any search view, you will see search filters are not arranged
properly. e.g, HR -> Reporting -> Recruitment Analysis.
Reason :- style-ie.css is not loaded dur to condition <!--[if lt IE 9]> in
base.mako, and after added <!--[if lte IE 9]> still we get little bit space
between two filters that is because we have set button width = 98 % in
style-ie.css to arrange the frame-element in form-view for IE, but min-width of
button is 75px so 98% of 75px will be 73.5px and there will be a space of 1.5px.
So changed the code of style-ie.css to arrange the filters in IE9.
Thanks.
--
https://code.launchpad.net/~openerp-dev/openobject-client-web/6.0-opw-381976-msh/+merge/91629
Your team OpenERP R&D Team is subscribed to branch
lp:~openerp-dev/openobject-client-web/6.0-opw-381976-msh.
=== modified file 'addons/openerp/controllers/templates/base.mako'
--- addons/openerp/controllers/templates/base.mako 2010-11-08 14:50:06 +0000
+++ addons/openerp/controllers/templates/base.mako 2012-02-06 10:40:29 +0000
@@ -34,7 +34,7 @@
<link rel="stylesheet" type="text/css" href="/openerp/static/css/listgrid.css"/>
<link rel="stylesheet" type="text/css" href="/openerp/static/css/autocomplete.css"/>
- <!--[if lt IE 9]>
+ <!--[if lte IE 9]>
<link rel="stylesheet" type="text/css" href="/openerp/static/css/style-ie.css"/>
<![endif]-->
${self.header()}
=== modified file 'addons/openerp/static/css/style-ie.css'
--- addons/openerp/static/css/style-ie.css 2011-01-10 13:49:57 +0000
+++ addons/openerp/static/css/style-ie.css 2012-02-06 10:40:29 +0000
@@ -36,6 +36,9 @@
width: 98%;
}
+.item .filter-a button {
+ width: 100%;
+}
.resizable-textarea .grip {
width: 98%;
}
_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help : https://help.launchpad.net/ListHelp