Complete flow of confirmation popup before send a tx

This commit is contained in:
Gustavo Maximiliano Cortez 2016-01-27 16:41:12 -03:00
commit df834c50c3
12 changed files with 203 additions and 98 deletions

View file

@ -1373,9 +1373,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%;
@ -1386,7 +1407,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%;
@ -1395,12 +1415,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;
}