Merge lp:~openerp-dev/openerp-web/7.0-opw-600181-msh into lp:openerp-web/7.0

Proposed by Mohammed Shekha(Open ERP)
Status: Needs review
Proposed branch: lp:~openerp-dev/openerp-web/7.0-opw-600181-msh
Merge into: lp:openerp-web/7.0
Diff against target: 30 lines (+2/-3)
2 files modified
addons/web_kanban/static/src/css/kanban.css (+1/-2)
addons/web_kanban/static/src/css/kanban.sass (+1/-1)
To merge this branch: bzr merge lp:~openerp-dev/openerp-web/7.0-opw-600181-msh
Reviewer Review Type Date Requested Status
Denis Ledoux (OpenERP) Pending
Martin Trigaux (OpenERP) Pending
Review via email: mp+194453@code.launchpad.net

Description of the change

Hello,

Issue with Do Show More button in kanban view, it is not positioned at bottom instead it comes middle of the screen in Internet Explorer(Tested with IE9), it is due to height of class oe_kanban_column_cards, changed height to auto instead of 100%.

Thanks.

To post a comment you must log in.

Unmerged revisions

4056. By Mohammed Shekha(OpenERP)<email address hidden>

[FIX]Kanban: Kanban do_show_more button not placed at proper position in IE, td height should be auto instead of 100%

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'addons/web_kanban/static/src/css/kanban.css'
--- addons/web_kanban/static/src/css/kanban.css 2013-11-04 14:23:10 +0000
+++ addons/web_kanban/static/src/css/kanban.css 2013-11-08 06:51:43 +0000
@@ -1,4 +1,3 @@
1@charset "utf-8";
2.openerp .oe_kanban_view {1.openerp .oe_kanban_view {
3 background: white;2 background: white;
4 height: inherit;3 height: inherit;
@@ -141,7 +140,7 @@
141 background: white;140 background: white;
142}141}
143.openerp .oe_kanban_view .oe_kanban_column, .openerp .oe_kanban_view .oe_kanban_column_cards {142.openerp .oe_kanban_view .oe_kanban_column, .openerp .oe_kanban_view .oe_kanban_column_cards {
144 height: 100%;143 height: auto;
145}144}
146.openerp .oe_kanban_view .oe_kanban_aggregates {145.openerp .oe_kanban_view .oe_kanban_aggregates {
147 padding: 0;146 padding: 0;
148147
=== modified file 'addons/web_kanban/static/src/css/kanban.sass'
--- addons/web_kanban/static/src/css/kanban.sass 2013-11-04 14:23:10 +0000
+++ addons/web_kanban/static/src/css/kanban.sass 2013-11-08 06:51:43 +0000
@@ -162,7 +162,7 @@
162 background: #ffffff162 background: #ffffff
163163
164 .oe_kanban_column, .oe_kanban_column_cards164 .oe_kanban_column, .oe_kanban_column_cards
165 height: 100%165 height: auto
166 .oe_kanban_aggregates166 .oe_kanban_aggregates
167 padding: 0167 padding: 0
168 margin: 0px168 margin: 0px