From 761fd8ccfbd7128cc4834ab70d7cb85d683a793b Mon Sep 17 00:00:00 2001 From: Zoltan Hosszu Date: Thu, 11 Dec 2025 18:09:06 +0100 Subject: [PATCH] Make list style same for every indentation Adds 'list-style: disc' to ordered and unordered lists in rich-text-content.css to ensure consistent bullet styling. --- app/assets/stylesheets/rich-text-content.css | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/stylesheets/rich-text-content.css b/app/assets/stylesheets/rich-text-content.css index c9877f4bf..70f095bca 100644 --- a/app/assets/stylesheets/rich-text-content.css +++ b/app/assets/stylesheets/rich-text-content.css @@ -29,6 +29,7 @@ } :where(ol, ul) { + list-style: disc; padding-inline-start: 3ch; }