diff --git a/application/views/lotw_views/index.php b/application/views/lotw_views/index.php index 994514be1..a268fae36 100644 --- a/application/views/lotw_views/index.php +++ b/application/views/lotw_views/index.php @@ -139,9 +139,10 @@
".__("The next automatic sync with LoTW will happen at: ").$next_run."

"; } ?> - +
diff --git a/assets/css/general.css b/assets/css/general.css index 364faee4e..589c15720 100644 --- a/assets/css/general.css +++ b/assets/css/general.css @@ -1206,4 +1206,19 @@ svg text.month { fill: #AAA; } display: flex; align-items: center; /* Vertically aligns the flag and callsign */ gap: 0.5em; /* Adds space between the flag and callsign */ -} \ No newline at end of file +} + +.htmx-indicator { + opacity: 0; + animation: blinker 2s linear infinite; +} + +.htmx-request.htmx-indicator { + opacity: 1; +} + +@keyframes blinker { + 50% { + opacity: 0; + } +}