Browse Source

[FIX] Bugfix in web_sheet_full_width for enterprise edition (#530)

pull/549/head
Frédéric Garbely 7 years ago
committed by Pedro M. Baeza
parent
commit
020657d5ce
  1. 2
      web_sheet_full_width/README.rst
  2. 2
      web_sheet_full_width/__manifest__.py
  3. 1
      web_sheet_full_width/static/src/css/web_sheet_full_width.less

2
web_sheet_full_width/README.rst

@ -9,6 +9,8 @@ Form view sheet at full width
This module was written to extend the functionality of the web client
to get full width in the form view sheet.
This module works in community edition and in enterprise edition.
Usage
=====

2
web_sheet_full_width/__manifest__.py

@ -3,7 +3,7 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
{
"name": "Show sheets with full width",
"version": "10.0.1.0.0",
"version": "10.0.1.0.1",
"author": "Therp BV,Sudokeys,GRAP,Odoo Community Association (OCA)",
"license": "AGPL-3",
"summary": "Use the whole available screen width when displaying sheets",

1
web_sheet_full_width/static/src/css/web_sheet_full_width.less

@ -2,6 +2,7 @@
.o_form_sheet_bg .o_form_sheet{
margin: @padding-base-horizontal;
max-width: none;
width: auto;
}
.oe_chatter{
max-width: none;

Loading…
Cancel
Save