up
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user