From 156e7998b8da0ebc9f23b8094cc23de6fe6d8c6a Mon Sep 17 00:00:00 2001 From: Ravi Kiran Kudupudi Date: Wed, 28 Jun 2023 22:38:39 +0530 Subject: [PATCH] fix(docked-utility): unread notification icon color updated (#5213) * fix(docked-utility): unread notification icon color updated * fix(docked-utility): release notes updated --------- Co-authored-by: Amarnath510 --- RELEASENOTES.general.md | 1 + ui/components/docked-utility-bar/base/_index.scss | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/RELEASENOTES.general.md b/RELEASENOTES.general.md index ac1220c2c0..7678a95caa 100644 --- a/RELEASENOTES.general.md +++ b/RELEASENOTES.general.md @@ -6,6 +6,7 @@ ## Fixed - Correction in icons package version. - Updated placeholder text color for Rich Text Editor +- Updated docked utility component's unread notification state icon color - Updated border colors for Feeds component ## 2.21.2 - June 15, 2023 diff --git a/ui/components/docked-utility-bar/base/_index.scss b/ui/components/docked-utility-bar/base/_index.scss index 336416d222..490db4e6ad 100644 --- a/ui/components/docked-utility-bar/base/_index.scss +++ b/ui/components/docked-utility-bar/base/_index.scss @@ -43,8 +43,9 @@ */ .slds-indicator_unread, .slds-indicator--unread { - background: var(--slds-g-color-neutral-base-100, #{$utility-bar-color-background-notification-badge}); + background: var(--slds-g-color-error-base-40, #{$utility-bar-color-background-notification-badge}); top: $spacing-x-small; + border: $border-width-thin solid var(--slds-g-color-neutral-base-95); } }