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/panel/chat-record/user-input.tsx |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/app/components/workflow/panel/chat-record/user-input.tsx b/app/components/workflow/panel/chat-record/user-input.tsx
index 7b90435..077f2ac 100644
--- a/app/components/workflow/panel/chat-record/user-input.tsx
+++ b/app/components/workflow/panel/chat-record/user-input.tsx
@@ -17,25 +17,25 @@
     <div
       className={`
         rounded-xl border
-        ${!expanded ? 'border-components-panel-border-subtle bg-components-panel-on-panel-item-bg shadow-none' : 'border-transparent bg-white shadow-xs'}
+        ${!expanded ? 'bg-indigo-25 border-indigo-100 shadow-none' : 'bg-white shadow-xs border-transparent'}
       `}
     >
       <div
         className={`
-          flex h-[18px] cursor-pointer items-center px-2 pt-4 text-[13px] font-semibold
-          ${!expanded ? 'text-text-accent-secondary' : 'text-text-secondary'}
+          flex items-center px-2 pt-4 h-[18px] text-[13px] font-semibold cursor-pointer
+          ${!expanded ? 'text-indigo-800' : 'text-gray-800'}
         `}
         onClick={() => setExpanded(!expanded)}
       >
         <RiArrowDownSLine
-          className={`mr-1 h-3 w-3 ${!expanded ? '-rotate-90 text-text-accent' : 'text-text-tertiary'}`}
+          className={`mr-1 w-3 h-3 ${!expanded ? '-rotate-90 text-indigo-600' : 'text-gray-300'}`}
         />
         {t('workflow.panel.userInputField').toLocaleUpperCase()}
       </div>
-      <div className='px-2 pb-3 pt-1'>
+      <div className='px-2 pt-1 pb-3'>
         {
           expanded && (
-            <div className='py-2 text-[13px] text-text-primary'>
+            <div className='py-2 text-[13px] text-gray-900'>
               {
                 variables.map((variable: any) => (
                   <div

--
Gitblit v1.8.0