Opened 18 years ago
Closed 15 years ago
#6790 closed defect (fixed)
CSS: List bullet icons
| Reported by: | Markus.Staab | Owned by: | Remy Blank |
|---|---|---|---|
| Priority: | normal | Milestone: | 0.12.1 |
| Component: | roadmap | Version: | 0.10-stable |
| Severity: | normal | Keywords: | css, list, list-style-type, list-style-image |
| Cc: | Branch: | ||
| Release Notes: | |||
| API Changes: | |||
| Internal Changes: | |||
Description
bullet icons of lists in the wiki and the roadmap view are different…
while in the wiki there is no default definition for the list-style-type, in the roadmap it is defined as list-style-type:none;
see roadmap.css line 28
li.milestone {
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin-bottom:4em;
}
Attachments (0)
Change History (5)
comment:1 by , 18 years ago
| Keywords: | css list list-style-type list-style-image added |
|---|
comment:2 by , 17 years ago
| Component: | general → roadmap |
|---|
comment:3 by , 17 years ago
| Milestone: | → 0.12 |
|---|
comment:4 by , 15 years ago
| Milestone: | next-major-0.1X → 0.13 |
|---|---|
| Owner: | changed from to |
I have noticed that the other day, too.
comment:5 by , 15 years ago
| Milestone: | 0.13 → 0.12.1 |
|---|---|
| Resolution: | → fixed |
| Status: | new → closed |
The difference in appearance is due to the list of milestones in the roadmap being a <ul> list, so any list in the wiki text of a milestone is actually a second-level list.
Changing the list of milestones to be a list of <div class="milestone"> in a <div class="milestones"> fixes the issue.
Fixed in [9955].



Maybe there should be a global definition for list-style-type and list-style-image.