10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-03 09:56:08 +02:00

Add a progress and a text and put it in a shortcode

This commit is contained in:
Mickaël Véril 2019-10-07 14:00:15 +02:00
parent 83d814536d
commit e2e73eecbd
4 changed files with 16 additions and 2 deletions

View File

@ -328,4 +328,4 @@ draft: false
<div id="graph_div"></div>
</table>
</div>
<div class="modal"></div>
{{< waitModal >}}

View File

@ -200,4 +200,4 @@ draft: false
</table>
</div>
</p>
<div class="modal"></div>
{{< waitModal >}}

View File

@ -0,0 +1,7 @@
<div class="modal">
<div class="content">
<span>Please Wait…</span>
<br/>
<progress></progress>
</div>
</div>

View File

@ -27,4 +27,11 @@ body.loading .modal {
body.loading .modal {
display: block;
cursor: wait
}
.modal .content {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}