Opened 13 years ago
Closed 13 years ago
#8605 closed Bug (duplicate)
The font size of numbering is not adjustable
Reported by: | IBM_RQM | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | |
Keywords: | Cc: |
Description
Browser: Firefox 3.6.24
Steps to reproduce:
- Add some paragraphs in CKEditor.
- Select all of the text, using Font Size tool to adjust the font size.
- The text font size changes as required, but the numbering's font size doesn't change.
Attachments (1)
Change History (3)
Changed 13 years ago by
Attachment: | numbering_font_size.png added |
---|
comment:1 Changed 13 years ago by
comment:2 Changed 13 years ago by
Resolution: | → duplicate |
---|---|
Status: | new → closed |
Version: | 3.6.2 |
This is a DUP of #5641 which leads to #717
If you style list element this is what you are getting:
<ul> <li> <span style="font-size:72px;">This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</span></li> </ul>
and what you want is
<ul style="font-size:72px;"> <li> <span style="font-size:72px;">This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</span></li> </ul>
The bahavior is correct as styling elements can't influence the whole list. What CKEditor is missing here is "list style dialog" described in #717.
Could I get an update of this defect status. Thanks!