Move padding tag to card.html

This commit is contained in:
Gerard 2018-03-23 11:33:54 +01:00
parent 6351f4a93d
commit 4926ad7e01
22 changed files with 22 additions and 23 deletions

View File

@ -6,7 +6,7 @@
save="post"
form="form">
</vn-watcher>
<form name="form" ng-submit="watcher.submitGo('clientCard.addresses.list')" margin-medium>
<form name="form" ng-submit="watcher.submitGo('clientCard.addresses.list')">
<vn-card pad-large>
<vn-title>Address</vn-title>
<vn-horizontal>

View File

@ -10,7 +10,7 @@
data="$ctrl.address"
form="form">
</vn-watcher>
<form name="form" ng-submit="$ctrl.submit()" margin-medium>
<form name="form" ng-submit="$ctrl.submit()">
<vn-card pad-large>
<vn-title>Address</vn-title>
<vn-horizontal>

View File

@ -1,5 +1,5 @@
<mg-ajax path="/client/api/Clients/{{index.params.id}}/listAddresses" options="mgIndex"></mg-ajax>
<vn-vertical pad-medium>
<vn-vertical>
<vn-card pad-large>
<vn-title vn-one>Addresses</vn-title>
<vn-horizontal ng-repeat="address in index.model.items track by address.id" class="pad-medium-top" style="align-items: center;">

View File

@ -5,7 +5,7 @@
form="form"
save="patch">
</vn-watcher>
<form name="form" ng-submit="watcher.submit()" margin-medium>
<form name="form" ng-submit="watcher.submit()">
<vn-card pad-large>
<vn-title>Basic data</vn-title>
<vn-horizontal>

View File

@ -5,7 +5,7 @@
form="form"
save="patch">
</vn-watcher>
<form name="form" ng-submit="$ctrl.submit()" pad-medium>
<form name="form" ng-submit="$ctrl.submit()">
<vn-card pad-large>
<vn-title>Pay method</vn-title>
<vn-horizontal>

View File

@ -10,7 +10,7 @@
<vn-left-menu></vn-left-menu>
</vn-auto>
<vn-one>
<vn-vertical ui-view></vn-vertical>
<vn-vertical margin-medium ui-view></vn-vertical>
</vn-one>
</vn-horizontal>
</vn-main-block>

View File

@ -5,7 +5,7 @@
form="form"
save="post">
</vn-watcher>
<form name="form" ng-submit="watcher.submitGo('clientCard.creditClassification.list')" pad-medium>
<form name="form" ng-submit="watcher.submitGo('clientCard.creditClassification.list')">
<vn-card pad-large>
<vn-title>New contract</vn-title>
<vn-horizontal>

View File

@ -1,4 +1,4 @@
<vn-vertical pad-medium>
<vn-vertical>
<vn-card pad-large>
<vn-title vn-one>Contract credit insurance</vn-title>
<vn-horizontal ng-repeat="classification in $ctrl.classifications track by classification.id" class="pad-medium-top" style="align-items: center;">

View File

@ -6,8 +6,7 @@
save="post">
</vn-watcher>
<form name="form"
ng-submit="watcher.submitGo('clientCard.creditInsurance.list', {classificationId: post.params.classificationId})"
pad-medium>
ng-submit="watcher.submitGo('clientCard.creditInsurance.list', {classificationId: post.params.classificationId})">
<vn-card pad-large>
<vn-title>New credit</vn-title>
<vn-horizontal>

View File

@ -1,5 +1,5 @@
<mg-ajax path="/client/api/CreditClassifications/{{index.params.classificationId}}/creditInsurances" options="vnIndex"></mg-ajax>
<vn-vertical pad-medium>
<vn-vertical>
<vn-card pad-large>
<vn-vertical>
<vn-title>Requested credits</vn-title>

View File

