fix(ui): light-theme contrast for AI daily and weekly review markdown across four exchanges

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
dekun
2026-06-05 14:05:02 +08:00
parent 3f1bf9905d
commit 674d721072
5 changed files with 26 additions and 6 deletions
+1 -1
View File
@@ -232,7 +232,7 @@
.stats-period-block h3{font-size:1rem;color:#dbe4ff;margin-bottom:4px}
.stats-period-block .sub{font-size:.78rem;color:#8892b0;margin-bottom:10px;line-height:1.4}
</style>
<link rel="stylesheet" href="/static/instance_theme.css?v=7">
<link rel="stylesheet" href="/static/instance_theme.css?v=8">
</head>
<body data-page="{{ page }}">
+1 -1
View File
@@ -232,7 +232,7 @@
.stats-period-block h3{font-size:1rem;color:#dbe4ff;margin-bottom:4px}
.stats-period-block .sub{font-size:.78rem;color:#8892b0;margin-bottom:10px;line-height:1.4}
</style>
<link rel="stylesheet" href="/static/instance_theme.css?v=7">
<link rel="stylesheet" href="/static/instance_theme.css?v=8">
</head>
<body data-page="{{ page }}">
+1 -1
View File
@@ -269,7 +269,7 @@
.stats-split-row{grid-template-columns:1fr}
}
</style>
<link rel="stylesheet" href="/static/instance_theme.css?v=7">
<link rel="stylesheet" href="/static/instance_theme.css?v=8">
</head>
<body data-page="{{ page }}">
+1 -1
View File
@@ -232,7 +232,7 @@
.stats-period-block h3{font-size:1rem;color:#dbe4ff;margin-bottom:4px}
.stats-period-block .sub{font-size:.78rem;color:#8892b0;margin-bottom:10px;line-height:1.4}
</style>
<link rel="stylesheet" href="/static/instance_theme.css?v=7">
<link rel="stylesheet" href="/static/instance_theme.css?v=8">
</head>
<body data-page="{{ page }}">
+22 -2
View File
@@ -616,8 +616,20 @@ html[data-theme="light"] .ai-result.is-loading {
50% { opacity: 0.55; }
}
/* AI 日复盘 / 周复盘 Markdown(弹窗 + 内联结果区,四所共用) */
html[data-theme="light"] .ai-result-md,
html[data-theme="light"] .detail-modal .panel-body.md-review {
color: #1a2838 !important;
}
html[data-theme="light"] .ai-result-md p,
html[data-theme="light"] .detail-modal .panel-body.md-review p {
html[data-theme="light"] .detail-modal .panel-body.md-review p,
html[data-theme="light"] .ai-result-md li,
html[data-theme="light"] .detail-modal .panel-body.md-review li,
html[data-theme="light"] .ai-result-md ol,
html[data-theme="light"] .ai-result-md ul,
html[data-theme="light"] .detail-modal .panel-body.md-review ol,
html[data-theme="light"] .detail-modal .panel-body.md-review ul {
color: #1a2838 !important;
}
@@ -627,8 +639,16 @@ html[data-theme="light"] .detail-modal .panel-body.md-review strong {
}
html[data-theme="light"] .ai-result-md h2,
html[data-theme="light"] .detail-modal .panel-body.md-review h2 {
html[data-theme="light"] .detail-modal .panel-body.md-review h2,
html[data-theme="light"] .ai-result-md h3,
html[data-theme="light"] .detail-modal .panel-body.md-review h3,
html[data-theme="light"] .ai-result-md h4,
html[data-theme="light"] .detail-modal .panel-body.md-review h4 {
color: #142232 !important;
}
html[data-theme="light"] .ai-result-md h2,
html[data-theme="light"] .detail-modal .panel-body.md-review h2 {
border-bottom-color: #d0dae4 !important;
}