phase-10.5: screener enhancements

This commit is contained in:
saikiranvella
2026-06-11 19:18:19 -04:00
parent bac00ab5d5
commit e953822bab
51 changed files with 3745 additions and 36 deletions
+48
View File
@@ -180,6 +180,54 @@
&:hover { color: var(--red); }
}
// ── Plain-language advice line (personal-use layer) ──────────────────────
.advice-line {
font-size: 10.5px;
line-height: 1.3;
margin-top: 3px;
cursor: help;
max-width: 200px;
}
.advice-buy { color: var(--green); }
.advice-mindful { color: var(--amber); }
.advice-caution { color: var(--orange); }
.advice-wait { color: var(--blue); }
.advice-skip { color: var(--red); }
.advice-unknown { color: var(--text-muted); font-style: italic; }
// Turnaround-watch filter toggle (STOCK section header)
.ta-filter-btn {
font-size: 11px;
font-weight: 600;
color: var(--text-muted);
background: transparent;
border: 1px solid var(--border);
border-radius: 12px;
padding: 3px 10px;
margin-left: 8px;
cursor: pointer;
&:hover { color: var(--green); border-color: var(--green); }
&.active {
color: var(--green);
border-color: var(--green);
background: rgba(74, 222, 128, 0.08);
}
&.qd:hover, &.qd.active { color: var(--blue); border-color: var(--blue); background: rgba(96, 165, 250, 0.08); }
}
.empty-row td {
text-align: center;
font-size: 12px;
color: var(--text-muted);
font-style: italic;
padding: 18px 24px;
}
// ── Column headers ────────────────────────────────────────────────────────
.sort-th {
+33
View File
@@ -63,6 +63,39 @@ table {
font-size: var(--fs-md);
color: var(--text-primary);
letter-spacing: 0.02em;
white-space: nowrap;
}
// Ticker opens the company modal (profile + chart + news)
.ticker-btn {
background: none;
border: none;
padding: 0;
font: inherit;
font-weight: 700;
color: var(--text-primary);
letter-spacing: 0.02em;
cursor: pointer;
border-bottom: 1px dashed transparent;
&:hover {
color: var(--blue);
border-bottom-color: var(--blue);
}
}
// Turnaround-watch badge: Turnaround style + improving score (candidate flag)
.ta-badge {
font-family: var(--font-mono);
font-size: 9px;
font-weight: 700;
color: var(--green);
border: 1px solid currentColor;
border-radius: 8px;
padding: 1px 5px;
margin-left: 6px;
vertical-align: middle;
cursor: help;
}
.num {