From 4e7f5fa006650b6819634f0b9c285f2f6b8aa172 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Le=C5=9Bniak?= Date: Fri, 10 Oct 2025 16:44:28 +0200 Subject: [PATCH] RDoc-3481 Changed list-style of ordered lists nested in unordered lists --- src/css/custom.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/css/custom.css b/src/css/custom.css index 8e2b9bcca5..d420a9687e 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -263,6 +263,10 @@ ul { list-style: revert; } +ul ol { + list-style: decimal; +} + /* Custom wrap for pre */ pre { white-space: pre-wrap; @@ -305,4 +309,4 @@ code { /* Custom margin-bottom for tabs and admonitions followed by other elements */ [class^="tabItem"]:has(+ *), .theme-admonition:has(+ *) { @apply mb-4; -} \ No newline at end of file +}