﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
9040	Size of bullets relative to text	b_frimann		"When making a bulletlist or numberlist the bullet/number do not follow the same font size as the text. 

The code below is generated by ckeditor.
{{{
<ol start=""1"" style=""list-style-type: upper-alpha;""> 
<li> <span style=""font-size: 48px;"">test1</span></li> 
<li> <span style=""font-size: 48px;"">test2</span></li> 
<li> <span style=""font-size: 48px;"">test3</span></li> 
<li> <span style=""font-size: 48px;"">test4</span></li> 
<li> <span style=""font-size: 48px;"">test5</span></li> 
</ol> 
}}}

To fixed it I have to edit the HTML style manually to:
{{{
<ol start=""1"" style=""list-style-type: upper-alpha;""> 
<li style=""font-size: 48px;""> <span style=""font-size: 48px;"">test1</span></li> 
<li style=""font-size: 48px;""> <span style=""font-size: 48px;"">test2</span></li> 
<li style=""font-size: 48px;""> <span style=""font-size: 48px;"">test3</span></li> 
<li style=""font-size: 48px;""> <span style=""font-size: 48px;"">test4</span></li> 
<li style=""font-size: 48px;""> <span style=""font-size: 48px;"">test5</span></li> 
</ol> 
}}}"	Bug	closed	Normal		Core : Styles	3.6.3	duplicate	bullets	
