From a13ee1b2f245aaa8e2fc5539780a613122b042c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E5=87=A4=E5=90=89?= Date: Fri, 4 Jul 2025 14:04:02 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E7=BB=9F=E4=B8=80=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/setting/History.vue | 37 ++++++++++++++++++++++++++++++++++--- 1 file changed, 34 insertions(+), 3 deletions(-) diff --git a/src/components/setting/History.vue b/src/components/setting/History.vue index b172a87..4ca8804 100644 --- a/src/components/setting/History.vue +++ b/src/components/setting/History.vue @@ -107,9 +107,11 @@ const onClose = () => { @@ -134,5 +136,34 @@ const onClose = () => { height: 73vh; overflow: auto; } + .view-button, + .delete-button { + border: none; + padding: 4px 8px; + border-radius: 3px; + cursor: pointer; + margin-right: 5px; + transition: all 0.3s; + font-family: serif; + } + + .view-button { + background-color: #e6f0ff; + color: #1890ff; + } + + .view-button:hover { + background-color: #1890ff; + color: white; + } + .delete-button { + background-color: #ffe6e6; + color: #ff4d4f; + } + + .delete-button:hover { + background-color: #ff4d4f; + color: white; + } }