@ -1,5 +1,5 @@
<mg-ajax path="/client/api/ClientCredits/filter" options="vnIndexNonAuto"></mg-ajax>
<vn-vertical pad-medium>
<vn-vertical>
<vn-card pad-large>
<vn-vertical>
<vn-title>Credit</vn-title>

View File

@ -5,7 +5,7 @@
form="form"
save="patch">
</vn-watcher>
<form name="form" ng-submit="$ctrl.submit()" pad-medium>
<form name="form" ng-submit="$ctrl.submit()">
<vn-card pad-large>
<vn-title>Fiscal data</vn-title>
<vn-horizontal>

View File

@ -5,7 +5,7 @@
form="form"
save="post">
</vn-watcher>
<form name="form" ng-submit="$ctrl.onSubmit()" pad-medium>
<form name="form" ng-submit="$ctrl.onSubmit()">
<vn-card pad-large>
<vn-title>Add Greuge</vn-title>
<vn-horizontal>

View File

@ -1,6 +1,6 @@
<mg-ajax path="/client/api/greuges/filter" options="vnIndexNonAuto"></mg-ajax>
<mg-ajax path="/client/api/greuges/{{edit.params.id}}/sumAmount" options="mgEdit"></mg-ajax>
<vn-vertical pad-medium>
<vn-vertical>
<vn-card pad-large>
<vn-vertical>
<vn-title>Greuge</vn-title>

View File

@ -1,6 +1,6 @@
<mg-ajax path="/client/api/InvoiceOuts/filter" options="vnIndexNonAuto"></mg-ajax>
<mg-ajax path="/client/api/InvoiceOuts/{{edit.params.id}}/sumAmount" options="mgEdit"></mg-ajax>
<vn-vertical pad-medium>
<vn-vertical>
<vn-card pad-large>
<vn-vertical>
<vn-title>Invoices</vn-title>

View File

@ -1,5 +1,5 @@
<mg-ajax path="/client/api/Mandates/filter" options="vnIndexNonAuto"></mg-ajax>
<vn-vertical pad-medium>
<vn-vertical>
<vn-card pad-large>
<vn-vertical>
<vn-title>Mandate</vn-title>

View File

@ -6,7 +6,7 @@
save="post"
form="form">
</vn-watcher>
<form name="form" ng-submit="watcher.submitGo('clientCard.notes.list')" pad-medium>
<form name="form" ng-submit="watcher.submitGo('clientCard.notes.list')">
<vn-card pad-large>
<vn-title>New note</vn-title>
<vn-horizontal>

View File

@ -1,4 +1,4 @@
<vn-vertical pad-medium>
<vn-vertical>
<vn-card ng-show="$ctrl.observations.length" pad-large>
<vn-title>Notes</vn-title>
<vn-vertical

View File

@ -5,7 +5,7 @@
form="form"
save="post">
</vn-watcher>
<form pad-medium name="form" ng-submit="$ctrl.onSubmit()">
<form name="form" ng-submit="$ctrl.onSubmit()">
<vn-card pad-large>
<vn-title>Add recovery</vn-title>
<vn-horizontal>

View File

@ -1,5 +1,5 @@
<mg-ajax path="/client/api/Recoveries/filter" options="vnIndexNonAuto"></mg-ajax>
<vn-vertical pad-medium>
<vn-vertical>
<vn-card pad-large>
<vn-vertical>
<vn-title>Recovery</vn-title>

View File

@ -1,4 +1,4 @@
<vn-vertical vn-one pad-medium>
<vn-vertical vn-one>
<vn-card class="summary">
<vn-vertical pad-medium>
<vn-auto>

View File

@ -5,7 +5,7 @@
data="$ctrl.account"
form="form">
</vn-watcher>
<form name="form" ng-submit="watcher.submit()" pad-medium>
<form name="form" ng-submit="watcher.submit()">
<vn-card pad-large>
<vn-title>Web access</vn-title>
<vn-horizontal>