Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.

Bug 262659

Summary: Ordered lists don't appear properly when using the Nova theme
Product: Community Reporter: Joshua Bowles <jbowles>
Component: WebsiteAssignee: 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:
Description Flags
Difference between Nova and default none

Description Joshua Bowles CLA 2009-01-27 15:37:19 EST
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.
Comment 1 Nathan Gervais CLA 2009-01-27 16:33:10 EST
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?
Comment 2 Joshua Bowles CLA 2009-01-27 16:54:06 EST
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;
}
Comment 3 Nathan Gervais CLA 2009-01-28 14:00:45 EST
(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.
Comment 4 Joshua Bowles CLA 2009-01-29 14:51:56 EST
The Ordered lists are displaying properly again, thanks for the help.
Comment 5 Denis Roy CLA 2013-11-26 15:52:13 EST
(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"  :)