IDEMPIERE-4345 zk9 - Payment selection (Manual) open with header collapsed (#137)
This commit is contained in:
parent
bcd1fa67cd
commit
5f0e895d88
|
@ -186,7 +186,9 @@ implements IFormController, EventListener<Event>, WTableModelListener, ValueChan
|
|||
|
||||
// Parameter Panel
|
||||
North north = new North();
|
||||
north.setStyle("border: none; max-height: 60%;");
|
||||
north.setStyle("border: none;");
|
||||
if (ClientInfo.isMobile())
|
||||
north.setStyle("max-height: 60%;");
|
||||
mainLayout.appendChild(north);
|
||||
north.appendChild(parameterPanel);
|
||||
north.setCollapsible(true);
|
||||
|
|
|
@ -200,7 +200,9 @@ public class WPaySelect extends PaySelect
|
|||
bCancel.addActionListener(this);
|
||||
//
|
||||
North north = new North();
|
||||
north.setStyle("border: none; max-height: 60%;");
|
||||
north.setStyle("border: none;");
|
||||
if (ClientInfo.isMobile())
|
||||
north.setStyle("max-height: 60%;");
|
||||
mainLayout.appendChild(north);
|
||||
north.appendChild(parameterPanel);
|
||||
north.setSplittable(true);
|
||||
|
|
Loading…
Reference in New Issue