From a430284aa21e3ae1f0d5654e55b2ad2852519cc2 Mon Sep 17 00:00:00 2001 From: wwf <yearningwang@iqtogether.com> Date: 星期三, 04 六月 2025 15:17:49 +0800 Subject: [PATCH] 初始化 --- app/components/tools/workflow-tool/method-selector.tsx | 34 +++++++++++++++++----------------- 1 files changed, 17 insertions(+), 17 deletions(-) diff --git a/app/components/tools/workflow-tool/method-selector.tsx b/app/components/tools/workflow-tool/method-selector.tsx index 4edaa6c..1f11430 100644 --- a/app/components/tools/workflow-tool/method-selector.tsx +++ b/app/components/tools/workflow-tool/method-selector.tsx @@ -34,37 +34,37 @@ className='block' > <div className={cn( - 'flex h-9 min-h-[56px] cursor-pointer items-center gap-1 bg-transparent px-3 py-2 hover:bg-background-section-burn', - open && '!bg-background-section-burn hover:bg-background-section-burn', + 'flex items-center gap-1 min-h-[56px] px-3 py-2 h-9 bg-white cursor-pointer hover:bg-gray-100', + open && '!bg-gray-100 hover:bg-gray-100', )}> - <div className={cn('grow truncate text-[13px] leading-[18px] text-text-secondary')}> + <div className={cn('grow text-[13px] leading-[18px] text-gray-700 truncate')}> {value === 'llm' ? t('tools.createTool.toolInput.methodParameter') : t('tools.createTool.toolInput.methodSetting')} </div> - <div className='ml-1 shrink-0 text-text-secondary opacity-60'> + <div className='shrink-0 ml-1 text-gray-700 opacity-60'> <RiArrowDownSLine className='h-4 w-4' /> </div> </div> </PortalToFollowElemTrigger> <PortalToFollowElemContent className='z-[1040]'> - <div className='relative w-[320px] rounded-lg border-[0.5px] border-components-panel-border bg-components-panel-bg-blur shadow-lg backdrop-blur-sm'> + <div className='relative w-[320px] bg-white rounded-lg border-[0.5px] border-gray-200 shadow-lg'> <div className='p-1'> - <div className='cursor-pointer rounded-lg py-2.5 pl-3 pr-2 hover:bg-components-panel-on-panel-item-bg-hover' onClick={() => onChange('llm')}> - <div className='item-center flex gap-1'> - <div className='h-4 w-4 shrink-0'> - {value === 'llm' && <Check className='h-4 w-4 shrink-0 text-text-accent' />} + <div className='pl-3 pr-2 py-2.5 rounded-lg hover:bg-gray-50 cursor-pointer' onClick={() => onChange('llm')}> + <div className='flex item-center gap-1'> + <div className='shrink-0 w-4 h-4'> + {value === 'llm' && <Check className='shrink-0 w-4 h-4 text-primary-600' />} </div> - <div className='text-[13px] font-medium leading-[18px] text-text-secondary'>{t('tools.createTool.toolInput.methodParameter')}</div> + <div className='text-[13px] text-gray-700 font-medium leading-[18px]'>{t('tools.createTool.toolInput.methodParameter')}</div> </div> - <div className='pl-5 text-[13px] leading-[18px] text-text-tertiary'>{t('tools.createTool.toolInput.methodParameterTip')}</div> + <div className='pl-5 text-gray-500 text-[13px] leading-[18px]'>{t('tools.createTool.toolInput.methodParameterTip')}</div> </div> - <div className='cursor-pointer rounded-lg py-2.5 pl-3 pr-2 hover:bg-components-panel-on-panel-item-bg-hover' onClick={() => onChange('form')}> - <div className='item-center flex gap-1'> - <div className='h-4 w-4 shrink-0'> - {value === 'form' && <Check className='h-4 w-4 shrink-0 text-text-accent' />} + <div className='pl-3 pr-2 py-2.5 rounded-lg hover:bg-gray-50 cursor-pointer' onClick={() => onChange('form')}> + <div className='flex item-center gap-1'> + <div className='shrink-0 w-4 h-4'> + {value === 'form' && <Check className='shrink-0 w-4 h-4 text-primary-600' />} </div> - <div className='text-[13px] font-medium leading-[18px] text-text-secondary'>{t('tools.createTool.toolInput.methodSetting')}</div> + <div className='text-[13px] text-gray-700 font-medium leading-[18px]'>{t('tools.createTool.toolInput.methodSetting')}</div> </div> - <div className='pl-5 text-[13px] leading-[18px] text-text-tertiary'>{t('tools.createTool.toolInput.methodSettingTip')}</div> + <div className='pl-5 text-gray-500 text-[13px] leading-[18px]'>{t('tools.createTool.toolInput.methodSettingTip')}</div> </div> </div> </div> -- Gitblit v1.8.0