Wednesday, December 25, 2019
1 change · master
Miscellaneous changes
Steps to reproduce: 1. Open 'Helpdesk' on mobile 2. In dashboard menu, you can scroll x while the content fit the screen. This issue occured because of negative margins on 'o_helpdesk_dashboard' class and the computed width is wrong. In general, using negative margins should be avoided. So in this commit we remove negative margins and we adapt padding values to keep the same design. padding-top: 2px = 10px + (0 - @o-kanban-record-margin) padding-bottom: 18px = 10px + @o-kanban-re
Original PR description
Steps to reproduce: 1. Open 'Helpdesk' on mobile 2. In dashboard menu, you can scroll x while the content fit the screen. This issue occured because of negative margins on 'o_helpdesk_dashboard' class and the computed width is wrong. In general, using negative margins should be avoided. So in this commit we remove negative margins and we adapt padding values to keep the same design. padding-top: 2px = 10px + (0 - @o-kanban-record-margin) padding-bottom: 18px = 10px + @o-kanban-record-margin opw-2071605 Forward-Port-Of: odoo/enterprise#7412 Forward-Port-Of: odoo/enterprise#7405