From 36f7ba7931217bd3748cf4da4246b996773d8b97 Mon Sep 17 00:00:00 2001 From: zyxucp <286513187@qq.com> Date: Sun, 22 Jun 2025 22:54:05 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Setting/ChatHistory/ChatHistory.razor | 32 ++++++++----------- 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/src/AntSK/Pages/Setting/ChatHistory/ChatHistory.razor b/src/AntSK/Pages/Setting/ChatHistory/ChatHistory.razor index feaf140..55cb9fa 100644 --- a/src/AntSK/Pages/Setting/ChatHistory/ChatHistory.razor +++ b/src/AntSK/Pages/Setting/ChatHistory/ChatHistory.razor @@ -89,10 +89,9 @@ } .ant-card { - border-radius: 12px; - box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); - backdrop-filter: blur(10px); - border: 1px solid rgba(255, 255, 255, 0.2); + border-radius: 8px; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); + border: 1px solid rgba(0, 0, 0, 0.06); } .page-header { @@ -116,10 +115,8 @@ } .header-left .ant-typography { - background: linear-gradient(45deg, #1890ff, #722ed1); - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; - background-clip: text; + color: rgba(0, 0, 0, 0.85); + font-weight: 600; margin: 0; } @@ -129,20 +126,20 @@ } .ant-input-search-large { - border-radius: 8px; - box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); + border-radius: 6px; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; } .ant-table { - border-radius: 8px; + border-radius: 6px; overflow: hidden; } .ant-table-thead > tr > th { - background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); + background-color: #fafafa; font-weight: 600; - border-bottom: 2px solid #dee2e6; + border-bottom: 1px solid #f0f0f0; } .ant-table-tbody > tr { @@ -150,7 +147,7 @@ } .ant-table-tbody > tr:hover > td { - background: linear-gradient(135deg, #f0f8ff 0%, #e6f7ff 100%); + background-color: #f5f5f5; } .message-content { @@ -160,7 +157,7 @@ .message-content .ant-typography { background: #fafafa; padding: 12px; - border-radius: 8px; + border-radius: 6px; border-left: 4px solid #1890ff; margin: 0; line-height: 1.6; @@ -189,11 +186,10 @@ .ant-tag { margin: 0; - border-radius: 6px; + border-radius: 4px; font-weight: 500; padding: 4px 8px; - border: none; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); + border: 1px solid rgba(0, 0, 0, 0.06); transition: all 0.3s ease; }