Opened 13 years ago
Closed 13 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>
DUP of #8741.