summaryrefslogtreecommitdiffstats
path: root/public/src/app/rule-engine/confirm-popup/confirm-popup.component.html
blob: 837e0f8035456127a42d156f4ccb069f73d428d3 (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
<div class="container-popup" data-tests-id="delete-popup">
  <div class="header">
    <div style="display: flex; width:100%;">
      <span style="color: #CF2A2A;
        padding-right: 15px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;" [innerHTML]="'x-circle' | feather:28"></span>
      <span style="font-family: 'Open Sans', sans-serif;
      font-size: 24px; width: 100%;">
        Delete
      </span>
      <span style="
        height: 100%;
        display: flex;
        color:rgb(90, 90, 90);
        justify-content: center;
        align-items: center;" [innerHTML]="'x' | feather:20" (click)="close(false)"></span>
    </div>
  </div>
  <div class="content" style="padding: 0 0 20px 50px; font-family: 'Open Sans', sans-serif; font-size: 14px;">
    Are you sure you want to delete?
  </div>
  <div class="buttons">

    <button mat-raised-button color="primary" style="background-color: #CF2A2A; margin-right: 10px; font-size: 14px; font-family: 'Open Sans', sans-serif; height: 36px; color:white;"
      (click)="close(true)" data-tests-id="btnDelete">
      DELETE
    </button>
    <button mat-raised-button class="btn-secondry" style="border-color: #CF2A2A !important; color:#CF2A2A !important; font-size: 14px; font-family: 'Open Sans', sans-serif;text-align: center; height: 36px;"
      (click)="close(false)" data-tests-id="btnCancel">
      CANCEL
    </button>
  </div>
</div>