chore: Optimize component styles and interactions (#23250) (#23251)

This commit is contained in:
HyaCinth
2025-08-01 14:18:38 +08:00
committed by GitHub
parent da5c003f97
commit f7016fd922
3 changed files with 31 additions and 28 deletions

View File

@@ -34,6 +34,7 @@ const ToolItem: FC<Props> = ({
<Tooltip
key={payload.name}
position='right'
needsDelay={false}
popupClassName='!p-0 !px-3 !py-2.5 !w-[200px] !leading-[18px] !text-xs !text-gray-700 !border-[0.5px] !border-black/5 !rounded-xl !shadow-lg'
popupContent={(
<div>

View File

@@ -61,10 +61,11 @@ export const ToolIcon = memo(({ providerName }: ToolIconProps) => {
>
<div
className={classNames(
'relative flex size-5 items-center justify-center rounded-[6px] border-[0.5px] border-components-panel-border-subtle bg-background-default-dodge',
'relative',
)}
ref={containerRef}
>
<div className="flex size-5 items-center justify-center overflow-hidden rounded-[6px] border-[0.5px] border-components-panel-border-subtle bg-background-default-dodge">
{(() => {
if (iconFetchError || !icon)
return <Group className="h-3 w-3 opacity-35" />
@@ -91,7 +92,8 @@ export const ToolIcon = memo(({ providerName }: ToolIconProps) => {
}
return <Group className="h-3 w-3 opacity-35" />
})()}
{indicator && <Indicator color={indicator} className="absolute right-[-1px] top-[-1px]" />}
</div>
{indicator && <Indicator color={indicator} className="absolute -right-[1px] -top-[1px]" />}
</div>
</Tooltip>
})