On line 30 of yui_editor.admin.inc the profile list is themed using

return theme_table($header, $rows);

which will use drupal default table theme

if you have implemented a custom table in your theme it will not pick up on it

fix:

return theme('table',$header, $rows);