IDEMPIERE-4345 zk9 - Payment selection (Manual) open with header collapsed (#137)

This commit is contained in:
Diego Ruiz 2020-06-25 17:47:04 +02:00 committed by GitHub
parent bcd1fa67cd
commit 5f0e895d88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -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);

View File

@ -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);