移除 scan-topbar-logo 品牌标记

- 从 ScanTerminalDashboard.tsx 移除 logo div 和 brand 容器
- 从 ScanTerminalShell.module.css 移除 .scan-topbar-brand / .scan-topbar-logo 样式
- 从 ScanTerminalLightTheme.module.css 移除对应的浅色主题覆盖
This commit is contained in:
2569718930@qq.com
2026-05-10 15:13:32 +08:00
parent 32019c89f5
commit 0e529358c9
3 changed files with 1 additions and 35 deletions
@@ -399,9 +399,7 @@ function ScanTerminalScreen() {
>
<main className="scan-data-grid">
<div className="scan-topbar">
<div className="scan-topbar-brand">
<div className="scan-topbar-logo" aria-hidden="true" />
<div className="scan-topbar-title">
<div className="scan-topbar-title">
<strong>{isEn ? "AI Weather Decision Terminal" : "AI 天气交易决策台"}</strong>
<span>
{isEn
@@ -409,7 +407,6 @@ function ScanTerminalScreen() {
: "从地图选城市,再打开决策卡验证天气证据"}
</span>
</div>
</div>
<div className="scan-topbar-actions">
<button
type="button"
@@ -7,11 +7,6 @@
color: #0F172A;
}
.root :global(.scan-terminal.light .scan-topbar-logo) {
background: linear-gradient(135deg, #2563EB, #059669);
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.18);
}
.root :global(.scan-terminal.light .scan-filter-panel),
.root :global(.scan-terminal.light .scan-data-grid),
.root :global(.scan-terminal.light .scan-detail-panel),
@@ -19,32 +19,6 @@
border-bottom: 1px solid rgba(118, 146, 188, 0.1);
}
.root :global(.scan-topbar-brand) {
display: flex;
align-items: center;
gap: 8px;
}
.root :global(.scan-topbar-logo) {
width: 28px;
height: 28px;
flex-shrink: 0;
border-radius: 8px;
background: linear-gradient(135deg, var(--color-accent-primary), #22C55E);
box-shadow: 0 4px 12px rgba(77, 163, 255, 0.28);
position: relative;
overflow: hidden;
}
.root :global(.scan-topbar-logo::after) {
content: "";
position: absolute;
inset: 3px;
border-radius: 6px;
background:
radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6), transparent 60%);
}
.root :global(.scan-topbar-title) {
display: flex;
flex-direction: column;