[BS5] make container status more visible

This commit is contained in:
FreddleSpl0it 2022-06-24 15:55:52 +02:00
parent 052959f435
commit 2fec7ccd58
4 changed files with 33 additions and 1 deletions

View File

@ -121,6 +121,21 @@
transform: rotate(359deg); transform: rotate(359deg);
} }
} }
@keyframes blink {
50% {
color: transparent
}
}
.loader-dot {
animation: 1s blink infinite
}
.loader-dot:nth-child(2) {
animation-delay: 250ms
}
.loader-dot:nth-child(3) {
animation-delay: 500ms
}
pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;} pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word;}
/* Fix modal moving content left */ /* Fix modal moving content left */
body.modal-open { body.modal-open {

View File

@ -492,6 +492,8 @@
"debug": { "debug": {
"chart_this_server": "Chart (dieser Server)", "chart_this_server": "Chart (dieser Server)",
"containers_info": "Container-Information", "containers_info": "Container-Information",
"container_running": "Läuft",
"container_stopped": "Angehalten",
"disk_usage": "Festplattennutzung", "disk_usage": "Festplattennutzung",
"docs": "Dokumente", "docs": "Dokumente",
"external_logs": "Externe Logs", "external_logs": "Externe Logs",

View File

@ -492,6 +492,8 @@
"debug": { "debug": {
"chart_this_server": "Chart (this server)", "chart_this_server": "Chart (this server)",
"containers_info": "Container information", "containers_info": "Container information",
"container_running": "Running",
"container_stopped": "Stopped",
"disk_usage": "Disk usage", "disk_usage": "Disk usage",
"docs": "Docs", "docs": "Docs",
"external_logs": "External logs", "external_logs": "External logs",

View File

@ -89,9 +89,22 @@
<span>{{ container }}</span> <span>{{ container }}</span>
<span class="d-block d-md-inline">({{ container_info.Config.Image }})</span> <span class="d-block d-md-inline">({{ container_info.Config.Image }})</span>
<small class="d-block">({{ lang.debug.started_on }} <span class="parse_date">{{ container_info.State.StartedAtHR }}</span>)</small> <small class="d-block">({{ lang.debug.started_on }} <span class="parse_date">{{ container_info.State.StartedAtHR }}</span>)</small>
{% if container_info.State.Running == 1 %}
<span class="badge fs-7 bg-success loader" style="min-width:100px">
{{ lang.debug.container_running }}
<span class="loader-dot">.</span>
<span class="loader-dot">.</span>
<span class="loader-dot">.</span>
</span>
{% elseif container_info.State %}
<span class="badge fs-7 bg-danger" style="min-width:100px">
{{ lang.debug.container_stopped }}
<i class="bi-x ms-1"></i>
</span>
{% endif %}
</div> </div>
<a href data-bs-toggle="modal" data-container="{{ container }}" data-bs-target="#RestartContainer" class="ms-auto btn btn-xs btn-secondary d-flex align-items-center">{{ lang.debug.restart_container }} <a href data-bs-toggle="modal" data-container="{{ container }}" data-bs-target="#RestartContainer" class="ms-auto btn btn-xs btn-secondary d-flex align-items-center">{{ lang.debug.restart_container }}
<i class="ms-auto bi <i class="ms-1 bi
{% if container_info.State.Running == 1 %} {% if container_info.State.Running == 1 %}
bi-record-fill text-success bi-record-fill text-success
{% elseif container_info.State %} {% elseif container_info.State %}