I'm creating a new plugin, a listbox on toolbar.
This listbox allows you to change size of the selected text.
Here my code for add a listbox on my editor toolbar :
tinymce.create('tinymce.plugins.ListBoxPlugin', {
createControl: function(n, cm) {
switch (n) {
case 'listeStyle':
var mlb = cm.createListBox('listeStyle', {
title : 'Styles',
onselect : function(v) {
tinyMCE.execCommand('mceReplaceContent',false,'<span class='+v+'>{$selection}</span>');
}
});
<?php
foreach($matches[1] as $m){
echo "mlb.add('".$m."', '".$m."');";
}
?>
return mlb;
}
return null;
}
});
tinymce.PluginManager.add('listBox', tinymce.plugins.ListBoxPlugin);
So, for add elements on my listbox, it's with this line :
echo mlb.add('".$m."', '".$m."');
For example, with mlb.add('medium', '15');, i i have an element on my listbox named "medium" and when i click, i retrieve the value "15".
So, how can i do, using tinymce i guess, for display element in this listbox with css ? For example, for this element, i need to display him with the size "15".
What i need : 
What i have : 
Do you understand ? Thanks :)
Edit : I create this listbox dynamically