﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
7813	Unable to apply more than one style to selected text	Wiktor Walc		"Not sure if we have already a ticket for it.

The XHTML sample is using classes for different styles and it works fine (it's possible to apply '''''bold and italic''''' to the same text):
{{{
coreStyles_bold	: { element : 'span', attributes : {'class': 'Bold'} },
coreStyles_italic	: { element : 'span', attributes : {'class': 'Italic'}},
coreStyles_underline	: { element : 'span', attributes : {'class': 'Underline'}},
}}}

However, when using the following:
{{{
config.coreStyles_bold = { element: 'span', attributes: { 'style': 'font-weight:bold'} };
config.coreStyles_italic = { element: 'span', attributes: { 'style': 'font-style:italic'} };
config.coreStyles_underline = { element: 'span', attributes: { 'style': 'text-decoration:underline'} };
}}}
CKEditor allows setting only one style on the same selection.
It's quite strange because each style uses a different CSS rule (font-weight/text-decoration etc.)."	Bug	confirmed	Normal		Core : Styles	3.0			johaness.noreiga@…
