tweaks to loader.

This commit is contained in:
Saman Bemel-Benrud
2012-12-20 11:02:54 -05:00
parent 8b41671590
commit bb6406eaf8
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -762,6 +762,8 @@ div.typeahead a:first-child {
z-index: 3;
}
.modal .loader { margin-bottom: 10px;}
.modal .content {
padding: 10px;
margin-bottom: 40px;
+1 -1
View File
@@ -4,7 +4,7 @@ iD.loading = function(message) {
var loadertext = modal.select('.content')
.classed('loading-modal', true)
.append('div').classed('pad1',true);
loadertext.append('img').attr('class','icon big').attr('src', '../img/loader.gif');
loadertext.append('img').attr('class','loader').attr('src', '../img/loader.gif');
loadertext.append('h3').text(message || '');
return modal;