diff --git a/lwsadmin/lws/static/main.css b/lwsadmin/lws/static/main.css index 4ac36de..18190fd 100644 --- a/lwsadmin/lws/static/main.css +++ b/lwsadmin/lws/static/main.css @@ -29,11 +29,11 @@ input { display: none !important; } -.htmx-request .indicator{ +.indicator .htmx-request{ display:inline; } -.htmx-request.indicator{ +.indicator.htmx-request{ display:inline; } @@ -41,12 +41,16 @@ input { text-decoration: underline dotted; } -#show_wallets { - animation-name: example; - animation-duration: 4s; +.showFade { + animation-name: render; + animation-duration: .5s; } -@keyframes example { - from {background-color: red;} - to {background-color: yellow;} +@keyframes render { + from { + opacity: 0; + } + to { + opacity: 1; + } } \ No newline at end of file diff --git a/lwsadmin/lws/templates/index.html b/lwsadmin/lws/templates/index.html index 03fcac2..aa27159 100644 --- a/lwsadmin/lws/templates/index.html +++ b/lwsadmin/lws/templates/index.html @@ -14,11 +14,24 @@

Accounts

-
+
Refresh - +
-
+
+ + {% endblock %}