Fix strategy checklist hidden class so tabs do not stack.

Generic .hidden was missing display:none, so 执行清单 stayed visible beside 策略正文.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
dekun
2026-07-18 17:32:04 +08:00
parent 82c910fbf8
commit 9198aa0dcd
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -392,6 +392,11 @@ button.ghost:hover:not(:disabled) {
display: none;
}
/* 通用隐藏:策略正文/执行清单等 Tab 面板依赖此类互斥显示 */
.hidden {
display: none !important;
}
.page-head {
margin: 24px 0 16px;
}