krb5 commit: Fix ordered list style
Benjamin Kaduk
kaduk at MIT.EDU
Thu Oct 11 11:40:32 EDT 2012
https://github.com/krb5/krb5/commit/6bcffe46896be56799cda9ae58b40a1256a09949
commit 6bcffe46896be56799cda9ae58b40a1256a09949
Author: Ben Kaduk <kaduk at mit.edu>
Date: Fri Oct 5 16:44:40 2012 -0400
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.
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 c280047..f283496 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;
+}
More information about the cvs-krb5
mailing list