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/workflow/nodes/_base/components/variable/var-reference-popup.tsx | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/components/workflow/nodes/_base/components/variable/var-reference-popup.tsx b/app/components/workflow/nodes/_base/components/variable/var-reference-popup.tsx index e35977a..d9a4d2c 100644 --- a/app/components/workflow/nodes/_base/components/variable/var-reference-popup.tsx +++ b/app/components/workflow/nodes/_base/components/variable/var-reference-popup.tsx @@ -27,7 +27,7 @@ const { locale } = useContext(I18n) // max-h-[300px] overflow-y-auto todo: use portal to handle long list return ( - <div className='space-y-1 rounded-lg border border-components-panel-border bg-components-panel-bg p-1 shadow-lg' style={{ + <div className='p-1 bg-white rounded-lg border border-gray-200 shadow-lg space-y-1' style={{ width: itemWidth || 228, }}> {((!vars || vars.length === 0) && popupFor) @@ -35,7 +35,7 @@ ? ( <ListEmpty title={t('workflow.variableReference.noAvailableVars') || ''} - description={<div className='system-xs-regular text-text-tertiary'> + description={<div className='text-text-tertiary system-xs-regular'> {t('workflow.variableReference.noVarsForOperation')} </div>} /> @@ -43,7 +43,7 @@ : ( <ListEmpty title={t('workflow.variableReference.noAssignedVars') || ''} - description={<div className='system-xs-regular text-text-tertiary'> + description={<div className='text-text-tertiary system-xs-regular'> {t('workflow.variableReference.assignedVarsDescription')} <a target='_blank' rel='noopener noreferrer' className='text-text-accent-secondary' -- Gitblit v1.8.0