Merge pull request #3795 from cmgustavo/feat/send-confirmation-popup
Send confirmation popup
This commit is contained in:
commit
bcde97727e
14 changed files with 237 additions and 84 deletions
|
|
@ -1374,9 +1374,30 @@ input.ng-invalid-match, input.ng-invalid-match:focus {
|
|||
}
|
||||
}
|
||||
|
||||
/* Confirmation popup */
|
||||
|
||||
.confirmTxModal {
|
||||
background: white;
|
||||
border-radius: 5px;
|
||||
position: absolute;
|
||||
width: 90%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
margin: 15% auto;
|
||||
z-index: 1100;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.confirmHead {
|
||||
padding: 10px;
|
||||
border-top-left-radius: 5px;
|
||||
border-top-right-radius: 5px;
|
||||
}
|
||||
|
||||
/*******************/
|
||||
|
||||
.alertModal {
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.50);
|
||||
border-radius: 5px;
|
||||
position: absolute;
|
||||
width: 90%;
|
||||
|
|
@ -1387,7 +1408,6 @@ input.ng-invalid-match, input.ng-invalid-match:focus {
|
|||
|
||||
.passModal {
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.50);
|
||||
border-radius: 5px;
|
||||
position: absolute;
|
||||
width: 90%;
|
||||
|
|
@ -1396,12 +1416,12 @@ input.ng-invalid-match, input.ng-invalid-match:focus {
|
|||
z-index: 1100;
|
||||
}
|
||||
|
||||
.passModalMask {
|
||||
.modalMask {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1099;
|
||||
opacity:0.3;
|
||||
opacity:0.8;
|
||||
background: black;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue