From eb9a4be0b3bc859328614c45202eaabeab66b259 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B9=8B=E4=B9=8B=20ICE-GL-ZHI=E2=88=9E?= <565183519@qq.com> Date: Tue, 7 Jul 2026 00:35:15 +0800 Subject: [PATCH] test hook LL-001-20260706 --- lighthouse/LL-001-LAKE-LAMP-FIRST-BLOOM.md | 1 + public/dashboard-v2.html | 109 +++++++++++++++++++++ server.js | 2 +- 3 files changed, 111 insertions(+), 1 deletion(-) diff --git a/lighthouse/LL-001-LAKE-LAMP-FIRST-BLOOM.md b/lighthouse/LL-001-LAKE-LAMP-FIRST-BLOOM.md index 5abc8e29..a527fec9 100644 --- a/lighthouse/LL-001-LAKE-LAMP-FIRST-BLOOM.md +++ b/lighthouse/LL-001-LAKE-LAMP-FIRST-BLOOM.md @@ -21,3 +21,4 @@ 铸渊 ICE-GL-ZY001 2026-07-07 00:21 UTC+8 +// LL-001 链路验证 commit diff --git a/public/dashboard-v2.html b/public/dashboard-v2.html index 33a423e3..530a3c57 100644 --- a/public/dashboard-v2.html +++ b/public/dashboard-v2.html @@ -62,6 +62,77 @@ font-weight: bold; } + /* 快捷入口 */ + .quick-access { + margin-bottom: 25px; + } + + .section-title { + font-size: 14px; + color: #6b7a8f; + margin-bottom: 12px; + text-transform: uppercase; + letter-spacing: 0.5px; + } + + .access-grid { + display: grid; + grid-template-columns: repeat(4, 1fr); + gap: 16px; + } + + .access-card { + background-color: #111827; + border-radius: 12px; + padding: 18px; + border: 1px solid #1e2a3a; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); + display: flex; + align-items: center; + gap: 14px; + text-decoration: none; + transition: all 0.25s ease; + cursor: pointer; + } + + .access-card:hover { + border-color: #4a90e2; + box-shadow: 0 4px 20px rgba(74, 144, 226, 0.2); + transform: translateY(-2px); + } + + .access-icon { + font-size: 28px; + width: 48px; + height: 48px; + border-radius: 10px; + background-color: #1a2332; + display: flex; + align-items: center; + justify-content: center; + flex-shrink: 0; + } + + .access-info { + flex: 1; + min-width: 0; + } + + .access-name { + font-size: 15px; + font-weight: 500; + color: #e0e4f0; + margin-bottom: 3px; + } + + .access-desc { + font-size: 12px; + color: #4a5a6e; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + } + /* 卡片网格 */ .grid { display: grid; @@ -236,6 +307,9 @@ .row { grid-template-columns: 1fr; } + .access-grid { + grid-template-columns: repeat(2, 1fr); + } } @@ -250,6 +324,41 @@ + +