Theme the AHAH progress animation
Having a hard time to catch the Drupal AHAH animation in Firebug? This is how it looks like. Add it after your button in Edit, and now you can style it.
<?php
<input type="submit" name="op" value="Go" class="form-submit ahah-processed progress-disabled" id="edit-go">
<div class="ahah-progress ahah-progress-throbber" style="display: block;">
<div class="throbber"> </div>
</div>
?>
.ahah-progress {
float: left;
}
.ahah-progress .throbber {
background: url("../../misc/throbber.gif") no-repeat scroll 0 -18px transparent;
float: left;
height: 15px;
margin: 2px;
width: 15px;
}
//adds to the input object
.progress-disabled {
float: left;
}Knowledge keywords:
