diff options
Diffstat (limited to 'comm/chat/themes/conv.css')
-rw-r--r-- | comm/chat/themes/conv.css | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/comm/chat/themes/conv.css b/comm/chat/themes/conv.css new file mode 100644 index 0000000000..9b2aad9961 --- /dev/null +++ b/comm/chat/themes/conv.css @@ -0,0 +1,41 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +.ib-msg-txt { + white-space: pre-wrap; + word-wrap: break-word; +} + +.moz-txt-underscore { + text-decoration: underline; +} + +/* disable overflow in themes until bug 42676 is fixed in Mozilla */ +#Chat { + overflow: hidden !important; +} + +#Chat * { + overflow: visible !important; + unicode-bidi: plaintext; +} + +#unread-ruler { + margin: 0; + width: 100%; + border: none; + border-top: 1px dashed red; +} + +.ib-nick { + font-weight: bold; +} + +.ib-nick[left] { + color: grey; +} + +.monospaced { + font-family: monospace; +} |