fix: add x icon to cancel button and saving spinner to edit forms
Replace both buttons with a centered "Saving..." spinner when the form is submitting. Add x_mark icon to the cancel button for clarity.
This commit is contained in:
parent
0434b127e0
commit
8ced58039b
7 changed files with 77 additions and 63 deletions
|
|
@ -82,24 +82,26 @@
|
|||
class="text-sm text-error"
|
||||
role="alert"
|
||||
></p>
|
||||
<div class="flex flex-col gap-2">
|
||||
<div
|
||||
data-show="$_submitting"
|
||||
style="display:none"
|
||||
class="flex items-center justify-center gap-3 py-2 text-sm text-accent"
|
||||
>
|
||||
{{ icons::spinner("h-5 w-5") }} Saving…
|
||||
</div>
|
||||
<div class="flex flex-col gap-2" data-show="!$_submitting">
|
||||
<button
|
||||
type="submit"
|
||||
class="inline-flex w-full items-center justify-center gap-2 rounded-md bg-accent px-4 py-2 text-sm font-semibold text-accent-text transition hover:bg-accent-hover disabled:opacity-50"
|
||||
data-attr:disabled="$_submitting"
|
||||
>
|
||||
<span data-show="$_submitting" style="display:none"
|
||||
>{{ icons::spinner("h-4 w-4") }}</span
|
||||
>
|
||||
<span data-show="!$_submitting">{{ icons::check("h-4 w-4") }}</span>
|
||||
Save Changes
|
||||
{{ icons::check("h-4 w-4") }} Save Changes
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
onclick="history.back()"
|
||||
class="inline-flex w-full items-center justify-center rounded-md border px-4 py-2 text-sm font-medium text-text-secondary transition hover:bg-surface-alt"
|
||||
class="inline-flex w-full items-center justify-center gap-2 rounded-md border px-4 py-2 text-sm font-medium text-text-secondary transition hover:bg-surface-alt"
|
||||
>
|
||||
Cancel
|
||||
{{ icons::x_mark("h-4 w-4") }} Cancel
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
|||
|
|
@ -368,24 +368,26 @@
|
|||
class="text-sm text-error"
|
||||
role="alert"
|
||||
></p>
|
||||
<div class="flex flex-col gap-2">
|
||||
<div
|
||||
data-show="$_submitting"
|
||||
style="display:none"
|
||||
class="flex items-center justify-center gap-3 py-2 text-sm text-accent"
|
||||
>
|
||||
{{ icons::spinner("h-5 w-5") }} Saving…
|
||||
</div>
|
||||
<div class="flex flex-col gap-2" data-show="!$_submitting">
|
||||
<button
|
||||
type="submit"
|
||||
class="inline-flex w-full items-center justify-center gap-2 rounded-md bg-accent px-4 py-2 text-sm font-semibold text-accent-text transition hover:bg-accent-hover disabled:opacity-50"
|
||||
data-attr:disabled="$_submitting"
|
||||
>
|
||||
<span data-show="$_submitting" style="display:none"
|
||||
>{{ icons::spinner("h-4 w-4") }}</span
|
||||
>
|
||||
<span data-show="!$_submitting">{{ icons::check("h-4 w-4") }}</span>
|
||||
Save Changes
|
||||
{{ icons::check("h-4 w-4") }} Save Changes
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
onclick="history.back()"
|
||||
class="inline-flex w-full items-center justify-center rounded-md border px-4 py-2 text-sm font-medium text-text-secondary transition hover:bg-surface-alt"
|
||||
class="inline-flex w-full items-center justify-center gap-2 rounded-md border px-4 py-2 text-sm font-medium text-text-secondary transition hover:bg-surface-alt"
|
||||
>
|
||||
Cancel
|
||||
{{ icons::x_mark("h-4 w-4") }} Cancel
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
|||
|
|
@ -125,24 +125,26 @@
|
|||
class="text-sm text-error"
|
||||
role="alert"
|
||||
></p>
|
||||
<div class="flex flex-col gap-2">
|
||||
<div
|
||||
data-show="$_submitting"
|
||||
style="display:none"
|
||||
class="flex items-center justify-center gap-3 py-2 text-sm text-accent"
|
||||
>
|
||||
{{ icons::spinner("h-5 w-5") }} Saving…
|
||||
</div>
|
||||
<div class="flex flex-col gap-2" data-show="!$_submitting">
|
||||
<button
|
||||
type="submit"
|
||||
class="inline-flex w-full items-center justify-center gap-2 rounded-md bg-accent px-4 py-2 text-sm font-semibold text-accent-text transition hover:bg-accent-hover disabled:opacity-50"
|
||||
data-attr:disabled="$_submitting"
|
||||
>
|
||||
<span data-show="$_submitting" style="display:none"
|
||||
>{{ icons::spinner("h-4 w-4") }}</span
|
||||
>
|
||||
<span data-show="!$_submitting">{{ icons::check("h-4 w-4") }}</span>
|
||||
Save Changes
|
||||
{{ icons::check("h-4 w-4") }} Save Changes
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
onclick="history.back()"
|
||||
class="inline-flex w-full items-center justify-center rounded-md border px-4 py-2 text-sm font-medium text-text-secondary transition hover:bg-surface-alt"
|
||||
class="inline-flex w-full items-center justify-center gap-2 rounded-md border px-4 py-2 text-sm font-medium text-text-secondary transition hover:bg-surface-alt"
|
||||
>
|
||||
Cancel
|
||||
{{ icons::x_mark("h-4 w-4") }} Cancel
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
|||
|
|
@ -79,24 +79,26 @@
|
|||
class="text-sm text-error"
|
||||
role="alert"
|
||||
></p>
|
||||
<div class="flex flex-col gap-2">
|
||||
<div
|
||||
data-show="$_submitting"
|
||||
style="display:none"
|
||||
class="flex items-center justify-center gap-3 py-2 text-sm text-accent"
|
||||
>
|
||||
{{ icons::spinner("h-5 w-5") }} Saving…
|
||||
</div>
|
||||
<div class="flex flex-col gap-2" data-show="!$_submitting">
|
||||
<button
|
||||
type="submit"
|
||||
class="inline-flex w-full items-center justify-center gap-2 rounded-md bg-accent px-4 py-2 text-sm font-semibold text-accent-text transition hover:bg-accent-hover disabled:opacity-50"
|
||||
data-attr:disabled="$_submitting"
|
||||
>
|
||||
<span data-show="$_submitting" style="display:none"
|
||||
>{{ icons::spinner("h-4 w-4") }}</span
|
||||
>
|
||||
<span data-show="!$_submitting">{{ icons::check("h-4 w-4") }}</span>
|
||||
Save Changes
|
||||
{{ icons::check("h-4 w-4") }} Save Changes
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
onclick="history.back()"
|
||||
class="inline-flex w-full items-center justify-center rounded-md border px-4 py-2 text-sm font-medium text-text-secondary transition hover:bg-surface-alt"
|
||||
class="inline-flex w-full items-center justify-center gap-2 rounded-md border px-4 py-2 text-sm font-medium text-text-secondary transition hover:bg-surface-alt"
|
||||
>
|
||||
Cancel
|
||||
{{ icons::x_mark("h-4 w-4") }} Cancel
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
|||
|
|
@ -71,24 +71,26 @@
|
|||
class="text-sm text-error"
|
||||
role="alert"
|
||||
></p>
|
||||
<div class="flex flex-col gap-2">
|
||||
<div
|
||||
data-show="$_submitting"
|
||||
style="display:none"
|
||||
class="flex items-center justify-center gap-3 py-2 text-sm text-accent"
|
||||
>
|
||||
{{ icons::spinner("h-5 w-5") }} Saving…
|
||||
</div>
|
||||
<div class="flex flex-col gap-2" data-show="!$_submitting">
|
||||
<button
|
||||
type="submit"
|
||||
class="inline-flex w-full items-center justify-center gap-2 rounded-md bg-accent px-4 py-2 text-sm font-semibold text-accent-text transition hover:bg-accent-hover disabled:opacity-50"
|
||||
data-attr:disabled="$_submitting"
|
||||
>
|
||||
<span data-show="$_submitting" style="display:none"
|
||||
>{{ icons::spinner("h-4 w-4") }}</span
|
||||
>
|
||||
<span data-show="!$_submitting">{{ icons::check("h-4 w-4") }}</span>
|
||||
Save Changes
|
||||
{{ icons::check("h-4 w-4") }} Save Changes
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
onclick="history.back()"
|
||||
class="inline-flex w-full items-center justify-center rounded-md border px-4 py-2 text-sm font-medium text-text-secondary transition hover:bg-surface-alt"
|
||||
class="inline-flex w-full items-center justify-center gap-2 rounded-md border px-4 py-2 text-sm font-medium text-text-secondary transition hover:bg-surface-alt"
|
||||
>
|
||||
Cancel
|
||||
{{ icons::x_mark("h-4 w-4") }} Cancel
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
|||
|
|
@ -147,24 +147,26 @@
|
|||
class="text-sm text-error"
|
||||
role="alert"
|
||||
></p>
|
||||
<div class="flex flex-col gap-2">
|
||||
<div
|
||||
data-show="$_submitting"
|
||||
style="display:none"
|
||||
class="flex items-center justify-center gap-3 py-2 text-sm text-accent"
|
||||
>
|
||||
{{ icons::spinner("h-5 w-5") }} Saving…
|
||||
</div>
|
||||
<div class="flex flex-col gap-2" data-show="!$_submitting">
|
||||
<button
|
||||
type="submit"
|
||||
class="inline-flex w-full items-center justify-center gap-2 rounded-md bg-accent px-4 py-2 text-sm font-semibold text-accent-text transition hover:bg-accent-hover disabled:opacity-50"
|
||||
data-attr:disabled="$_submitting"
|
||||
>
|
||||
<span data-show="$_submitting" style="display:none"
|
||||
>{{ icons::spinner("h-4 w-4") }}</span
|
||||
>
|
||||
<span data-show="!$_submitting">{{ icons::check("h-4 w-4") }}</span>
|
||||
Save Changes
|
||||
{{ icons::check("h-4 w-4") }} Save Changes
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
onclick="history.back()"
|
||||
class="inline-flex w-full items-center justify-center rounded-md border px-4 py-2 text-sm font-medium text-text-secondary transition hover:bg-surface-alt"
|
||||
class="inline-flex w-full items-center justify-center gap-2 rounded-md border px-4 py-2 text-sm font-medium text-text-secondary transition hover:bg-surface-alt"
|
||||
>
|
||||
Cancel
|
||||
{{ icons::x_mark("h-4 w-4") }} Cancel
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
|||
|
|
@ -89,24 +89,26 @@
|
|||
class="text-sm text-error"
|
||||
role="alert"
|
||||
></p>
|
||||
<div class="flex flex-col gap-2">
|
||||
<div
|
||||
data-show="$_submitting"
|
||||
style="display:none"
|
||||
class="flex items-center justify-center gap-3 py-2 text-sm text-accent"
|
||||
>
|
||||
{{ icons::spinner("h-5 w-5") }} Saving…
|
||||
</div>
|
||||
<div class="flex flex-col gap-2" data-show="!$_submitting">
|
||||
<button
|
||||
type="submit"
|
||||
class="inline-flex w-full items-center justify-center gap-2 rounded-md bg-accent px-4 py-2 text-sm font-semibold text-accent-text transition hover:bg-accent-hover disabled:opacity-50"
|
||||
data-attr:disabled="$_submitting"
|
||||
>
|
||||
<span data-show="$_submitting" style="display:none"
|
||||
>{{ icons::spinner("h-4 w-4") }}</span
|
||||
>
|
||||
<span data-show="!$_submitting">{{ icons::check("h-4 w-4") }}</span>
|
||||
Save Changes
|
||||
{{ icons::check("h-4 w-4") }} Save Changes
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
onclick="history.back()"
|
||||
class="inline-flex w-full items-center justify-center rounded-md border px-4 py-2 text-sm font-medium text-text-secondary transition hover:bg-surface-alt"
|
||||
class="inline-flex w-full items-center justify-center gap-2 rounded-md border px-4 py-2 text-sm font-medium text-text-secondary transition hover:bg-surface-alt"
|
||||
>
|
||||
Cancel
|
||||
{{ icons::x_mark("h-4 w-4") }} Cancel
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
|||
Loading…
Reference in a new issue