diff options
author | Patrick Davison <snapwilliam@gmail.com> | 2013-02-28 23:09:41 -0800 |
---|---|---|
committer | Patrick Davison <snapwilliam@gmail.com> | 2013-02-28 23:09:41 -0800 |
commit | fe36da64909a2ad8b7f48be5b4307ed6115ecc39 (patch) | |
tree | 2e0ef78aabc2efb3fca2dde58f9c28c67b3466c0 /css | |
parent | 60fa55b49e8f4cf8570882b5eb6ad3f9bbb7885b (diff) | |
download | pathery-fe36da64909a2ad8b7f48be5b4307ed6115ecc39.tar.xz |
Chat /me and URL Linking
Diffstat (limited to 'css')
-rw-r--r-- | css/chat.css | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/css/chat.css b/css/chat.css index c8f15b6..9608093 100644 --- a/css/chat.css +++ b/css/chat.css @@ -35,12 +35,24 @@ .chatUsername { font-family: 'Trebuchet MS1', 'Trebuchet MS', sans-serif; font-size: 17px; - text-overflow: ellipsis; + text-overflow: clip; overflow:hidden; float: left; padding-top: 5px; width: 115px; } +.chatUsername:after { + content:":"; +} +.chatUsername.me { + text-align:right; +} +.chatUsername.me:after { + content:""; +} +.chatUsername.me:before { + content:"*"; +} .chatText { font-family: 'Trebuchet MS1', 'Trebuchet MS', sans-serif; font-size: 16px; |