We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfe5f55 commit 1fe13d0Copy full SHA for 1fe13d0
internal/app/action/astatic/json.css
@@ -119,4 +119,12 @@
119
.htmx-indicator {
120
opacity: 0;
121
transition: opacity 200ms ease-in;
122
+}
123
+
124
+#ActionMessage {
125
+ transition: filter 80ms ease-in-out;
126
127
128
+#ActionMessage.htmx-swapping {
129
+ filter: blur(5px); /* Apply blur effect */
130
}
internal/app/action/form.go.html
@@ -76,7 +76,7 @@
76
type="submit"
77
hx-post="{{ .path }}"
78
hx-target="#ActionMessage"
79
- hx-swap="innerHTML"
+ hx-swap="innerHTML swap:80ms transform:out 30ms, transform:in 50ms"
80
hx-indicator="#ActionIndicator"
81
class="btn btn-primary w-full">
82
Run
0 commit comments