Merge lp:~openerp-dev/openerp-web/7.0-opw-584855-ado into lp:openerp-web/7.0

Proposed by Amit Dodiya (OpenERP)
Status: Rejected
Rejected by: Martin Trigaux (OpenERP)
Proposed branch: lp:~openerp-dev/openerp-web/7.0-opw-584855-ado
Merge into: lp:openerp-web/7.0
Diff against target: 23 lines (+2/-0)
2 files modified
addons/web/static/src/css/base.css (+1/-0)
addons/web/static/src/css/base.sass (+1/-0)
To merge this branch: bzr merge lp:~openerp-dev/openerp-web/7.0-opw-584855-ado
Reviewer Review Type Date Requested Status
Xavier ALT Pending
Naresh(OpenERP) Pending
Review via email: mp+147337@code.launchpad.net

Description of the change

Hello,

"[FIX] layout problem on Journal view with firefox"

Issue :
In OpenERP 7.0 the "Journal View" form layout is broken with firefox 18.

Regards,
Amit Dodiya

To post a comment you must log in.
Revision history for this message
Martin Trigaux (OpenERP) (mat-openerp) wrote :

This was solved at revision 4131. We needed to use a clear:both property.

Unmerged revisions

3748. By Paramjit Singh Sahota(OpenERP)<email address hidden>

[FIX] layout problem on Journal view with firefox

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'addons/web/static/src/css/base.css'
--- addons/web/static/src/css/base.css 2013-01-31 10:48:04 +0000
+++ addons/web/static/src/css/base.css 2013-02-08 10:28:21 +0000
@@ -2240,6 +2240,7 @@
2240.openerp .oe_form .oe_form_group {2240.openerp .oe_form .oe_form_group {
2241 width: 100%;2241 width: 100%;
2242 margin: 9px 0 9px 0;2242 margin: 9px 0 9px 0;
2243 float: left;
2243}2244}
2244.openerp .oe_form .oe_form_group .oe_form_group_cell.oe_group_right {2245.openerp .oe_form .oe_form_group .oe_form_group_cell.oe_group_right {
2245 padding-left: 20px;2246 padding-left: 20px;
22462247
=== modified file 'addons/web/static/src/css/base.sass'
--- addons/web/static/src/css/base.sass 2013-01-31 10:48:04 +0000
+++ addons/web/static/src/css/base.sass 2013-02-08 10:28:21 +0000
@@ -1774,6 +1774,7 @@
1774 .oe_form_group1774 .oe_form_group
1775 width: 100%1775 width: 100%
1776 margin: 9px 0 9px 01776 margin: 9px 0 9px 0
1777 float: left
1777 .oe_form_group_cell.oe_group_right1778 .oe_form_group_cell.oe_group_right
1778 padding-left: 20px1779 padding-left: 20px
1779 // }}}1780 // }}}