Skip to content
Snippets Groups Projects

Resolve "Design new layout for buttons and apply wherever required to be consistent"

43 files
+ 163
126
Compare changes
  • Side-by-side
  • Inline
Files
43
@@ -68,12 +68,12 @@
@@ -68,12 +68,12 @@
[(ngModel)]="configuration.appInstanceFailureEmailList[i]"/>
[(ngModel)]="configuration.appInstanceFailureEmailList[i]"/>
</div>
</div>
<button role="button" type="button" class="btn btn-default" (click)="removeEmailEntry(email)">
<button role="button" type="button" class="btn btn-danger" (click)="removeEmailEntry(email)">
Remove
Remove
</button>
</button>
</div>
</div>
<div class="pd-left-15">
<div class="pd-left-15">
<button role="button" type="button" class="btn btn-success" (click)="addEmailEntry()">Add
<button role="button" type="button" class="btn btn-secondary" (click)="addEmailEntry()">Add
</button>
</button>
</div>
</div>
</div>
</div>
@@ -107,9 +107,11 @@
@@ -107,9 +107,11 @@
[checked]="this.configuration.bulkDomainsSendEmailForNewAccounts === true">
[checked]="this.configuration.bulkDomainsSendEmailForNewAccounts === true">
</div>
</div>
</div>
</div>
 
<div class="flex justify-content-end">
 
<button class="btn btn-primary"
 
type="submit">{{ 'PORTAL_CONFIGURATION.SUBMIT_BUTTON' | translate }}</button>
 
</div>
<button class="btn btn-primary"
type="submit">{{ 'PORTAL_CONFIGURATION.SUBMIT_BUTTON' | translate }}</button>
<div class="alert alert-danger" style="margin-top: 5px" *ngIf="errorMsg">
<div class="alert alert-danger" style="margin-top: 5px" *ngIf="errorMsg">
{{errorMsg}}
{{errorMsg}}
</div>
</div>
Loading