From 53d5d457384de456a36e4a0a9eb03ecaecb1b193 Mon Sep 17 00:00:00 2001 From: stitch Date: Mon, 12 Aug 2024 12:54:00 +0300 Subject: [PATCH] added hour glass icon with animation loop for the next person to sign (in dashboard and in in-progress) --- assets/css/dashboard.css | 13 +++++++++++++ dashboard-progress.html | 7 ++++++- dashboard.html | 7 ++++++- 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/assets/css/dashboard.css b/assets/css/dashboard.css index a75340f..9c21021 100644 --- a/assets/css/dashboard.css +++ b/assets/css/dashboard.css @@ -345,3 +345,16 @@ left: 0; } +@keyframes statusWaitingSig { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} + +.secMainBodySecInside_DashboardSecMidCardsWrapLinkMidUserStatusWaiting { + animation: statusWaitingSig 5s linear infinite; +} + diff --git a/dashboard-progress.html b/dashboard-progress.html index c689f87..06f7aac 100644 --- a/dashboard-progress.html +++ b/dashboard-progress.html @@ -363,7 +363,12 @@ - + +
+ + +
+
diff --git a/dashboard.html b/dashboard.html index e777a40..96e4f8e 100644 --- a/dashboard.html +++ b/dashboard.html @@ -162,7 +162,12 @@
- + +
+ + +
+

20