Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2524,15 +2524,17 @@ input[type="text"]:not(.skill-input-wrap input):focus {
width:14px;
height:14px;
border-radius:50%;
background:var(--indigo-600);
border:3px solid var(--indigo-100);
background:var(--surface);
border:3px solid var(--indigo-600);
margin-top:4px;
box-sizing:border-box;
}

.roadmap-line{
flex:1;
width:2px;
background:var(--border);
width:0;
border-left:2px dashed var(--border);
background:transparent;
margin:4px 0;
}

Expand Down Expand Up @@ -2605,9 +2607,15 @@ input[type="text"]:not(.skill-input-wrap input):focus {
/* Make completed node visually */
.roadmap-step.completed .roadmap-dot {
background: var(--green-500);
border-color: var(--green-200);
box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

/* Make completed line solid green */
.roadmap-step.completed .roadmap-line {
border-left: 2px solid var(--green-500);
}

/* Progress container */
.roadmap-progress-wrap{
display:flex;
Expand Down
Loading