Skip to content

Commit b4f4ad9

Browse files
committed
Fix missing closing > on Stimulus controller div and whale color
The opening div tag for the Stimulus controller was missing its closing >, preventing the controller from connecting. This caused the whale animation, elapsed timer, and progress bar to not work. Also add !important to whale colors to override dark theme.
1 parent 0163344 commit b4f4ad9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

templates/admin/update_manager/docker_progress.html.twig

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
}
1515
.docker-whale {
1616
font-size: 3rem;
17-
color: #0db7ed;
17+
color: #0db7ed !important;
1818
animation: whale-bob 2s ease-in-out infinite;
1919
display: inline-block;
2020
}
2121
.docker-whale.success {
22-
color: #198754;
22+
color: #198754 !important;
2323
animation: whale-arrive 0.6s ease-out forwards;
2424
}
2525
.docker-whale.timeout {
@@ -95,7 +95,7 @@
9595
data-docker-update-progress-text-timeout-value="{% trans %}update_manager.docker.timeout_title{% endtrans %}"
9696
data-docker-update-progress-text-timeout-detail-value="{% trans %}update_manager.docker.timeout_message{% endtrans %}"
9797
data-docker-update-progress-text-step-pull-value="{% trans %}update_manager.docker.step_pull{% endtrans %}"
98-
data-docker-update-progress-text-step-restart-value="{% trans %}update_manager.docker.step_restart{% endtrans %}"
98+
data-docker-update-progress-text-step-restart-value="{% trans %}update_manager.docker.step_restart{% endtrans %}">
9999

100100
{# Progress Header #}
101101
<div class="text-center mb-4">

0 commit comments

Comments
 (0)