From 452b638c15dfb4c8e8e215c0643f00900d1a0bb7 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Thu, 4 Apr 2024 15:25:05 -0700 Subject: [PATCH] api.jquery.com: Fixup a4e2aaa1f6 list-item bullets Follows-up a4e2aaa1f6 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. --- themes/jquery/css/base.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/themes/jquery/css/base.css b/themes/jquery/css/base.css index 6571ae7b..8b0a9815 100644 --- a/themes/jquery/css/base.css +++ b/themes/jquery/css/base.css @@ -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;