New alert service

This commit is contained in:
Urtzi Alfaro
2025-12-05 20:07:01 +01:00
parent 1fe3a73549
commit 667e6e0404
393 changed files with 26002 additions and 61033 deletions

View File

@@ -979,4 +979,48 @@
opacity: 0.5;
cursor: not-allowed;
pointer-events: none;
}
/* ============================================================================
ENTERPRISE DASHBOARD ANIMATIONS
============================================================================ */
/* Shimmer effect for top performers and highlights */
@keyframes shimmer {
0% {
background-position: -200% 0;
}
100% {
background-position: 200% 0;
}
}
.animate-shimmer {
animation: shimmer 3s infinite linear;
}
/* Pulse glow effect for status indicators */
@keyframes pulse-glow {
0%, 100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.8;
transform: scale(1.05);
}
}
.animate-pulse-glow {
animation: pulse-glow 2s ease-in-out infinite;
}
/* Dashboard card hover effects */
.card-hover {
transition: all 0.3s ease;
}
.card-hover:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-xl);
}