comparison public/libervia.css @ 34:ed935f763cc8

browser side: misc css/layout fixes - new ScrollPanelWrapper class, to try to handle correctly ScrollPanels in tables - removed   from EmptyPanel, because all td must appear empty, to use the absolute trick in ScrollPanelWrapper - when an empty panel is changed to a normal panel, cells widths are recalculated
author Goffi <goffi@goffi.org>
date Mon, 16 May 2011 03:10:11 +0200
parents 8152f019d334
children d43d6e4b9dc8
comparison
equal deleted inserted replaced
33:e70521e6d803 34:ed935f763cc8
187 187
188 /* Microblog */ 188 /* Microblog */
189 189
190 .microblogPanel { 190 .microblogPanel {
191 margin: auto; 191 margin: auto;
192 width: 90%; 192 width: 95% !important;
193 overflow: scroll;
194 } 193 }
195 194
196 .mb_panel_header{ 195 .mb_panel_header{
197 text-align: center; 196 text-align: center;
198 background-color: lightGray; 197 background-color: lightGray;
234 } 233 }
235 234
236 /* Chat & MUC Room */ 235 /* Chat & MUC Room */
237 236
238 .chatPanel { 237 .chatPanel {
238 height: 100%;
239 width: 100%;
239 } 240 }
240 241
241 .chatPanel_body { 242 .chatPanel_body {
243 height: 100%;
244 width: 100%;
242 } 245 }
243 246
244 .chatContent { 247 .chatContent {
245 overflow: auto; 248 overflow: auto;
246 } 249 }
248 .chatText { 251 .chatText {
249 /* font-size: smaller; */ 252 /* font-size: smaller; */
250 } 253 }
251 254
252 .chatArea { 255 .chatArea {
256 height:100%;
253 } 257 }
254 258
255 .chat_text_timestamp { 259 .chat_text_timestamp {
256 font-style: italic; 260 font-style: italic;
257 } 261 }
285 289
286 .warningPopup { 290 .warningPopup {
287 width: 100%; 291 width: 100%;
288 text-align: center; 292 text-align: center;
289 background-color: white; 293 background-color: white;
290 border: 1px solid #87B3FF; 294 padding: 4px 0;
291 padding: 4px;
292 } 295 }
293 296
294 .warningTarget { 297 .warningTarget {
295 font-weight: bold; 298 font-weight: bold;
296 } 299 }
370 /* this property is set when a widget is the current target of the uniBox 373 /* this property is set when a widget is the current target of the uniBox
371 * (messages entered in unibox will be sent to this widget) 374 * (messages entered in unibox will be sent to this widget)
372 */ 375 */
373 border: 3px dashed red; 376 border: 3px dashed red;
374 } 377 }
378