This commit is contained in:
Lizandro Guarnizo
2026-01-22 00:19:20 -05:00
parent ee016d62f5
commit 5e345b951f
7 changed files with 211 additions and 7 deletions
+32
View File
@@ -1086,6 +1086,38 @@ body {
justify-content: center;
}
/* Unread conversation visual state: darker green and subtle background */
.conversation-item.unread {
background: linear-gradient(90deg, #effff5, #f6fff9);
}
.conversation-item.unread .conversation-avatar {
background: linear-gradient(135deg, #0f9a6a, #0b7a57);
box-shadow: 0 6px 18px rgba(11, 122, 87, 0.25);
}
/* Notification bell indicator when there are unseen notifications */
#notification-bell.has-notifications {
position: relative;
}
#notification-bell.has-notifications::after {
content: '';
position: absolute;
top: 6px;
right: 6px;
width: 12px;
height: 12px;
background: #15803d; /* darker green */
border-radius: 50%;
box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.12);
animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
0% { transform: scale(1); opacity: 0.9; }
50% { transform: scale(1.15); opacity: 0.6; }
100% { transform: scale(1); opacity: 0.9; }
}
.conversation-status-icon {
font-size: 0.8rem;
}