Skip to content

Commit

Permalink
Fix ordered list style
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
kaduk committed Oct 11, 2012
1 parent b8dcd30 commit 6bcffe4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions doc/rst_source/_static/kerb.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit 6bcffe4

Please sign in to comment.