3d29b4f9d9
Sync review-mode checkbox with disabled state after form restore; repair initHubEmbedInFrameNav regression in instance_theme.js. Co-authored-by: Cursor <cursoragent@cursor.com>
44 lines
962 B
CSS
44 lines
962 B
CSS
/* 紧接 instance_theme.js 之后加载,避免亮色下先闪暗色底 */
|
|
html {
|
|
background: #0b0d14;
|
|
color-scheme: dark;
|
|
}
|
|
|
|
html[data-theme="light"] {
|
|
background: #d8e2ec;
|
|
color-scheme: light;
|
|
}
|
|
|
|
html[data-theme="light"] body {
|
|
background: #d8e2ec !important;
|
|
color: #1a2838 !important;
|
|
}
|
|
|
|
.review-edit-btn:disabled {
|
|
opacity: 0.45;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
html[data-theme="light"] .header h1 {
|
|
color: #142232 !important;
|
|
}
|
|
|
|
html[data-theme="light"] .top-nav a,
|
|
html[data-theme="light"] .strategy-subnav a {
|
|
background: #fff !important;
|
|
color: #006e9a !important;
|
|
border-color: rgba(0, 95, 140, 0.22) !important;
|
|
}
|
|
|
|
html[data-theme="light"] .top-nav a.active,
|
|
html[data-theme="light"] .strategy-subnav a.active {
|
|
background: rgba(0, 110, 154, 0.12) !important;
|
|
color: #142232 !important;
|
|
}
|
|
|
|
html[data-theme="light"] .card,
|
|
html[data-theme="light"] .stat-item {
|
|
background: #fff !important;
|
|
border-color: #b8c8d8 !important;
|
|
}
|