Skip to content

Commit

Permalink
Add commas between note list terms
Browse files Browse the repository at this point in the history
  • Loading branch information
nevans committed Nov 15, 2024
1 parent f64381d commit 827ed7c
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/rdoc/generator/template/darkfish/css/rdoc.css
Original file line number Diff line number Diff line change
Expand Up @@ -478,6 +478,15 @@ main dl.note-list dt {
float: left;
}

main dl.note-list dt:has(+ dt) {
margin-right: 0.25em;
}

main dl.note-list dt:has(+ dt)::after {
content: ', ';
font-weight: normal;
}

main dd {
margin: 0 0 1em 1em;
}
Expand Down

0 comments on commit 827ed7c

Please sign in to comment.