Mercurial > libervia-web
comparison 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 |
comparison
equal
deleted
inserted
replaced
18:795d144fc1d2 | 19:e8e3704eb97f |
---|---|
206 | 206 |
207 .mb_entry_timestamp { | 207 .mb_entry_timestamp { |
208 font-style: italic; | 208 font-style: italic; |
209 } | 209 } |
210 | 210 |
211 /* Chat */ | |
212 | |
213 .chatText { | |
214 /* font-size: smaller; */ | |
215 } | |
216 | |
217 .chat_text_timestamp { | |
218 font-style: italic; | |
219 } | |
220 | |
221 .chat_text_nick { | |
222 font-weight: bold; | |
223 } | |
224 | |
225 .chat_text_mymess { | |
226 color: blue; | |
227 } | |
228 | |
211 /* Test drag and drop */ | 229 /* Test drag and drop */ |
212 | 230 |
213 .dragover { | 231 .dragover { |
214 background: #8f8; | 232 background: #8f8; |
215 } | 233 } |
234 | |
235 /* Misc */ | |
236 | |
237 .selected_widget { | |
238 /* this property is set when a widget is the current target of the uniBox | |
239 * (messages entered in unibox will be sent to this widget) | |
240 */ | |
241 border: 3px dashed red; | |
242 } |