Mercurial > libervia-web
diff public/libervia.css @ 19:e8e3704eb97f
Added basic chat panel
- the chat panel show history, timestamp, and nickname (pretty similar to primitivus and wix chat window)
- JID has be rewritten to work with pyjamas, and is now in browser_side directory
- a widget can now be selected: the message send in uniBox will be sent to it if there is no explicit target prefix ("@something")
- a basic status panel is added under the uniBox, but not used yet
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 16 Apr 2011 01:46:01 +0200 |
parents | c80b75bf2e91 |
children | 8f4b1a8914c3 |
line wrap: on
line diff
--- a/public/libervia.css Fri Apr 15 15:30:31 2011 +0200 +++ b/public/libervia.css Sat Apr 16 01:46:01 2011 +0200 @@ -208,8 +208,35 @@ font-style: italic; } +/* Chat */ + +.chatText { + /* font-size: smaller; */ +} + +.chat_text_timestamp { + font-style: italic; +} + +.chat_text_nick { + font-weight: bold; +} + +.chat_text_mymess { + color: blue; +} + /* Test drag and drop */ .dragover { background: #8f8; } + +/* Misc */ + +.selected_widget { + /* this property is set when a widget is the current target of the uniBox + * (messages entered in unibox will be sent to this widget) + */ + border: 3px dashed red; +}