Character count can get tricky, best way to do it is have the quote have a scroll bar, once it reaches a certain height.
Add this to your additional.css
Code:
/* Start scroll bar in quotes */
.bbcode_container div.bbcode_quote div.message {
max-height:300px;
width:auto;
overflow:auto;
}
/* End scroll bar in quotes */
Now what will happen, is it the quoted text is longer than 300px high, it will add the scroll bar inside the quote bubble.
You can adjust the height by changing, 300px in the above.