fix(#491): add spinners for geocoding actions and adjust padding (#555)

This commit is contained in:
Daniel Graf
2025-12-16 13:47:00 +01:00
committed by GitHub
parent 137a8e8d82
commit b05955500f
2 changed files with 9 additions and 6 deletions

View File

@@ -527,8 +527,8 @@ tr:hover {
font-family: var(--serif-font);
line-height: 1.5;
font-weight: 400;
padding-top: 48px;
padding-bottom: 110px;
padding-top: 64px;
padding-bottom: 140px;
transition: opacity 0.3s ease;
}

View File

@@ -141,8 +141,10 @@
hx-target="#geocode-services"
hx-swap="innerHTML"
th:attr="hx-confirm=#{geocoding.run.confirm}"
th:text="#{geocoding.run.button}">
Start Geocoding
hx-indicator="#run-geocode-spinner">
<span class="button-text" th:text="#{geocoding.run.button}">Start Geocoding</span>
<span id="run-geocode-spinner" class="htmx-indicator"><i class="lni lni-is-spinning lni-spinner-2-sacle"></i></span>
</button>
</div>
<div class="action-card">
@@ -157,8 +159,9 @@
hx-target="#geocode-services"
hx-swap="innerHTML"
th:attr="hx-confirm=#{geocoding.clear.confirm}"
th:text="#{geocoding.clear.button}">
Clear and Re-geocode
hx-indicator="#clear-re-geocode-spinner">
<span class="button-text" th:text="#{geocoding.clear.button}">Clear and Re-geocode</span>
<span id="clear-re-geocode-spinner" class="htmx-indicator"><i class="lni lni-is-spinning lni-spinner-2-sacle"></i></span>
</button>
</div>
</div>