Fix for Tavern Chat and extremely long posts

TL;DR
- made tavern chat posts word-wrap, with a max-height to prevent long posts from disrupting scrolling of site

Explanation:

Don't know if anyone noticed that random post by an unnamed person (blank name) with the text of "HELLOOOOO…[repeat a bazillion times].
Well this "broke" chat, meaning there was all of a sudden this side scroll action (which is particularly annoying with multitouch mouse pads). This adjustment prevents such a thing from happening again. Think of "code view" in forums, where text is in it's own little scrolly window.
This commit is contained in:
Andre Casey 2013-07-02 01:56:44 -07:00
parent 201fb6617b
commit 03a73bab72

View file

@ -21,6 +21,9 @@
padding-top:15px
padding-bottom:15px
border-bottom 1px solid #ddd
word-wrap: break-word;
max-height: 12em;
overflow: scroll;
&.highlight
background #EEE