blob: 121a5802705fb3b9a33f933c3b373c94097be2c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
<p-dialog [style]="{'border-top-color':'#ffb81c'}" [closable]="false" [(visible)]="store.displaySDCDialog" modal="modal"
styleClass="dcae-notify" width="500" [responsive]="true" data-tests-id="sdc-dialog">
<p-header>
<div style="display: flex;">
<span style="color: #ffb81c;
padding-right: 15px;
height: 100%;
display: flex;
justify-content: center;
align-items: center;" [innerHTML]="'alert-triangle' | feather:28"></span>
<span style="font-family: 'Open Sans', sans-serif;
font-size: 24px; width: 100%;">
Exit from DCAE-DS
</span>
<span style="
height: 100%;
display: flex;
justify-content: center;
color:rgb(90, 90, 90);
align-items: center;" [innerHTML]="'x' | feather:20
" (click)="closeforChange()"></span>
</div>
</p-header>
<div style="padding: 0 0 20px 43px; font-family: 'Open Sans', sans-serif;
font-size: 14px;">
Do you want to save?
</div>
<p-footer>
<button mat-raised-button color="primary" style="background-color: #FFB81C; margin-right: 10px; font-size: 14px; font-family: 'Open Sans', sans-serif; height: 36px;"
(click)="closeDialog()" data-tests-id="error-cancel">
SAVE
</button>
<button mat-raised-button class="btn-secondry" style="border-color: #FFB81C !important; color:#FFB81C !important; font-size: 14px; font-family: 'Open Sans', sans-serif;text-align: center; height: 36px;"
(click)="closeforChange()" data-tests-id="error-cancel">
DISCARD
</button>
</p-footer>
</p-dialog>
|