From c81b6f7b834da8d8fbcf679679ce158173df3a05 Mon Sep 17 00:00:00 2001 From: Tim Garner Date: Mon, 23 Sep 2013 11:17:22 +0100 Subject: [PATCH] Fixed #21702 -- Added different bullet styles for nested lists. Thanks moc at mocpa.com for the suggestion. --- docs/_theme/djangodocs/static/djangodocs.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/_theme/djangodocs/static/djangodocs.css b/docs/_theme/djangodocs/static/djangodocs.css index c8d223382d..86ac07adb4 100644 --- a/docs/_theme/djangodocs/static/djangodocs.css +++ b/docs/_theme/djangodocs/static/djangodocs.css @@ -64,6 +64,8 @@ ul { padding-left:30px; } ol { padding-left:30px; } ol.arabic li { list-style-type: decimal; } ul li { list-style-type:square; margin-bottom:.4em; } +ul ul li { list-style-type:disc; } +ul ul ul li { list-style-type:circle; } ol li { margin-bottom: .4em; } ul ul { padding-left:1.2em; } ul ul ul { padding-left:1em; }