Skip to content

Commit 62e0ee0

Browse files
authored
Merge pull request #2566 from mjpugh811/web-211-v1
Resolution to Web-211, single commit etc.
2 parents 942fb46 + 38408ac commit 62e0ee0

File tree

3 files changed

+31
-5
lines changed

3 files changed

+31
-5
lines changed

src/app/account-transfers/list-standing-instructions/list-standing-instructions.component.html

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
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-
&nbsp;&nbsp;{{ 'labels.buttons.Filter' | translate }}
45+
{{ 'labels.buttons.Filter' | translate | titlecase }}
4446
</button>
4547
</div>
4648

src/app/account-transfers/list-standing-instructions/list-standing-instructions.component.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
// Version 1
2+
13
.container {
24
.filter-button {
35
height: 2.5rem;
4-
margin-top: 1rem;
6+
margin-top: 2rem;
57
}
68
}
79

src/main.scss

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
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+
}

0 commit comments

Comments
 (0)