From 6bfc7f78e19aa1ef4d5cbb5c59632f80c30e6acb Mon Sep 17 00:00:00 2001 From: Alessio Date: Mon, 19 Feb 2024 23:09:59 -0800 Subject: [PATCH] Fix user feed HTMX spinner being underneath the searchbar (looks weird) --- internal/webserver/static/styles.css | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/webserver/static/styles.css b/internal/webserver/static/styles.css index 819a14f..37fa197 100644 --- a/internal/webserver/static/styles.css +++ b/internal/webserver/static/styles.css @@ -96,6 +96,7 @@ ul.inline-dotted-list li:last-child:after { } .htmx-spinner-container { display: none; + z-index: 2; /* On top of the search bar, which is z-index of 1 */ } .htmx-request > .htmx-spinner-container { display: revert;