Change size of control.
This commit is contained in:
parent
6fbf56bab0
commit
4bba9ba595
@ -40,7 +40,10 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
<tr id="{{ account.id }}" class="form-inline" ng-class="rowClass(account)" ng-repeat="account in accounts">
|
<tr id="{{ account.id }}" class="form-inline" ng-class="rowClass(account)" ng-repeat="account in accounts">
|
||||||
<td>
|
<td>
|
||||||
<span editable-text="account.name" e-placeholder="Nom du compte" e-name="name" e-form="rowform" e-required>
|
<span editable-text="account.name"
|
||||||
|
e-placeholder="Nom du compte"
|
||||||
|
e-style="width: 100%"
|
||||||
|
e-name="name" e-form="rowform" e-required>
|
||||||
<a href="account/{{ account.id }}/entries">{{ account.name }}</a>
|
<a href="account/{{ account.id }}/entries">{{ account.name }}</a>
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
@ -58,7 +61,10 @@
|
|||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
<span editable-number="account.authorized_overdraft" e-max="0" e-name="authorized_overdraft" e-form="rowform">
|
<span editable-number="account.authorized_overdraft"
|
||||||
|
e-max="0"
|
||||||
|
e-style="width: 100%"
|
||||||
|
e-name="authorized_overdraft" e-form="rowform">
|
||||||
{{ account.authorized_overdraft }}
|
{{ account.authorized_overdraft }}
|
||||||
</span>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
|
Loading…
Reference in New Issue
Block a user