Fixes error on popups for legacy Android phones
This commit is contained in:
parent
02444a9c43
commit
949a4656cf
2 changed files with 38 additions and 40 deletions
|
|
@ -1401,6 +1401,7 @@ input.ng-invalid-match, input.ng-invalid-match:focus {
|
||||||
dialog.small, .reveal-modal.small,
|
dialog.small, .reveal-modal.small,
|
||||||
dialog.medium, .reveal-modal.medium,
|
dialog.medium, .reveal-modal.medium,
|
||||||
dialog.large, .reveal-modal.large {
|
dialog.large, .reveal-modal.large {
|
||||||
|
width:100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -39,10 +39,9 @@
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
</div>
|
||||||
<div class="row" ng-show="showForm">
|
|
||||||
<div class="large-6 medium-6 columns large-centered medium-centered" >
|
<div class="large-6 medium-6 columns large-centered medium-centered" >
|
||||||
<form class="m0" name="addressBookForm" ng-submit="submitAddressBook(addressBookForm)" novalidate>
|
<form ng-show="showForm" class="m0" name="addressBookForm" ng-submit="submitAddressBook(addressBookForm)" novalidate>
|
||||||
<div class="box-notification" ng-show="error">
|
<div class="box-notification" ng-show="error">
|
||||||
<div class="box-icon error">
|
<div class="box-icon error">
|
||||||
<i class="size-24 fi-x"></i>
|
<i class="size-24 fi-x"></i>
|
||||||
|
|
@ -79,8 +78,6 @@
|
||||||
ng-click="submitAddressBook(addressBookForm)">{{'Add'|translate}}</button>
|
ng-click="submitAddressBook(addressBookForm)">{{'Add'|translate}}</button>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div class="large-12 columns" ng-show="!showForm">
|
<div class="large-12 columns" ng-show="!showForm">
|
||||||
<a class="button primary expand" ng-click="toggleForm()"><i class="fi-plus"></i> Add entry</a>
|
<a class="button primary expand" ng-click="toggleForm()"><i class="fi-plus"></i> Add entry</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue