Add missing loading indicator throbbers.

This commit is contained in:
Max Goodman
2013-06-13 01:29:21 -07:00
parent 91e4c6742d
commit 44349ec2f2
2 changed files with 6 additions and 0 deletions

View File

@@ -5176,6 +5176,10 @@ table.calendar {
.light-button;
padding: 3px 4px;
}
.throbber {
height: 22px;
}
}
form.copy-multi button {

View File

@@ -56,6 +56,7 @@
%if thing.can_copy:
<form class="copy-multi">
<input type="text" class="multi-name" placeholder="${_('copy name')}"><button class="copy">${_('copy')} &rsaquo;</button>
<div class="throbber"></div>
<div class="error copy-error"></div>
</form>
%endif
@@ -64,6 +65,7 @@
<form class="rename-multi">
<p class="warning">${_('warning: renaming a multi will break any links and references to the old name.')}</p>
<input type="text" class="multi-name" placeholder="${_('new name')}"><button class="rename">${_('rename')} &rsaquo;</button>
<div class="throbber"></div>
<div class="error rename-error"></div>
</form>
%endif