diff options
author | Ben Kaduk <kaduk@mit.edu> | 2012-10-05 16:44:40 -0400 |
---|---|---|
committer | Ben Kaduk <kaduk@mit.edu> | 2012-10-11 11:29:14 -0400 |
commit | 6bcffe46896be56799cda9ae58b40a1256a09949 (patch) | |
tree | eea0cf27794b4ac61515cd2b1428af5f141c944e | |
parent | b8dcd3056ae4a248db85f6ff708d547fbda76cdc (diff) | |
download | krb5-6bcffe46896be56799cda9ae58b40a1256a09949.tar.gz krb5-6bcffe46896be56799cda9ae58b40a1256a09949.tar.xz krb5-6bcffe46896be56799cda9ae58b40a1256a09949.zip |
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.
-rw-r--r-- | doc/rst_source/_static/kerb.css | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/doc/rst_source/_static/kerb.css b/doc/rst_source/_static/kerb.css index c2800474a..f28349662 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; +} |