Opened 12 years ago

Closed 12 years ago

#9040 closed Bug (duplicate)

Size of bullets relative to text

Reported by: b_frimann Owned by:
Priority: Normal Milestone:
Component: Core : Styles Version: 3.6.3
Keywords: bullets Cc:

Description

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> 

Change History (1)

comment:1 Changed 12 years ago by Jakub Ś

Resolution: duplicate
Status: newclosed

DUP of #8741.

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy