| Summary: | Ordered lists don't appear properly when using the Nova theme | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Community | Reporter: | Joshua Bowles <jbowles> | ||||
| Component: | Website | Assignee: | phoenix.ui <phoenix.ui-inbox> | ||||
| Status: | RESOLVED FIXED | QA Contact: | |||||
| Severity: | normal | ||||||
| Priority: | P3 | CC: | denis.roy, jcayne, Michael_Rennie, nathan | ||||
| Version: | unspecified | ||||||
| Target Milestone: | --- | ||||||
| Hardware: | PC | ||||||
| OS: | Windows XP | ||||||
| Whiteboard: | |||||||
| Bug Depends on: | 262806 | ||||||
| Bug Blocks: | |||||||
| Attachments: |
|
||||||
Thanks for the report. Could you tell me the page in TPTP that you were dealing with so i can play with it in my test environment? Sure thing, the page is tptp/home/documents/webcontent/faq.php. I also just found out that this is specific to the midcolumn (and probabily fullcolumn) since I could have an ordered list in the rightcol with no problems. If it helps I was able to make the lists work if I added "list-style-image:none !important" in eclipse.org-common/themes/Nova/css/visual.css
ex.
#midcolumn ul, .midcolumn ol {
margin-left:10px;
list-style-image:none !important;
}
ol li {
margin-left:15px;
list-style-type:decimal;
list-style-image:none !important;
}
(In reply to comment #2) > If it > helps I was able to make the lists work if I added "list-style-image:none > !important" in eclipse.org-common/themes/Nova/css/visual.css > > Thanks, i've applied this to visual.css #midcolumn ol li, #fullcolumn ol li { list-style-image:none; } <ul>'s still need to display the graphic. Expect this to go live today. The Ordered lists are displaying properly again, thanks for the help. (In reply to Joshua Bowles from comment #4) > The Ordered lists are displaying properly again, thanks for the help. Almost five years later, let's call this one "fixed" :) |
Created attachment 123942 [details] Difference between Nova and default Steps To Reproduce: While trying out the new Nova theme on the TPTP page I noticed that ordered list items get replaced by the same arrow used for regular list items (see attached for screenshots). I was able to get the ordered lists back after playing around with eclipse.org-common/themes/Nova/css/visual.css. It seemed that the "#midcolumn li, #fullcolumn li" style had a higher priority than the <ol> style (if that makes sense, css is not my forte). It is possible this is just a new "feature" that I'm unaware of but it would be nice to have ordered lists without overriding the css.