diff options
| author | Tim Garner <timgarner0@gmail.com> | 2013-09-23 11:17:22 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-09-23 07:40:07 -0400 |
| commit | 938d98c8d18a6cba61b54ce0f9cc3af9e7afa134 (patch) | |
| tree | e8c191a5db28b0245fb1461c12998f15423df655 /docs/_theme | |
| parent | 1fa8c612fc764c456f4d838805ff7fd5634b1e16 (diff) | |
[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
Diffstat (limited to 'docs/_theme')
| -rw-r--r-- | docs/_theme/djangodocs/static/djangodocs.css | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/_theme/djangodocs/static/djangodocs.css b/docs/_theme/djangodocs/static/djangodocs.css index bab81cd919..9467d09a25 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; } |
