hide close button for loading modal.

This commit is contained in:
Saman Bemel-Benrud
2013-03-21 18:36:19 -04:00
parent 5fdb7069c1
commit fe1f08cf8a
2 changed files with 9 additions and 1 deletions
+7 -1
View File
@@ -272,7 +272,9 @@ ul.link-list li:last-child {
.fr { float: right;}
div.hide,
form.hide {
form.hide,
button.hide,
a.hide {
display: none;
}
@@ -1674,6 +1676,10 @@ div.typeahead a:first-child {
border-bottom: 1px solid #CCC;
}
.modal-section:last-child {
border-bottom: 0;
}
.modal-flash .content {
box-shadow: none;
border-radius: 4px;
+2
View File
@@ -8,5 +8,7 @@ iD.ui.loading = function(selection, message, blocking) {
loadertext.append('img').attr('class','loader').attr('src', 'img/loader.gif');
loadertext.append('h3').text(message || '');
modal.select('button.close').attr('class','hide');
return modal;
};