Add skill training advisor with recipe data and one-click goals.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-22 15:28:51 +02:00
parent e233e3c762
commit 567bbd3de0
21 changed files with 3447 additions and 18 deletions
+80
View File
@@ -348,6 +348,86 @@ th {
th:hover { color: var(--text); }
tr:hover td { background: var(--bg-hover); }
.skills-table .skill-row {
cursor: pointer;
}
.skills-table .skill-row-selected td {
background: rgba(108, 140, 255, 0.12);
}
.skills-table .skill-row-selected:hover td {
background: rgba(108, 140, 255, 0.18);
}
.skill-advisor-card h3 {
margin-bottom: 8px;
}
.skill-advisor-hint {
margin: 0 0 12px;
color: var(--text-muted);
font-size: 0.88rem;
}
.skill-advisor-summary {
margin: 0 0 12px;
font-size: 0.9rem;
}
.skill-advisor-table th {
cursor: default;
}
.skill-advisor-table th:hover {
color: var(--text-muted);
}
.skill-advisor-table td.num {
white-space: nowrap;
}
.skill-advisor-mats {
font-size: 0.82rem;
color: var(--text-muted);
max-width: 16rem;
}
.skill-advisor-summary-row {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-bottom: 12px;
}
.skill-advisor-summary-row .skill-advisor-summary {
margin: 0;
flex: 1 1 12rem;
}
.skill-advisor-skill-goal-btn {
flex-shrink: 0;
padding: 8px 12px;
border: 1px solid var(--border);
border-radius: 8px;
background: var(--bg-hover);
color: var(--text);
font-size: 0.85rem;
cursor: pointer;
}
.skill-advisor-skill-goal-btn:hover {
border-color: var(--accent);
color: var(--accent);
}
.skill-advisor-table .col-actions {
width: 3rem;
text-align: center;
}
.progress-bar {
height: 6px;
background: var(--bg);