Skip to content

Commit d07b089

Browse files
fix(ui5-breadcrumbs): dropdown arrow focused color fixed (#11362)
Bug description: When we have dropdown arrow (when there is not enough space for all the links) and we focus it, the color of the arrow and triple dots remains bluish. It should become white. This change fixes the issue by improving the CSS selector for making the focused color to be bright.
1 parent 551ef30 commit d07b089

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/main/src/themes/Breadcrumbs.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
color: var(--sapLinkColor);
4848
}
4949

50-
.ui5-breadcrumbs-dropdown-arrow-link-wrapper [ui5-link][focused] [ui5-icon] {
50+
.ui5-breadcrumbs-dropdown-arrow-link-wrapper:focus-within [ui5-link] [ui5-icon] {
5151
color: var(--_ui5_link_focus_color);
5252
}
5353

0 commit comments

Comments
 (0)