Modify ↓
Ticket #721 (closed defect: fixed)
Opened 8 years ago
Last modified 6 years ago
rst enumerated lists not formated correctly.
| Reported by: | duff@… | Owned by: | jonas |
|---|---|---|---|
| Priority: | normal | Milestone: | 0.8 |
| Component: | wiki system | Version: | 0.7.1 |
| Severity: | normal | Keywords: | rst enumerated list css |
| Cc: | |||
| Release Notes: | |||
| API 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
Change History
comment:1 Changed 8 years ago by anonymous
- Version changed from devel to 0.7.1
comment:2 Changed 8 years ago by duff@…
comment:3 Changed 8 years ago by jonas
- Status changed from new to assigned
comment:4 Changed 8 years ago by jonas
- Resolution set to fixed
- Status changed from assigned to closed
Fixed in [921].
comment:5 Changed 7 years ago by anonymous
Whats gonna up ?
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:
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 }tom