mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-20 10:34:30 +00:00
tor: Minor style changes to template
This commit is contained in:
parent
f27615c748
commit
438d5850f2
@ -26,14 +26,15 @@
|
|||||||
{% if config_running %}
|
{% if config_running %}
|
||||||
<meta http-equiv="refresh" content="3" />
|
<meta http-equiv="refresh" content="3" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
.loader {
|
.loader {
|
||||||
border: 16px solid #f3f3f3; /* Light grey */
|
border: 16px solid #f3f3f3; /* Light grey */
|
||||||
border-top: 16px solid #3498db; /* Blue */
|
border-top: 16px solid #3498db; /* Blue */
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
width: 120px;
|
width: 80px;
|
||||||
height: 120px;
|
height: 80px;
|
||||||
animation: spin 2s linear infinite;
|
animation: spin 1s linear infinite;
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes spin {
|
@keyframes spin {
|
||||||
@ -41,13 +42,14 @@
|
|||||||
100% { transform: rotate(360deg); }
|
100% { transform: rotate(360deg); }
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
|
|
||||||
{% block configuration %}
|
{% block configuration %}
|
||||||
|
|
||||||
|
|
||||||
<h3>{% trans "Status" %}</h3>
|
<h3>{% trans "Status" %}</h3>
|
||||||
|
|
||||||
{% if config_running %}
|
{% if config_running %}
|
||||||
|
|
||||||
<p class="running-status-parent">
|
<p class="running-status-parent">
|
||||||
@ -55,8 +57,8 @@
|
|||||||
{% trans "Tor configuration is being updated" %}
|
{% trans "Tor configuration is being updated" %}
|
||||||
</p>
|
</p>
|
||||||
<div class="loader"></div>
|
<div class="loader"></div>
|
||||||
{% else %}
|
|
||||||
|
|
||||||
|
{% else %}
|
||||||
|
|
||||||
<p class="running-status-parent">
|
<p class="running-status-parent">
|
||||||
{% if status.is_running %}
|
{% if status.is_running %}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user