OK, I think the problem has to do with the section in vbulletin_textedit.js that starts with:
Code:
/**
* Set Size Context
*/
this.set_size_context = function(sizestate)
That section tries to call a function queryCommandValue('fontsize'), which I guess returns the numeric value of the font size of the selected text (like you set in a <font> tag), but doesn't know how to return the value if the font size is being set by CSS. A possible solution seem to have something to do with selection ranges, but I couldn't figure it out in the few minutes I spent on it. I figured maybe you know more js and could figure it out.