Prevent inner form throbbers when parent element is working.

This keeps the copy and rename form throbbers from showing when an
operation is in progress on their parent form.
This commit is contained in:
Max Goodman
2013-07-18 22:19:15 -07:00
parent 570724107b
commit 843e968052

View File

@@ -5181,6 +5181,11 @@ table.calendar {
.throbber {
height: 22px;
display: none;
}
&.working .throbber {
display: inline-block;
}
}