Skip to content

Commit

Permalink
api.jquery.com: Fixup a4e2aaa list-item bullets
Browse files Browse the repository at this point in the history
Follows-up a4e2aaa which converted our custom list-item image
to native CSS `::marker`. However, I didn't realize that
`list-item: none` has no effect on ::marker. You have to set this to
`content: ""` to clear.
  • Loading branch information
Krinkle committed Apr 4, 2024
1 parent fbb7107 commit 452b638
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions themes/jquery/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -2543,6 +2543,10 @@ footer .books li a cite {
text-shadow: 0 1px 0 #fff;
}

#content .signatures li::marker {
content: "";
}

#content .signatures li {
list-style: none;
background: none;
Expand Down

0 comments on commit 452b638

Please sign in to comment.