Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,7 @@ export const PopoverProvider = ({
{...props}
>
<Pressable>{children}</Pressable>
<PopoverUpstream
placement={placement}
offset={offset}
style={{ outlineColor: 'transparent' }}
>
<PopoverUpstream placement={placement} offset={offset} style={{ outline: 'none' }}>
<Popover
hasChrome={hasChrome}
hideLabel={closeLabel}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const TooltipProvider = ({
placement={placement}
offset={offset}
onOpenChange={onOpenChange}
style={{ outlineColor: 'transparent' }}
style={{ outline: 'none' }}
{...props}
>
{tooltip}
Expand Down
3 changes: 2 additions & 1 deletion code/core/src/manager/components/sidebar/TagsFilterPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export const TagsFilterPanel = ({
id: `filter-${type}-${id}`,
content: (
<ActionList.HoverItem targetId={`filter-${type}-${id}`}>
<ActionList.Action as="label" tabIndex={-1} tooltip={toggleTooltip}>
<ActionList.Action as="label" ariaLabel={false} tabIndex={-1} tooltip={toggleTooltip}>
<ActionList.Icon>
{isExcluded ? <DeleteIcon /> : isIncluded ? null : icon}
<Form.Checkbox
Expand Down Expand Up @@ -201,6 +201,7 @@ export const TagsFilterPanel = ({
<ActionList as="div">
<ActionList.Item as="div">
<ActionList.Link
ariaLabel={false}
href={api.getDocsUrl({ subpath: 'writing-stories/tags#custom-tags' })}
target="_blank"
>
Expand Down