Skip to content

Commit 1c3c4f4

Browse files
authored
fix(ui5-avatar-group): disable pointer events on overflow button in Group Mode (#11935)
- Problem Overflow button was receiving focus in Group mode, preventing group click events from firing when clicked. - Solution Add pointer-events: none to the overflow button to not receive focus upon clicking when type="Group" Fixes: #11866
1 parent e249cf6 commit 1c3c4f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/main/src/themes/AvatarGroup.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
}
3737

3838
:host([type="Group"]) ::slotted([ui5-button]),
39-
:host([type="Group"]) ::slotted([ui5-avatar]) {
39+
:host([type="Group"]) ::slotted([ui5-avatar]),
40+
:host([type="Group"]) .ui5-avatar-group-overflow-btn {
4041
pointer-events: none;
4142
}
4243

0 commit comments

Comments
 (0)