From 938d98c8d18a6cba61b54ce0f9cc3af9e7afa134 Mon Sep 17 00:00:00 2001 From: Tim Garner Date: Mon, 23 Sep 2013 11:17:22 +0100 Subject: [PATCH] [1.5.x] Fixed #21702 -- Added different bullet styles for nested lists. Thanks moc at mocpa.com for the suggestion. Backport of c81b6f7b83 from master --- 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 bab81cd919c64..9467d09a255f6 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; }