-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update migrate page to stream results correctly under php-fpm, make a…
… nice loader and style
- Loading branch information
Nicolás
committed
Oct 5, 2023
1 parent
b916597
commit f0797dc
Showing
3 changed files
with
27 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
<table class="tabForm" style="font-size: 16px;" cellspacing="0" cellpadding="0" width="100%"> | ||
<tr><td align="left" colspan="2"><b>{php}echo _tr('Progress');{/php}</b></td></tr> | ||
<tr><td align="left" colspan="2"><div class='hr-line'></div></td></tr> | ||
</table> | ||
<div style='font-family: "Lucida Console", Monaco, monospace;'> | ||
<iframe name="ifm" id="ifm" frameborder=0 width="100%" height="500px" marginheight=0 marginwidth=0 scrolling=yes src={$frame_url}></iframe> | ||
<div class='box'> | ||
<div style='display:flex; align-items:center; gap:1em;'> | ||
<div><h2>{php}echo _tr('Progress');{/php}</h2></div> | ||
<div id='loader'><i class="fa fa-spinner fa-spin" style='font-size:2.5em; color: orange;'></i></div> | ||
<div class="checkwrapper" id="check"><svg class="checkmark" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52 52"> <circle class="checkmark__circle" cx="26" cy="26" r="25" fill="none"/> <path class="checkmark__check" fill="none" d="M14.1 27.2l7.1 7.2 16.7-16.8"/></svg></div> | ||
</div> | ||
<div style='padding-top:2em;'> | ||
<iframe name="ifm" id="myframe" frameborder=0 width="100%" height="500px" marginheight=0 marginwidth=0 scrolling=yes src={$frame_url}></iframe> | ||
</div> | ||
</div> | ||
</div> | ||
<script> | ||
pepe = setInterval('frames[0].scrollTo(0,9999999)',1000); | ||
</script> |