Skip to content

Commit

Permalink
fix(issue-stream): Fix hover interaction on safari (#86439)
Browse files Browse the repository at this point in the history
On Safari, showing the checkbox on hover wasn't working correctly. For
some reason the top-level wrapper element did not think it was being
hovered, probably due to the way the link is positioned. Changing the
CSS so that is checks for any hovered element fixes this.
  • Loading branch information
malwilley authored and philipphofmann committed Mar 6, 2025
1 parent 9c962a2 commit a16718f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/app/components/stream/group.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,7 @@ const Wrapper = styled(PanelItem)<{
padding: ${space(1)} 0;
min-height: 86px;
&:not(:hover):not(:focus-within):not(:has(input:checked)) {
&:not(:has(:hover)):not(:focus-within):not(:has(input:checked)) {
${CheckboxLabel} {
${p.theme.visuallyHidden};
}
Expand Down

0 comments on commit a16718f

Please sign in to comment.