]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Fix ordered list style
authorBen Kaduk <kaduk@mit.edu>
Fri, 5 Oct 2012 20:44:40 +0000 (16:44 -0400)
committerBen Kaduk <kaduk@mit.edu>
Thu, 11 Oct 2012 15:29:14 +0000 (11:29 -0400)
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.

doc/rst_source/_static/kerb.css

index c2800474a117136f0e54a43fb496f5616a02645f..f283496623b277cf85ea3c726c26a2d4e5208333 100644 (file)
@@ -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;
+}