fix(chat): pin icon color override - dark navy instead of gray
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions

The generic .conversation-item svg rule was overriding the pin icon
color with gray. Added specific selector with !important to ensure
the pushpin displays in dark navy (#1e3050).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Maciej Pienczyn 2026-03-16 22:32:42 +01:00
parent aae9bae91b
commit 1c851d5642

View File

@ -207,6 +207,10 @@
flex-shrink: 0;
}
.conversation-item svg.conversation-pin-icon {
color: #1e3050;
}
.conversation-title {
flex: 1;
font-size: var(--font-size-sm);
@ -263,7 +267,7 @@
}
.conversation-pin-icon {
color: #2E4872;
color: #1e3050 !important;
flex-shrink: 0;
width: 14px;
height: 14px;