mirror of https://github.com/django/django.git
[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
This commit is contained in:
parent
eb32de2614
commit
6e6d1b1ba8
|
@ -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; }
|
||||
|
|
Loading…
Reference in New Issue