Replaced actual gif loading for css3 animation used on signing process.

This commit is contained in:
Gustavo Cortez 2014-05-08 12:25:35 -03:00
parent 7f79f3e511
commit afceeffd03
3 changed files with 6 additions and 2 deletions

View File

@ -288,10 +288,14 @@ hr { margin: 2.25rem 0;}
}
.online {
background-color: black;
border: 3px solid green;
border: 3px solid #1ABC9C;
}
.online:hover {
border-color: #16A085;
}
.offline {
border: 3px solid gray;
opacity: 0.4;
}
.tx-copayers {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 529 B

View File

@ -72,7 +72,7 @@ angular.module('copay.directives')
var text = attr.loading;
scope.$watch('loading', function(val) {
if (val) {
element.html('<img src="img/loading.gif"> ' + text + '...');
element.html('<i class="size-21 fi-bitcoin-circle icon-rotate spinner"></i> ' + text + '...');
} else {
element.html(a);
}