From 2ea6f4e070cc1bc382bd69ca451707f322c419a5 Mon Sep 17 00:00:00 2001 From: Andy Smith Date: Mon, 15 Dec 2025 13:14:11 -0600 Subject: [PATCH] Use decimals for ordered lists --- app/assets/stylesheets/rich-text-content.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/rich-text-content.css b/app/assets/stylesheets/rich-text-content.css index 5a63f9eac..5a8ba3fd7 100644 --- a/app/assets/stylesheets/rich-text-content.css +++ b/app/assets/stylesheets/rich-text-content.css @@ -29,10 +29,17 @@ } ol, ul { - list-style: disc; padding-inline-start: 3ch; } + ol { + list-style: decimal; + } + + ul { + list-style: disc; + } + li:has(li) { list-style: none;