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/base/prompt-editor/plugins/context-block/component.tsx | 24 ++++++++++++------------ 1 files changed, 12 insertions(+), 12 deletions(-) diff --git a/app/components/base/prompt-editor/plugins/context-block/component.tsx b/app/components/base/prompt-editor/plugins/context-block/component.tsx index 8396478..91db2f3 100644 --- a/app/components/base/prompt-editor/plugins/context-block/component.tsx +++ b/app/components/base/prompt-editor/plugins/context-block/component.tsx @@ -42,11 +42,11 @@ return ( <div className={` - group inline-flex h-6 items-center rounded-[5px] border border-transparent bg-[#F4F3FF] pl-1 pr-0.5 text-[#6938EF] hover:bg-[#EBE9FE] + group inline-flex items-center pl-1 pr-0.5 h-6 border border-transparent bg-[#F4F3FF] text-[#6938EF] rounded-[5px] hover:bg-[#EBE9FE] ${open ? 'bg-[#EBE9FE]' : 'bg-[#F4F3FF]'} ${isSelected && '!border-[#9B8AFB]'} `} ref={ref}> - <File05 className='mr-1 h-[14px] w-[14px]' /> + <File05 className='mr-1 w-[14px] h-[14px]' /> <div className='mr-1 text-xs font-medium'>{t('common.promptEditor.context.item.title')}</div> {!canNotAddContext && ( <PortalToFollowElem @@ -60,12 +60,12 @@ > <PortalToFollowElemTrigger ref={triggerRef}> <div className={` - flex h-[18px] w-[18px] cursor-pointer items-center justify-center rounded text-[11px] font-semibold + flex items-center justify-center w-[18px] h-[18px] text-[11px] font-semibold rounded cursor-pointer ${open ? 'bg-[#6938EF] text-white' : 'bg-white/50 group-hover:bg-white group-hover:shadow-xs'} `}>{localDatasets.length}</div> </PortalToFollowElemTrigger> <PortalToFollowElemContent style={{ zIndex: 100 }}> - <div className='w-[360px] rounded-xl bg-white shadow-lg'> + <div className='w-[360px] bg-white rounded-xl shadow-lg'> <div className='p-4'> <div className='mb-2 text-xs font-medium text-gray-500'> {t('common.promptEditor.context.modal.title', { num: localDatasets.length })} @@ -73,23 +73,23 @@ <div className='max-h-[270px] overflow-y-auto'> { localDatasets.map(dataset => ( - <div key={dataset.id} className='flex h-8 items-center'> - <div className='mr-2 flex h-6 w-6 shrink-0 items-center justify-center rounded-md border-[0.5px] border-[#EAECF5] bg-[#F5F8FF]'> - <Folder className='h-4 w-4 text-[#444CE7]' /> + <div key={dataset.id} className='flex items-center h-8'> + <div className='flex items-center justify-center shrink-0 mr-2 w-6 h-6 bg-[#F5F8FF] rounded-md border-[0.5px] border-[#EAECF5]'> + <Folder className='w-4 h-4 text-[#444CE7]' /> </div> - <div className='truncate text-sm text-gray-800' title=''>{dataset.name}</div> + <div className='text-sm text-gray-800 truncate' title=''>{dataset.name}</div> </div> )) } </div> - <div className='flex h-8 cursor-pointer items-center text-[#155EEF]' onClick={onAddContext}> - <div className='mr-2 flex h-6 w-6 shrink-0 items-center justify-center rounded-md border-[0.5px] border-gray-100'> - <RiAddLine className='h-[14px] w-[14px]' /> + <div className='flex items-center h-8 text-[#155EEF] cursor-pointer' onClick={onAddContext}> + <div className='shrink-0 flex justify-center items-center mr-2 w-6 h-6 rounded-md border-[0.5px] border-gray-100'> + <RiAddLine className='w-[14px] h-[14px]' /> </div> <div className='text-[13px] font-medium' title=''>{t('common.promptEditor.context.modal.add')}</div> </div> </div> - <div className='rounded-b-xl border-t-[0.5px] border-gray-50 bg-gray-50 px-4 py-3 text-xs text-gray-500'> + <div className='px-4 py-3 text-xs text-gray-500 bg-gray-50 border-t-[0.5px] border-gray-50 rounded-b-xl'> {t('common.promptEditor.context.modal.footer')} </div> </div> -- Gitblit v1.8.0