fix(dev): replace hardcoded #F3F4F6 with var(--text), scope header/icon-btn overrides
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
4cea8d70b7
commit
426057960a
|
|
@ -39,10 +39,10 @@
|
|||
radial-gradient(ellipse at 85% 25%, rgba(167,139,250,0.07) 0%, transparent 55%),
|
||||
var(--dev-bg);
|
||||
font-family: Inter, sans-serif;
|
||||
color: #F3F4F6;
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.header {
|
||||
[data-app-id="posimai-dev"] .header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
|
|
@ -57,8 +57,8 @@
|
|||
z-index: 10;
|
||||
}
|
||||
.header-left { display: flex; align-items: center; gap: 10px; }
|
||||
.header-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
|
||||
.header-title { font-size: 14px; font-weight: 600; color: #F3F4F6; letter-spacing: -0.01em; }
|
||||
[data-app-id="posimai-dev"] .header-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
|
||||
[data-app-id="posimai-dev"] .header-title { font-size: 14px; font-weight: 600; color: var(--text); letter-spacing: -0.01em; }
|
||||
|
||||
.back-btn {
|
||||
display: flex; align-items: center; gap: 6px;
|
||||
|
|
@ -116,7 +116,7 @@
|
|||
.session-info { flex: 1; min-width: 0; }
|
||||
.session-id {
|
||||
font-size: 13px; font-weight: 500; font-family: monospace;
|
||||
color: #F3F4F6; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
|
||||
color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
|
||||
}
|
||||
.session-meta {
|
||||
font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px;
|
||||
|
|
@ -152,7 +152,7 @@
|
|||
display: flex; align-items: center;
|
||||
transition: color 0.15s;
|
||||
}
|
||||
.log-close-btn:hover { color: #F3F4F6; }
|
||||
.log-close-btn:hover { color: var(--text); }
|
||||
|
||||
.log-body {
|
||||
padding: 14px;
|
||||
|
|
@ -181,8 +181,8 @@
|
|||
font-size: 13px;
|
||||
}
|
||||
|
||||
.icon-btn { color: rgba(255,255,255,0.5); }
|
||||
.icon-btn:hover { color: #F3F4F6; background: rgba(255,255,255,0.06); }
|
||||
[data-app-id="posimai-dev"] .icon-btn { color: rgba(255,255,255,0.5); }
|
||||
[data-app-id="posimai-dev"] .icon-btn:hover { color: var(--text); background: rgba(255,255,255,0.06); }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
|
|
|||
Loading…
Reference in New Issue