From 6edfe207a162819ba454683dda5d48e371d1d732 Mon Sep 17 00:00:00 2001
From: "a.sabirov" <a.sabirov@picodata.io>
Date: Mon, 22 Apr 2024 14:14:13 +0300
Subject: [PATCH] style.css: set custom bullets for nested lists

---
 docs/extra/style.css | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/docs/extra/style.css b/docs/extra/style.css
index 192a209f..bc1f38c0 100644
--- a/docs/extra/style.css
+++ b/docs/extra/style.css
@@ -153,3 +153,18 @@ body {
 .picodata-link {
     max-width: 5.9rem !important;
 }
+
+/* Set custom bullets for level 2 <ul> lists — hollow circle */
+article ul ul {
+    list-style-type: circle !important;
+}
+
+/* Set custom bullets for level 3 <ul> lists — minus sign */
+article ul ul ul {
+    list-style-type: "\2212" !important;
+}
+
+/* Set padding for level 3 <ul> list items*/
+article ul ul ul li {
+    padding-left: 0.5rem;
+}
-- 
GitLab