Opened 12 years ago

Closed 12 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:

  1. Add some paragraphs in CKEditor.
  2. Select all of the text, using Font Size tool to adjust the font size.
  3. The text font size changes as required, but the numbering's font size doesn't change.

Attachments (1)

numbering_font_size.png (55.1 KB) - added by IBM_RQM 12 years ago.

Download all attachments as: .zip

Change History (3)

Changed 12 years ago by IBM_RQM

Attachment: numbering_font_size.png added

comment:1 Changed 12 years ago by IBM_RQM

Could I get an update of this defect status. Thanks!

comment:2 Changed 12 years ago by Jakub Ś

Resolution: duplicate
Status: newclosed
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.

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