From 3793d64d3c3699344b68c4301918911ad75d2ee7 Mon Sep 17 00:00:00 2001 From: tangweijie <877588133@qq.com> Date: Tue, 27 Jan 2026 11:20:44 +0800 Subject: [PATCH] =?UTF-8?q?style(dashboard):=20=E8=B0=83=E6=95=B4Dashboard?= =?UTF-8?q?=E4=B8=BA=E5=8D=8A=E9=80=8F=E6=98=8E=E8=83=8C=E6=99=AF=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 左侧区域、右侧区域、底部模块改为半透明背景 - 使用 rgba(45, 65, 131, 0.6) 实现半透明效果 - 保持原有的边框和文字样式 参考计划: .sisyphus/plans/dashboard-center-update.md 布局调整要求 --- src/views/Dashboard/Index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/Dashboard/Index.vue b/src/views/Dashboard/Index.vue index d32a9f93..f9f8eaed 100644 --- a/src/views/Dashboard/Index.vue +++ b/src/views/Dashboard/Index.vue @@ -557,7 +557,7 @@ onUnmounted(() => { .list-card-item { width: 25%; height: 90%; - background: #2d3d5f; + background: rgba(45, 65, 131, 0.6); border: 1px solid rgba(56, 102, 141, 0.5); display: flex; padding-left: 15px; @@ -607,12 +607,12 @@ onUnmounted(() => { align-items: center; justify-content: center; padding: 12px 16px; - background: #2d3d5f; + background: rgba(45, 65, 131, 0.6); border: 1px solid rgba(56, 102, 141, 0.5); border-radius: 6px; box-shadow: inset 0 0 10px 0 rgba(43, 65, 131, 0.3); transition: all 0.3s ease; - + &:hover { border-color: rgba(56, 102, 141, 0.8); box-shadow: inset 0 0 15px 0 rgba(43, 65, 131, 0.5);