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:37:09 -0400 |
| commit | c81b6f7b834da8d8fbcf679679ce158173df3a05 (patch) | |
| tree | c3ccf14a8f1bead16fc18048f0e00a2f5a6c4fd3 /docs/_theme/djangodocs/static | |
| parent | 4fcc1e4ad8d153f41132b171c231b6d5d4086c28 (diff) | |
Fixed #21702 -- Added different bullet styles for nested lists.
Thanks moc at mocpa.com for the suggestion.
Diffstat (limited to 'docs/_theme/djangodocs/static')
| -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 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; } |
