This commit is contained in:
Macbook
2026-06-12 23:52:08 +09:00
parent 4a6be82c15
commit 2c0570c95e
10 changed files with 733 additions and 47 deletions
+194
View File
@@ -1138,6 +1138,200 @@
cursor: not-allowed;
}
/* ── 전략 판별 해석 버튼 · 팝업 ─────────────────────────────────────────── */
.seval-interpret-btn {
flex-shrink: 0;
display: inline-flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
padding: 0;
border-radius: 8px;
border: 1px solid color-mix(in srgb, var(--se-border) 85%, transparent);
background: color-mix(in srgb, var(--se-input-bg, #121826) 92%, transparent);
color: var(--se-text-muted);
cursor: pointer;
transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.seval-interpret-btn:hover:not(:disabled) {
color: var(--se-accent, #3f7ef5);
border-color: color-mix(in srgb, var(--se-accent, #3f7ef5) 45%, transparent);
background: color-mix(in srgb, var(--se-accent, #3f7ef5) 10%, transparent);
}
.seval-interpret-btn:disabled {
opacity: 0.35;
cursor: not-allowed;
}
.seval-interpret-icon {
display: block;
}
.seval-interpret-overlay {
z-index: 10999;
}
.seval-interpret-modal {
max-height: min(88vh, 720px);
display: flex;
flex-direction: column;
}
.seval-interpret-body {
overflow: auto;
max-height: min(72vh, 600px);
padding: 12px 16px 16px !important;
}
.seval-interpret-content {
font-size: 0.84rem;
line-height: 1.65;
color: var(--se-text);
}
.seval-interpret-intro {
margin: 0 0 12px;
font-size: 0.78rem;
color: var(--se-text-muted);
}
.seval-interpret-overall {
margin-bottom: 14px;
padding: 10px 12px;
border-radius: 10px;
border: 1px solid var(--se-border, rgba(255, 255, 255, 0.08));
background: color-mix(in srgb, var(--se-input-bg, #121826) 88%, transparent);
}
.seval-interpret-overall--met {
border-color: color-mix(in srgb, #3f7ef5 35%, transparent);
background: color-mix(in srgb, #3f7ef5 8%, transparent);
}
.seval-interpret-overall--unmet {
border-color: color-mix(in srgb, var(--se-text-muted) 25%, transparent);
}
.seval-interpret-overall-badge {
display: inline-flex;
margin-bottom: 6px;
padding: 2px 8px;
border-radius: 999px;
font-size: 0.68rem;
font-weight: 800;
letter-spacing: 0.03em;
}
.seval-interpret-overall--met .seval-interpret-overall-badge {
color: #7eb6ff;
background: color-mix(in srgb, #3f7ef5 18%, transparent);
}
.seval-interpret-overall--unmet .seval-interpret-overall-badge {
color: var(--se-text-muted);
background: color-mix(in srgb, var(--se-text-muted) 12%, transparent);
}
.seval-interpret-overall--unknown .seval-interpret-overall-badge {
color: #f0ad4e;
background: color-mix(in srgb, #f0ad4e 14%, transparent);
}
.seval-interpret-overall-text {
margin: 0;
font-size: 0.82rem;
}
.seval-interpret-empty {
margin: 0;
color: var(--se-text-muted);
}
.seval-interpret-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 10px;
}
.seval-interpret-item {
padding: 10px 12px;
border-radius: 10px;
border: 1px solid var(--se-border, rgba(255, 255, 255, 0.08));
background: color-mix(in srgb, var(--se-input-bg, #121826) 90%, transparent);
}
.seval-interpret-item--match {
border-left: 3px solid #3f7ef5;
}
.seval-interpret-item--nomatch {
border-left: 3px solid color-mix(in srgb, var(--se-text-muted) 55%, #ef5350);
}
.seval-interpret-item--unknown {
border-left: 3px solid #f0ad4e;
}
.seval-interpret-item-head {
display: flex;
align-items: flex-start;
gap: 8px;
margin-bottom: 6px;
}
.seval-interpret-status {
flex-shrink: 0;
padding: 2px 7px;
border-radius: 999px;
font-size: 0.62rem;
font-weight: 800;
letter-spacing: 0.02em;
}
.seval-interpret-status--match {
color: #7eb6ff;
background: color-mix(in srgb, #3f7ef5 16%, transparent);
}
.seval-interpret-status--nomatch {
color: #ff8a80;
background: color-mix(in srgb, #ef5350 14%, transparent);
}
.seval-interpret-status--unknown {
color: #f0ad4e;
background: color-mix(in srgb, #f0ad4e 14%, transparent);
}
.seval-interpret-item-title {
min-width: 0;
font-size: 0.8rem;
font-weight: 700;
line-height: 1.4;
word-break: break-word;
}
.seval-interpret-reason {
margin: 0;
font-size: 0.78rem;
color: var(--se-text-muted);
line-height: 1.55;
}
.seval-interpret-footnote {
margin: 14px 0 0;
padding-top: 10px;
border-top: 1px solid var(--se-border, rgba(255, 255, 255, 0.08));
font-size: 0.72rem;
color: var(--se-text-muted);
}
@media (max-width: 960px) {
.seval-chart-hint {
display: none;