Update activity tracking

This commit is contained in:
DariusIII
2025-10-28 11:19:47 +01:00
parent e2afa6ed9e
commit f12f554234
9 changed files with 371 additions and 495 deletions
+32 -1
View File
@@ -1,12 +1,43 @@
/* Admin Dashboard - Recent Activity Styles */
.activity-item {
transition: background-color 0.2s ease-in-out;
transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.activity-item:hover {
transform: translateX(2px);
}
/* Activity refresh animation */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.activity-item {
animation: fadeIn 0.3s ease-in-out;
}
/* Recent activity loading state */
#recent-activity-container.loading {
opacity: 0.6;
pointer-events: none;
}
/* Last updated timestamp subtle animation */
#activity-last-updated {
transition: color 0.3s ease-in-out;
}
#activity-last-updated:hover {
color: rgb(99, 102, 241); /* indigo-500 */
}
/* Chart Container Responsive Sizing */
.chart-container {
position: relative;