Add highlight on QR change, add selected address below the QR

This commit is contained in:
Yemel Jardi 2014-06-11 17:49:14 -03:00
commit e5f798d5ed
3 changed files with 40 additions and 2 deletions

View file

@ -478,6 +478,32 @@ a.loading {
vertical-align:middle
}
@-webkit-keyframes yellow-flash {
0% {
background-color: #FFFFE0;
opacity:1;
}
22% {
background-color: #FFFFE0;
}
100% {
background-color: none;
}
}
.highlight{
-webkit-animation-name: yellow-flash;
-webkit-animation-duration: 400ms;
-webkit-animation-iteration-count: 1;
-webkit-animation-timing-function: linear;
-moz-animation-name: yellow-flash;
-moz-animation-duration: 400ms;
-moz-animation-iteration-count: 1;
-moz-animation-timing-function: linear;
}
/* notifications */
.dr-notification-container {