Ticket #5990 (closed New Feature: duplicate)
The ability to change the colour of list markers.
| Reported by: | JoeK | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | Core : Lists | Version: | |
| Keywords: | IBM | Cc: | damo |
Description
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>
Change History
comment:1 Changed 3 years ago by alfonsoml
- Status changed from new to closed
- Version SVN (CKEditor) deleted
- Resolution set to duplicate
- Milestone CKEditor 3.4 deleted
comment:2 Changed 3 years ago by mikehas
- Keywords IBM, UL, unordered list, apply class, apply style added; IBM removed
I see that this issue is closed and the resolution is "set to duplicate". The duplicate ticket references this ticket... endless loop? I'm curious if this feature is available, currently using fckeditor 2.6.6.
Is the ability to add a class to an unordered list available?
Note: See
TracTickets for help on using
tickets.

dup of #717