Modify ↓
#721 closed defect (fixed)
rst enumerated lists not formated correctly.
Reported by: | Owned by: | Jonas Borgström | |
---|---|---|---|
Priority: | normal | Milestone: | 0.8 |
Component: | wiki system | Version: | 0.7.1 |
Severity: | normal | Keywords: | rst enumerated list css |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
There is not style settings for rst enumerated lists. This results in all lists, regardless of what type of enumeration you use, it is rendered as numbers. I added the following to trac.css to solve the problem:
OL.loweralpha { list-style-type: lower-alpha } OL.upperalpha { list-style-type: upper-alpha } OL.lowerroman { list-style-type: lower-roman } OL.upperroman { list-style-type: upper-roman } OL.arabic { list-style-type: decimal }
Attachments (0)
Change History (5)
comment:1 by , 20 years ago
Version: | devel → 0.7.1 |
---|
comment:2 by , 20 years ago
comment:3 by , 20 years ago
Status: | new → assigned |
---|
Note:
See TracTickets
for help on using tickets.
I have create an example. Goto RstEnumBroken to see the local behavior and http://www.sage-community.org/index.cgi/wiki/RstEnumFixed to see the exact same page formatted correctly. Again, this was achieved by adding the following to trac.css:
tom