﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
5990	The ability to change the colour of list markers.	Joe Kavanagh		"Selecting a list and changing the font colour will not change the marker colour. They remain black.

{{{
<ul style=""list-style-type: square;"">
	<li><span style=""color: rgb(0, 128, 0);"">one</span></li>
	<li><span style=""color: rgb(0, 128, 0);"">two</span></li>
	<li><span style=""color: rgb(0, 128, 0);"">three</span></li>
</ul>
}}}

The liststyle plugin could allow CSS to be added to the list element which would change the colour of the list, including its markers.

{{{
<ul style=""list-style-type: square;color: rgb(0, 128, 0);"">
	<li>one</li>
	<li>two</li>
	<li>three</li>
</ul>
}}}

This would not prevent the user from changing the lists font colour. Here the font colour for the second list item has been changed to red:

{{{
<ul style=""list-style-type: square; color: rgb(0, 128, 0);"">
	<li>one</li>
	<li><span style=""color: rgb(255, 0, 0);"">two</span></li>
	<li>three</li>
</ul>
}}}"	New Feature	closed	Normal		Core : Lists		duplicate	IBM	Damian
