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:01 -0400 |
| commit | 6e6d1b1ba8cfc78a3f3c14a67f5d59462364dc06 (patch) | |
| tree | 65d83333c4a7247c9b5265e4144f77d2a6ea7d18 /docs/_theme | |
| parent | eb32de26145f605940f3b6fd8f708d1b4fce3a4a (diff) | |
[1.6.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 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; } |
