From: Ben Kaduk Date: Fri, 5 Oct 2012 20:44:40 +0000 (-0400) Subject: Fix ordered list style X-Git-Tag: krb5-1.11-alpha1~100 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6bcffe46896be56799cda9ae58b40a1256a09949;p=thirdparty%2Fkrb5.git Fix ordered list style Sphynx outputs class information that corresponds to its generated basic.css, which we do not include. This results in all lists, even nested lists, using arabic numerals. Import the class properties into kerb.css for now. --- diff --git a/doc/rst_source/_static/kerb.css b/doc/rst_source/_static/kerb.css index c2800474a1..f283496623 100644 --- a/doc/rst_source/_static/kerb.css +++ b/doc/rst_source/_static/kerb.css @@ -126,3 +126,25 @@ td.linenos pre { background-color: transparent; color: #aaa; } + +/* ordered lists */ + +ol.arabic { + list-style: decimal; +} + +ol.loweralpha { + list-style: lower-alpha; +} + +ol.upperalpha { + list-style: upper-alpha; +} + +ol.lowerroman { + list-style-type: lower-roman; +} + +ol.upperroman { + list-style-type: upper-roman; +}