Replaced actual gif loading for css3 animation used on signing process.
This commit is contained in:
parent
7f79f3e511
commit
afceeffd03
3 changed files with 6 additions and 2 deletions
|
|
@ -288,10 +288,14 @@ hr { margin: 2.25rem 0;}
|
||||||
}
|
}
|
||||||
.online {
|
.online {
|
||||||
background-color: black;
|
background-color: black;
|
||||||
border: 3px solid green;
|
border: 3px solid #1ABC9C;
|
||||||
|
}
|
||||||
|
.online:hover {
|
||||||
|
border-color: #16A085;
|
||||||
}
|
}
|
||||||
.offline {
|
.offline {
|
||||||
border: 3px solid gray;
|
border: 3px solid gray;
|
||||||
|
opacity: 0.4;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tx-copayers {
|
.tx-copayers {
|
||||||
|
|
|
||||||
BIN
img/loading.gif
BIN
img/loading.gif
Binary file not shown.
|
Before Width: | Height: | Size: 529 B |
|
|
@ -72,7 +72,7 @@ angular.module('copay.directives')
|
||||||
var text = attr.loading;
|
var text = attr.loading;
|
||||||
scope.$watch('loading', function(val) {
|
scope.$watch('loading', function(val) {
|
||||||
if (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 {
|
} else {
|
||||||
element.html(a);
|
element.html(a);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue