From 308692385eef91048f22b132b8d634161beee36e Mon Sep 17 00:00:00 2001 From: Nikola Anachkov Date: Thu, 14 May 2026 11:05:54 +0300 Subject: [PATCH] fix(ui5-shellbar): correct icon color in overflow popover --- packages/fiori/src/themes/ShellBarItem.css | 4 ++++ packages/fiori/src/themes/ShellBarPopover.css | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/packages/fiori/src/themes/ShellBarItem.css b/packages/fiori/src/themes/ShellBarItem.css index c1c7c21222df..b57c54144acc 100644 --- a/packages/fiori/src/themes/ShellBarItem.css +++ b/packages/fiori/src/themes/ShellBarItem.css @@ -21,6 +21,10 @@ margin: var(--_ui5-shellbar-badge-margin, -0.5rem); } +[ui5-li]::part(icon) { + color: var(--sapList_TextColor); +} + [ui5-li]:after { position: relative; width: fit-content; diff --git a/packages/fiori/src/themes/ShellBarPopover.css b/packages/fiori/src/themes/ShellBarPopover.css index 896f7dbe227f..604e11f6304a 100644 --- a/packages/fiori/src/themes/ShellBarPopover.css +++ b/packages/fiori/src/themes/ShellBarPopover.css @@ -7,6 +7,11 @@ color: var(--sapList_TextColor); } +.ui5-shellbar-overflow-popover ::slotted([ui5-toggle-button]), +.ui5-shellbar-overflow-popover ::slotted([ui5-button]) { + color: var(--sapList_TextColor); +} + .ui5-shellbar-overflow-popover [ui5-li]::part(title) { font-size: var(--sapFontSize); }