File tree Expand file tree Collapse file tree 3 files changed +31
-5
lines changed
app/account-transfers/list-standing-instructions Expand file tree Collapse file tree 3 files changed +31
-5
lines changed Original file line number Diff line number Diff line change 1+ <!-- Version 1 -->
2+
13< mat-card class ="container ">
24 < div class ="layout-row-wrap gap-2px responsive-column ">
35 < div class ="flex-fill " *ngIf ="isFromClient ">
46 < span class ="flex-40 ">
57 < h3 class ="mat-h3 "> {{ 'labels.heading.Client Type' | translate }}</ h3 >
68 </ span >
7- < span class ="flex-60 ">
9+ < span class ="client-Name ">
810 < h3 class ="mat-h3 "> {{ clientName }}</ h3 >
911 </ span >
1012 </ div >
@@ -20,7 +22,7 @@ <h3 class="mat-h3">{{ clientName }}</h3>
2022
2123 < mat-divider [inset] ="true "> </ mat-divider >
2224
23- < mat-form-field class ="flex-30 ">
25+ < mat-form-field class ="type-field ">
2426 < mat-label > {{ 'labels.inputs.Type' | translate }}</ mat-label >
2527 < mat-select [formControl] ="transferType ">
2628 < mat-option *ngFor ="let transferTypeData of transferTypeDatas " [value] ="transferTypeData.id ">
@@ -29,7 +31,7 @@ <h3 class="mat-h3">{{ clientName }}</h3>
2931 </ mat-select >
3032 </ mat-form-field >
3133
32- < mat-form-field class ="flex-30 ">
34+ < mat-form-field class ="account-Id-field ">
3335 < input matInput placeholder ="From Account Id " [formControl] ="fromAccountId " />
3436 </ mat-form-field >
3537
@@ -40,7 +42,7 @@ <h3 class="mat-h3">{{ clientName }}</h3>
4042 (click) ="filterStandingInstructions() "
4143 class ="filter-button "
4244 >
43- {{ 'labels.buttons.Filter' | translate }}
45+ {{ 'labels.buttons.Filter' | translate | titlecase }}
4446 </ button >
4547 </ div >
4648
Original file line number Diff line number Diff line change 1+ // Version 1
2+
13.container {
24 .filter-button {
35 height : 2.5rem ;
4- margin-top : 1 rem ;
6+ margin-top : 2 rem ;
57 }
68}
79
Original file line number Diff line number Diff line change 1+ // Version 1
2+
13/*
24 * Entry point of global application style.
35 * Component-specific style should not go here and be included directly as part of the components.
@@ -611,3 +613,23 @@ mifosx-notifications-page td {
611613 justify-content : flex-start ;
612614 width : 100% ;
613615}
616+
617+ // Re-positions account type field on list standing instructions page
618+ .type-field {
619+ position : absolute ;
620+ left : 1px ;
621+ top : 20px ;
622+ }
623+
624+ // Re-positions account id field on list standing instructions page
625+ .account-Id-field {
626+ position : absolute ;
627+ left : 490px ;
628+ top : 20px ;
629+ }
630+
631+ // Re-positions client name label on list standing instructions page
632+ .client-Name {
633+ position : absolute ;
634+ left : 490px ;
635+ }
You can’t perform that action at this time.
0 commit comments