BUEditor, sometimes, is criticized to have a too simple interface having ugly buttons. Having no counter-arguments, I can only show how BUEditor can be themed in order to achieve the desired look.
The below is a demonstration of a themed interface of BUEditor's default editor, which has become very hard to be recognized as BUEditor. The buttons and the style is borrowed from the popular WYSIWYG editor: TinyMCE. Hopefully, its interface is not criticized too much.
<style type="text/css" media="all">
.editor-container {
border: 1px solid #ddd;
background-color: #f5f5f5;
}
.editor-container input {/* buttons */
border-color: #f5f5f5; /* or transparent*/
background-color: #f5f5f5;
}
.editor-container input:hover, .editor-container input.stay-clicked {
border-color: #06c;
background-color: #ccf;
}
</style>