diff --git a/frontend/app/web-gold/src/components/agents/ChatDrawer.vue b/frontend/app/web-gold/src/components/agents/ChatDrawer.vue index 8563015b5c..e3de8c9f3e 100644 --- a/frontend/app/web-gold/src/components/agents/ChatDrawer.vue +++ b/frontend/app/web-gold/src/components/agents/ChatDrawer.vue @@ -105,13 +105,13 @@
- + > @@ -595,18 +595,28 @@ watch(() => props.visible, (newVal) => { .chat-input { width: 100%; + padding: 14px 44px 14px 16px; + border: none; + border-radius: 12px; + font-size: 14px; + color: #1E293B; + background: #F8FAFC; + outline: none; + resize: none; + transition: all 0.2s ease; + font-family: inherit; - :deep(.ant-input) { - padding-right: 44px; - border-radius: 12px; - border: 1px solid #E2E8F0; - font-size: 14px; + &::placeholder { + color: #94A3B8; + } - &:focus, - &:hover { - border-color: #7C3AED; - box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1); - } + &:focus { + background: #fff; + box-shadow: 0 0 0 1px #E2E8F0; + } + + &:hover { + background: #fff; } } diff --git a/frontend/app/web-gold/src/views/kling/IdentifyFace.vue b/frontend/app/web-gold/src/views/kling/IdentifyFace.vue index ec4c06ae34..0cd39ad2d3 100644 --- a/frontend/app/web-gold/src/views/kling/IdentifyFace.vue +++ b/frontend/app/web-gold/src/views/kling/IdentifyFace.vue @@ -1,226 +1,220 @@