Relaxed theme: Memberlist prefix styling
[KiwiIRC.git] / client / assets / css / style.css
1 html, body { height:100%; }
2 * { margin:0; padding:0; }
3
4
5
6 /* Few resets for within the kiwi container */
7 #kiwi {
8 overflow:hidden; position:relative;
9 height:100%;
10 }
11 #kiwi * { margin:0px; padding:0px; }
12 #kiwi p { margin:0.5em 0; }
13 #kiwi a { color:#36C; text-decoration:none; cursor:pointer; }
14 #kiwi a img { border:none; }
15
16
17 /**
18 * Main layout blocks
19 */
20 #kiwi #toolbar { position:absolute; top:0px; width:100%; display:none; }
21 #kiwi #panels { position:absolute; left:0px; right:200px; bottom:100px; top:100px; }
22 #kiwi #memberlists { position:absolute; right:0px; width:200px; bottom:100px; top:100px; overflow-y:auto; }
23 #kiwi #controlbox { position: absolute; bottom:0px; width:100%; display:none; }
24 #kiwi #memberlists_resize_handle {
25 position: absolute; width:10px; z-index:1; cursor:w-resize;
26 }
27
28
29 #kiwi #toolbar #tabs { margin-right: 200px; }
30 #kiwi #toolbar .panellist {
31 overflow: hidden;
32 white-space: nowrap;
33 display:block;
34 }
35 #kiwi #toolbar .panellist li {
36 float: left; list-style: inline;
37 display:inline; position:relative;
38 padding:5px; margin:3px;
39 cursor: pointer;
40 }
41
42 #kiwi #toolbar .panellist .active { padding-right:23px; }
43 #kiwi #toolbar .panellist .alert_highlight { font-weight: bold; }
44 #kiwi #toolbar .panellist .alert_activity { font-weight: bold; }
45 #kiwi #toolbar .panellist .alert_action { font-weight: bold; }
46
47 #kiwi #toolbar .panellist li .part { position: absolute; top: 8px; right: 5px; }
48 #kiwi #toolbar .panellist li .part:after { content:"[x]"; }
49 #kiwi #toolbar .panellist li img.icon { left:5px; top:2px; height:auto; width:auto; }
50
51 #kiwi #status_message {
52 background: #FFF;
53 border-bottom: 1px solid;
54 text-align: center;
55 }
56
57
58 #kiwi .panel_container { overflow-y:auto; height:100%; }
59
60
61
62 #kiwi .messages {
63 overflow-x:wrap;
64 border:none; display: none;
65 }
66 #kiwi .messages a {}
67 #kiwi .messages.active { display:block; }
68
69 #kiwi .messages .msg {}
70 #kiwi .messages .msg .time { display:inline; }
71 #kiwi .messages .msg .nick { display:inline; }
72 #kiwi .messages .msg .text { display:inline; }
73
74 #kiwi .messages .msg.action .nick { display:none; }
75 #kiwi .messages .msg.action .text { }
76 #kiwi .messages .msg.action.join { }
77 #kiwi .messages .msg.action.part .text { }
78 #kiwi .messages .msg.action.quit .text { }
79 #kiwi .messages .msg.action.kick .text { }
80 #kiwi .messages .msg.status .nick { display:none; }
81 #kiwi .messages .msg.status .text { }
82 #kiwi .messages .msg.topic .nick { display:none; }
83 #kiwi .messages .msg.topic .text { }
84 #kiwi .messages .msg.motd { }
85 #kiwi .messages .msg.motd .nick { }
86 #kiwi .messages .msg.motd .text { }
87 #kiwi .messages .msg.whois .nick { }
88 #kiwi .messages .msg.whois .text { }
89 #kiwi .messages .msg.error .text { }
90
91 #kiwi .messages .msg.global_nick_highlight { }
92 #kiwi .messages .msg.highlight { }
93
94
95
96 /* A member/nick list per channel */
97 #kiwi #memberlists { border-left: 1px solid #8A8A8A; }
98 #kiwi #memberlists.disabled { display:none; }
99 #kiwi #memberlists ul { display:none; }
100
101 /* The active channels nicklist */
102 #kiwi #memberlists ul.active { display:block; }
103 #kiwi #memberlists ul li { overflow-y:auto; overflow-x:hidden; cursor:pointer; }
104 #kiwi #memberlists ul li a.nick { }
105
106 /* The userbox shown when clicking a nick */
107 #kiwi #memberlists ul li .userbox { position:relative; }
108 #kiwi #memberlists ul li .userbox a { }
109 #kiwi #memberlists ul li .userbox a i { }
110
111
112
113 /**
114 * Control box
115 */
116 #kiwi #controlbox .input {
117 height:1.7em;
118 }
119
120 /* The nick label */
121 #kiwi #controlbox .input .nick { cursor: pointer; }
122 #kiwi #controlbox .input .nick a { }
123
124 /* Wrapper div around the text area input */
125 #kiwi #controlbox .input .input_wrap { display:inline; }
126
127 /* The textarea input */
128 #kiwi #controlbox .input .inp { white-space: nowrap; }
129
130
131 /* Nick change dialog showed when clicking the nick label */
132 #kiwi #controlbox .nickchange {
133 position: absolute;
134 background: #FFF;
135 }
136 #kiwi #controlbox .nickchange input { }
137 #kiwi #controlbox .nickchange button { }
138
139
140
141 /**
142 * Topic bar
143 */
144 #kiwi #topic { position:relative; height:2em; }
145 #kiwi #topic div {
146 position:absolute;
147 top:0; bottom:0; left:0; right:0;
148 overflow: hidden;
149 }
150
151
152
153
154
155 /**
156 * Server selection dialog
157 */
158 #kiwi .server_select { width:800px; margin:0 auto; overflow:hidden; }
159 #kiwi .server_select .more { display: none; }
160 #kiwi .server_select button { }
161 #kiwi .server_select input { }
162 #kiwi .server_select label { }
163 #kiwi .server_select br { clear:both; }
164 #kiwi .server_select .basic input { }
165 #kiwi .server_select .basic label { }
166 #kiwi .server_select .basic { border-bottom: 1px solid gray; margin-bottom:1em; }
167 #kiwi .server_select .basic .show_more { }
168 #kiwi .server_select .basic tr.pass { display:none; }
169 #kiwi .server_select.single_server .basic { border:none; }
170 #kiwi .server_select .status { }
171
172 /* When connected to an IRC server, .ok is set on the status div */
173 #kiwi .server_select .status.ok { }
174
175 /* IRC server connection error, .error is set on the status div */
176 #kiwi .server_select .status.error { }
177
178
179
180 /* Logo and title in the server selection dialog */
181 #kiwi .server_select .kiwi_logo { text-align: center; display:block; }
182 #kiwi .server_select .kiwi_logo h1 { }
183 #kiwi .server_select .kiwi_logo img { }
184
185
186
187 /* Icons in the top right corner */
188 #kiwi #toolbar .app_tools { float:right; }
189 #kiwi #toolbar .app_tools ul li {
190 display:inline; cursor:pointer;
191 }
192 #kiwi #toolbar .app_tools img { height:25px; width:25px; margin: 6px 0.7em 0 0; }
193
194
195
196 /* Settings applet */
197 #kiwi .settings {
198 width:900px;
199 margin:1em auto;
200 }
201 #kiwi .settings table td {
202 padding:0.5em 1em;
203 }
204
205
206
207
208 /**
209 * Reusable componants
210 */
211
212 #kiwi .divider-verticle {
213 border-left: 1px solid #CFCFCF;
214 border-right: 1px solid #FFFFFF;
215 position: absolute;
216 top:25px; bottom:25px;
217 right:0;
218 width:0;
219 }
220
221 #kiwi .divider-horizontal {
222 border-top: 1px solid #CFCFCF;
223 border-bottom: 1px solid #FFFFFF;
224 position: absolute;
225 left:25px; right:25px;
226 bottom:0;
227 height:0;
228 }
229
230
231
232
233
234 /**
235 * Themes
236 */
237
238
239 /* Relaxed theme */
240 #kiwi.theme_relaxed {
241 background: url(../img/background-light.png) left top repeat-x #E3E3E3;
242 color: #555555;
243 }
244 #kiwi.theme_relaxed,
245 #kiwi.theme_relaxed input,
246 #kiwi.theme_relaxed button,
247 #kiwi.theme_relaxed textarea {
248 font-family:Arial, Helvetica, sans-serif;
249 font-size:14px; line-height:1.4em;
250 }
251 #kiwi.theme_relaxed input, textarea {
252 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5),0 1px 0px rgba(255, 255, 255, 0.3);
253 border: none;
254 border-radius: 3px;
255 }
256 #kiwi.theme_relaxed #toolbar {
257 background-color:#1B1B1B; font-size:0.9em;
258 }
259 #kiwi.theme_relaxed #controlbox { background-color:#1B1B1B; }
260 #kiwi.theme_relaxed #memberlists_resize_handle {
261 /*background:url('../img/resize_handle.png') no-repeat; background-position:center;*/
262 }
263 #kiwi.theme_relaxed #toolbar .panellist li {
264 line-height: 1.4em;
265 vertical-align: middle;
266
267 border-radius:5px;
268 -moz-border-radius:5px;
269 -webkit-border-radius:5px;
270 -khtml-border-radius:5px;
271 behavior: url(border-radius.htc);
272
273 background-image: -webkit-gradient(
274 linear,
275 left top,
276 left bottom,
277 color-stop(0.38, rgb(238,238,238)),
278 color-stop(0.68, rgb(209,209,209))
279 );
280 background-image: -moz-linear-gradient(
281 center top,
282 rgb(238,238,238) 38%,
283 rgb(209,209,209) 68%
284 );
285
286 border: 1px solid #333;
287 background-color: #eee;
288 }
289
290 #kiwi.theme_relaxed #toolbar .panellist .alert_highlight { background: #990000; }
291 #kiwi.theme_relaxed #toolbar .panellist .alert_activity { background: #009900; }
292 #kiwi.theme_relaxed #toolbar .panellist .alert_action { }
293
294 #kiwi.theme_relaxed #toolbar .panellist .active { padding-right:23px; }
295 #kiwi.theme_relaxed #toolbar .panellist li .part {
296 background:url('../img/redcross.png'); width:14px; height:14px;
297 }
298 #kiwi.theme_relaxed #toolbar .panellist li .part:after { content:""; }
299
300 #kiwi.theme_relaxed #toolbar .panellist li.server span { background:url(../img/server_tab.png) no-repeat; padding-left:23px; }
301
302 /* Tab texts are within a span */
303 #kiwi.theme_relaxed #toolbar .panellist li span { line-height:20px; vertical-align:middle; display:block; }
304
305 #kiwi.theme_relaxed #status_message {
306 background: #FEEFB3; color: #9F6000;
307 border-bottom: 1px solid;
308 padding: 0.9em;
309 text-align: center; font-size:1.1em;
310 }
311 #kiwi.theme_relaxed #status_message.err { color:#D8000C; background:#FFBABA; }
312
313 #kiwi.theme_relaxed .messages { color: #333333; }
314 #kiwi.theme_relaxed .messages.active { }
315 #kiwi.theme_relaxed .messages a { text-decoration:none; }
316
317 #kiwi.theme_relaxed .messages .msg { border-bottom: 1px solid #DEDEDE; padding: 1px; font-family:arial; font-size:0.9em; }
318 #kiwi.theme_relaxed .messages .msg .time { width:6em; float:left; color:#777; display:none; }
319 #kiwi.theme_relaxed .messages .msg .nick { width:11em; float:left; font-size:12px; font-family:Arial; text-align:left; padding: 5px; overflow:hidden; }
320 #kiwi.theme_relaxed .messages .msg .text { display:block; margin-left:12em; border-left: 1px solid #DEDEDE; white-space:pre-wrap; word-wrap:break-word; font-family:arial; padding:5px; }
321
322 #kiwi.theme_relaxed.narrow .messages .msg .nick { width: auto; }
323 #kiwi.theme_relaxed.narrow .messages .msg .text { margin-left: 1em; border:none; }
324
325 #kiwi.theme_relaxed .messages .msg.action .nick { }
326 #kiwi.theme_relaxed .messages .msg.action .text { margin-left:9em; color:#009900; border-left:none; font-style:italic; }
327 #kiwi.theme_relaxed .messages .msg.action.join { color:#009900; }
328 #kiwi.theme_relaxed .messages .msg.action.part .text { color:#900; }
329 #kiwi.theme_relaxed .messages .msg.action.quit .text { color:#900; }
330 #kiwi.theme_relaxed .messages .msg.action.kick .text { color:#900; }
331 #kiwi.theme_relaxed .messages .msg.status .nick { }
332 #kiwi.theme_relaxed .messages .msg.status .text { color:#990000; margin-left:9em; border-left:none; font-weight:bold; }
333 #kiwi.theme_relaxed .messages .msg.topic .nick { display:none; }
334 #kiwi.theme_relaxed .messages .msg.topic .text { color:#009900; margin-left:9em; font-style: italic; border-left:none; }
335 #kiwi.theme_relaxed .messages .msg.motd { border:none; }
336 /*#kiwi.theme_relaxed .messages .msg.motd .nick { display:none; }*/
337 #kiwi.theme_relaxed .messages .msg.motd .text { color:#666; font-family:monospace; }
338 #kiwi.theme_relaxed .messages .msg.whois .nick { font-weight:normal; }
339 #kiwi.theme_relaxed .messages .msg.whois .text { margin-left:18em; padding-left:1em; border-left:1px dashed #999; }
340 #kiwi.theme_relaxed .messages .msg.error .text {
341 border:1px solid #A33F3F; background-color:#D28A8A;
342 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
343 }
344
345 #kiwi.theme_relaxed .messages .msg.global_nick_highlight,
346 #kiwi.theme_relaxed .messages .msg.highlight { background:#D9D9D9; }
347
348 /* Narrow styling (window width < 400px) */
349 #kiwi.theme_relaxed.narrow .messages .msg .nick { width: auto; }
350 #kiwi.theme_relaxed.narrow .messages .msg .text { margin-left: 1em; border:none; }
351 #kiwi.theme_relaxed.narrow .messages .msg.action .text { margin-left: 1em; }
352
353
354 #kiwi.theme_relaxed .messages .msg .media { margin-left:0.5em; }
355 #kiwi.theme_relaxed .messages .msg .media .media_close { font-size:0.9em; }
356 #kiwi.theme_relaxed .messages .msg .media .media_content { margin:10px 0 0 10px; overflow:hidden; }
357 #kiwi.theme_relaxed .messages .msg .media .media_content img { padding:3px; border:1px solid gray; }
358 #kiwi.theme_relaxed .messages .msg .media .media_content > .content {
359 background: white;
360 overflow: hidden;
361 padding: 10px;
362 border: #DDD 1px solid;
363 border-top-color: #EEE;
364 border-bottom-color: #BBB;
365 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
366 -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.15);
367 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
368 border-radius: 5px;
369 float: left;
370 }
371
372 #kiwi.theme_relaxed .messages .msg .media.twitter .media_content > .content {
373 background: transparent;
374 border:none;
375 overflow: hidden;
376 box-shadow: none;
377 padding: 0;
378 }
379 #kiwi.theme_relaxed .messages .msg .media.reddit .thumbnail_nsfw {
380 display: inline-block;
381 float: left;
382 }
383 #kiwi.theme_relaxed .messages .msg .media.reddit .thumbnail { float:left; margin-right: 0.5em; }
384
385
386 #kiwi.theme_relaxed #memberlists {
387 background-color: #DADADA;
388 border-left: 1px solid #8A8A8A;
389 }
390 #kiwi.theme_relaxed.narrow #memberlists { display:none; }
391 #kiwi.theme_relaxed #memberlists ul { list-style: none; }
392 #kiwi.theme_relaxed #memberlists ul.active { }
393 #kiwi.theme_relaxed #memberlists ul li { padding: 0.2em 1em; }
394 #kiwi.theme_relaxed #memberlists ul li:hover {
395 border-left: 5px solid #88C56A;
396 -webkit-transition: 0.2s ease;
397 -moz-transition: 0.2s ease;
398 -ms-transition: 0.2s ease;
399 -o-transition: 0.2s ease;
400 transition: 0.2s ease;
401 }
402 #kiwi.theme_relaxed #memberlists ul li a.nick { display:block; color:black; }
403
404 #kiwi.theme_relaxed #memberlists ul li .userbox { margin:4px 1em 5px 1em; padding-bottom:0.7em; font-size:.9em; }
405 #kiwi.theme_relaxed #memberlists ul li .userbox a { display:block; text-decoration:none; margin-bottom:2px; }
406 #kiwi.theme_relaxed #memberlists ul li .userbox a i { font-size:1.1em; margin-right:5px; }
407
408 /* User mode styles */
409 #kiwi.theme_relaxed #memberlists ul li .prefix {
410 display:none;
411 width:20px; height:20px;
412 border-radius: 5px;
413 margin: 0 7px 0 0;
414 font-size:12px; text-align: center;
415 color: #E3E3E3;
416 /* text-indent: -1000px; */
417 }
418 /* Most important modes towards the bottom - they override the top ones! */
419 #kiwi.theme_relaxed #memberlists ul li.mode.v .prefix { display:inline-block; background:#b3b3b3; }
420 #kiwi.theme_relaxed #memberlists ul li.mode.h .prefix { display:inline-block; background:#b5b447; }
421 #kiwi.theme_relaxed #memberlists ul li.mode.o .prefix { display:inline-block; background:#47b547; }
422 #kiwi.theme_relaxed #memberlists ul li.mode.a .prefix { display:inline-block; background:#b54747; }
423 #kiwi.theme_relaxed #memberlists ul li.mode.q .prefix { display:inline-block; background:#8547b5; }
424
425 #kiwi.theme_relaxed #controlbox .input {
426 background:#fff; margin:3px;
427 height:1.7em;
428 border-radius:5px;
429 -moz-border-radius:5px;
430 -webkit-border-radius:5px;
431 -khtml-border-radius:5px;
432 }
433 #kiwi.theme_relaxed #controlbox .input .nick { text-align: right; width:11em; left:0px; position:absolute; padding:2px; overflow:hidden; }
434 #kiwi.theme_relaxed #controlbox .input .nick a { text-decoration:none; color:black; }
435
436 #kiwi.theme_relaxed.narrow #controlbox .input .nick { display:none; }
437 #kiwi.theme_relaxed.narrow #controlbox .input .input_wrap { left:7px; }
438
439 #kiwi.theme_relaxed #controlbox .input .input_wrap {
440 position:absolute;
441 right:7px; left: 12.2em;
442 height:1.7em;
443 }
444 #kiwi.theme_relaxed #controlbox .input .inp {
445 line-height:1.7em;
446 border: medium none;
447 box-shadow: none;
448 border-radius: 0;
449 outline:none; resize:none;
450 overflow:hidden;
451 position:relative;
452 height:100%; width:100%;
453 display: block;
454 }
455
456
457 #kiwi.theme_relaxed #controlbox .nickchange {
458 padding:10px; left: 0px;
459 background: #1B1B1B; color:#eeeeee;
460 }
461 #kiwi.theme_relaxed #controlbox .nickchange input { padding:0.3em 0.5em; }
462 #kiwi.theme_relaxed #controlbox .nickchange button { padding:0.5em; }
463
464
465
466 #kiwi.theme_relaxed #topic { background-color:#1B1B1B; padding-bottom:2px; }
467 #kiwi.theme_relaxed #topic div {
468 padding: 0.2em 1em;
469 text-align: center;
470 box-shadow: none;
471 border-radius: 0;
472 background-color:#FFF;
473 height: 1.5em;
474 overflow: hidden;
475 outline: none;
476 white-space: nowrap;
477 }
478 #kiwi.theme_relaxed #topic:hover div {
479 min-height:1.5em;
480 white-space:pre-wrap; word-wrap:break-word;
481 overflow:visible;
482 background-color:#FFF;
483 z-index: 1;
484 height:auto; bottom:auto;
485 border-bottom: 2px solid #1B1B1B;
486 }
487
488
489 #kiwi.theme_relaxed #toolbar .app_tools { width:200px; padding-left:10px; color:#D4D4D4; }
490 #kiwi.theme_relaxed.narrow #toolbar #tabs { margin-right:0; }
491 #kiwi.theme_relaxed.narrow #toolbar .app_tools { width:auto; }
492 #kiwi.theme_relaxed #toolbar .app_tools ul li {
493 font-size:26px;
494 -webkit-transition: all .3s ease;
495 -moz-transition: all .3s ease;
496 transition: all .3s ease;
497 margin-left:10px;
498 }
499 #kiwi.theme_relaxed #toolbar .app_tools ul li:hover { color:#88C56A; }
500 #kiwi.theme_relaxed #toolbar .app_tools img { }
501
502
503 /* The server select dialog */
504 #kiwi.theme_relaxed .server_select { width:730px; padding:3em 0 2em 0; margin: 0 auto; }
505 #kiwi.theme_relaxed .server_select .more { display: none; width:270px; margin:0 auto; }
506 #kiwi.theme_relaxed .server_select table tr td { padding:5px; }
507 #kiwi.theme_relaxed .server_select button { float:right; padding:3px 7px; }
508 #kiwi.theme_relaxed .server_select input { padding:3px 7px; width:150px; }
509 #kiwi.theme_relaxed .server_select label { }
510 #kiwi.theme_relaxed .server_select br { clear:both; }
511 #kiwi.theme_relaxed .server_select .basic input, .server_select .basic button { font-size:1em; padding:0.5em 1em; }
512 #kiwi.theme_relaxed .server_select .basic input { width:170px; }
513 #kiwi.theme_relaxed .server_select .basic label { font-size:1.3em; margin-top:4px; }
514 #kiwi.theme_relaxed .server_select .basic tr.have_pass { font-size:0.8em; }
515 #kiwi.theme_relaxed .server_select .basic tr.channel td { padding-top:1em; }
516 #kiwi.theme_relaxed .server_select .basic { border-bottom: 1px dashed gray; margin-bottom:1em; }
517 #kiwi.theme_relaxed .server_select .basic .show_more { display: block; width:110px; margin:10px 0 0 0; font-size:0.8em; background: url(../img/more.png) no-repeat right 7px; }
518 #kiwi.theme_relaxed .server_select.single_server .basic { border:none; }
519 #kiwi.theme_relaxed .server_select .status { text-align: center; font-weight: bold; padding:1em; }
520 #kiwi.theme_relaxed .server_select .status.ok { }
521 #kiwi.theme_relaxed .server_select .status.error {
522 border:1px solid #A33F3F; background-color:#D28A8A;
523 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
524 }
525
526
527 #kiwi.theme_relaxed .server_select .kiwi_logo { text-align: center; display:block; }
528 #kiwi.theme_relaxed .server_select .kiwi_logo h1 {
529 font-size:20px;
530 line-height:48px; vertical-align: middle;
531 color: #555555;
532 }
533 #kiwi.theme_relaxed .server_select .kiwi_logo img { }
534
535
536
537
538
539
540
541
542 /**
543 * Mini theme
544 */
545 #kiwi.theme_mini {
546 background: #FFF;
547 color: #555555;
548 }
549 #kiwi.theme_mini,
550 #kiwi.theme_mini input,
551 #kiwi.theme_mini button,
552 #kiwi.theme_mini textarea {
553 font-family:Arial, Helvetica, sans-serif;
554 font-size:14px; line-height:1.4em;
555 }
556 #kiwi.theme_mini input, textarea {
557 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5),0 1px 0px rgba(255, 255, 255, 0.3);
558 border: none;
559 border-radius: 3px;
560 }
561 #kiwi.theme_mini #toolbar {
562 background-color:#1B1B1B; font-size:0.9em;
563 }
564 #kiwi.theme_mini #controlbox { background-color:#1B1B1B; }
565 #kiwi.theme_mini #memberlists_resize_handle {
566 display:none; width:0;
567 }
568 #kiwi.theme_mini #toolbar .panellist li {
569 line-height: 1.4em;
570 vertical-align: middle;
571
572 border-radius:5px;
573 -moz-border-radius:5px;
574 -webkit-border-radius:5px;
575 -khtml-border-radius:5px;
576
577 border: 1px solid #333;
578 background-color: #eee;
579 }
580
581 #kiwi.theme_mini #toolbar #tabs { margin-right:0 !important; }
582 #kiwi.theme_mini #toolbar .panellist .alert_highlight { background: #990000; }
583 #kiwi.theme_mini #toolbar .panellist .alert_activity { background: #009900; }
584 #kiwi.theme_mini #toolbar .panellist .alert_action { }
585
586 #kiwi.theme_mini #toolbar .panellist .active { padding-right:23px; }
587 #kiwi.theme_mini #toolbar .panellist li .part {
588 background:url('../img/redcross.png'); width:14px; height:14px;
589 }
590 #kiwi.theme_mini #toolbar .panellist li .part:after { content:""; }
591
592 #kiwi.theme_mini #toolbar .panellist li.server span { background:url(../img/server_tab.png) no-repeat; padding-left:23px; }
593
594 /* Tab texts are within a span */
595 #kiwi.theme_mini #toolbar .panellist li span { line-height:20px; vertical-align:middle; display:block; }
596
597 #kiwi.theme_mini #status_message {
598 background: #FEEFB3; color: #9F6000;
599 border-bottom: 1px solid;
600 padding: 0.9em;
601 text-align: center; font-size:1.1em;
602 }
603 #kiwi.theme_mini #status_message.err { color:#D8000C; background:#FFBABA; }
604
605 #kiwi.theme_mini .messages { color: #333333; }
606 #kiwi.theme_mini .messages.active { }
607 #kiwi.theme_mini .messages a { text-decoration:none; }
608
609 #kiwi.theme_mini .messages .msg { border-bottom: 1px solid #DEDEDE; padding: 5px; font-family:arial; font-size:0.9em; }
610 #kiwi.theme_mini .messages .msg .time { display:none; }
611 #kiwi.theme_mini .messages .msg .nick { display:block; font-family:Arial; text-transform:capitalize; }
612 #kiwi.theme_mini .messages .msg .text { display:block; white-space:pre-wrap; word-wrap:break-word; font-family:arial; }
613
614 #kiwi.theme_mini .messages .msg.action .nick { }
615 #kiwi.theme_mini .messages .msg.action .text { color:#009900; border-left:none; font-style:italic; }
616 #kiwi.theme_mini .messages .msg.action.join { color:#009900; }
617 #kiwi.theme_mini .messages .msg.action.part .text { color:#900; }
618 #kiwi.theme_mini .messages .msg.action.quit .text { color:#900; }
619 #kiwi.theme_mini .messages .msg.action.kick .text { color:#900; }
620 #kiwi.theme_mini .messages .msg.status .nick { }
621 #kiwi.theme_mini .messages .msg.status .text { color:#990000; border-left:none; font-weight:bold; }
622 #kiwi.theme_mini .messages .msg.topic .nick { display:none; }
623 #kiwi.theme_mini .messages .msg.topic .text { color:#009900; font-style: italic; border-left:none; }
624 #kiwi.theme_mini .messages .msg.motd { border:none; }
625 /*#kiwi.theme_mini .messages .msg.motd .nick { display:none; }*/
626 #kiwi.theme_mini .messages .msg.motd .text { color:#666; }
627 #kiwi.theme_mini .messages .msg.whois .nick { font-weight:normal; }
628 #kiwi.theme_mini .messages .msg.whois .text { padding-left:1em; border-left:1px dashed #999; }
629 #kiwi.theme_mini .messages .msg.error .text {
630 border:1px solid #A33F3F; background-color:#D28A8A;
631 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
632 }
633
634 #kiwi.theme_mini .messages .msg.global_nick_highlight,
635 #kiwi.theme_mini .messages .msg.highlight { background:#D9D9D9; }
636
637
638
639 #kiwi.theme_mini #memberlists {
640 background-color: #DADADA;
641 border-left: 1px solid #8A8A8A;
642 display:none;
643 width:0px;
644 }
645 #kiwi.theme_mini #memberlists ul { list-style: none; }
646 #kiwi.theme_mini #memberlists ul.active { }
647 #kiwi.theme_mini #memberlists ul li { padding: 0.2em 1em; }
648 #kiwi.theme_mini #memberlists ul li:hover {
649 border-left: 5px solid #88C56A;
650 -webkit-transition: 0.2s ease;
651 -moz-transition: 0.2s ease;
652 -ms-transition: 0.2s ease;
653 -o-transition: 0.2s ease;
654 transition: 0.2s ease;
655 }
656 #kiwi.theme_mini #memberlists ul li a.nick { display:block; color:black; }
657
658 #kiwi.theme_mini #memberlists ul li .userbox { margin:0 1em 5px 1em; padding-bottom:0.7em; font-size:.9em; }
659 #kiwi.theme_mini #memberlists ul li .userbox a { display:block; text-decoration:none; margin-bottom:2px; }
660 #kiwi.theme_mini #memberlists ul li .userbox a i { font-size:1.1em; margin-right:5px; }
661
662
663 #kiwi.theme_mini #controlbox .input {
664 background:#fff; margin:3px;
665 height:1.7em;
666 }
667 #kiwi.theme_mini #controlbox .input .nick { display:none; }
668 #kiwi.theme_mini #controlbox .input .nick a { text-decoration:none; color:black; }
669 #kiwi.theme_mini #controlbox .input .input_wrap {
670 position:absolute;
671 right:3px; left:3px;
672 height:1.7em;
673 }
674 #kiwi.theme_mini #controlbox .input .inp {
675 line-height:1.7em;
676 border: medium none;
677 box-shadow: none;
678 border-radius: 0;
679 resize:none;
680 overflow:hidden;
681 position:relative;
682 height:100%; width:100%;
683 display: block;
684 }
685
686
687 #kiwi.theme_mini #controlbox .nickchange {
688 padding:10px; left: 0px;
689 background: #1B1B1B; color:#eeeeee;
690 }
691 #kiwi.theme_mini #controlbox .nickchange input { padding:0.3em 0.5em; }
692 #kiwi.theme_mini #controlbox .nickchange button { padding:0.5em; }
693
694
695
696 #kiwi.theme_mini #topic { display:none; }
697 #kiwi.theme_mini #topic div {
698 top:2; bottom:2px; left:0; width:100%;
699 padding: 0.2em 1em;
700 text-align: center;
701 box-shadow: none;
702 border-radius: 0;
703 background-color:#FFF;
704 height: 1.5em;
705 overflow: hidden;
706 outline: none;
707 }
708
709
710 #kiwi.theme_mini #toolbar .app_tools { padding-left:10px; color:#D4D4D4; }
711 #kiwi.theme_mini #toolbar .app_tools ul li {
712 font-size:26px;
713 -webkit-transition: all .3s ease;
714 -moz-transition: all .3s ease;
715 transition: all .3s ease;
716 margin-left:10px;
717 }
718 #kiwi.theme_mini #toolbar .app_tools ul li:hover { color:#88C56A; }
719 #kiwi.theme_mini #toolbar .app_tools img { }
720
721
722 /* The server select dialog */
723 #kiwi.theme_mini .server_select { padding:3em 0 2em 0; margin: 0 auto; width:100%; }
724 #kiwi.theme_mini .server_select .more { display:none; }
725 #kiwi.theme_mini .server_select button { display:block; padding:3px 7px; margin:0 auto; }
726 #kiwi.theme_mini .server_select input.nick {
727 float:none; display:block; width:80%;
728 padding:0.5em 1em; margin:0 auto;
729 text-align: center;
730 }
731 #kiwi.theme_mini .server_select label { display:none; }
732 #kiwi.theme_mini .server_select br { clear:both; }
733 #kiwi.theme_mini .server_select .basic { border:none; }
734 #kiwi.theme_mini .server_select .basic table { width:100%; }
735 #kiwi.theme_mini .server_select .basic table tr.channel,
736 #kiwi.theme_mini .server_select .basic table tr.pass,
737 #kiwi.theme_mini .server_select .basic table tr.have_pass { display:none; }
738 #kiwi.theme_mini .server_select .basic .show_more { display:none !important; }
739 #kiwi.theme_mini .server_select.single_server .basic { border:none; }
740 #kiwi.theme_mini .server_select .status { text-align: center; font-weight: bold; padding:1em; }
741 #kiwi.theme_mini .server_select .status.ok { }
742 #kiwi.theme_mini .server_select .status.error {
743 border:1px solid #A33F3F; background-color:#D28A8A;
744 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
745 }
746
747 #kiwi.theme_mini .server_select .divider-verticle {
748 display:none;
749 }
750 #kiwi.theme_mini .server_select .server_details {
751 position: relative !important;
752 float: none !important;
753 width: auto !important;
754 padding: 0 !important;
755 margin: 2em 0 0 0 !important;
756 }
757 #kiwi.theme_mini .server_select .about_kiwi { display:none; }
758
759
760
761
762
763
764
765
766
767 /* CLI theme */
768 #kiwi.theme_cli { background:#222222; color:#6d6d6d; }
769 #kiwi.theme_cli,
770 #kiwi.theme_cli input,
771 #kiwi.theme_cli button,
772 #kiwi.theme_cli textarea {
773 font-family:Arial, Helvetica, sans-serif;
774 font-size:14px; line-height:1.4em;
775 }
776
777 #kiwi.theme_cli #controlbox { background:#111111; border-top:1px solid #444444; color:#909090; font-size:1.3em; line-height:2em; margin:3px; }
778 #kiwi.theme_cli #controlbox .input_wrap:before { content:"> " }
779 #kiwi.theme_cli #controlbox .input { background:none; border:none;}
780 #kiwi.theme_cli #controlbox .input .nick { line-height:1.7em; padding:0; text-align: right; width:11em; left:0px; position:absolute; overflow:hidden; }
781 #kiwi.theme_cli #controlbox .input .input_wrap {
782 position:absolute;
783 right:7px; left: 12.2em;
784 height:1.7em;
785 }
786 #kiwi.theme_cli #controlbox .input .inp {
787 line-height:1.4em;
788 font-size:1.3em;
789 background:transparent; color:#909090;
790 border: medium none;
791 box-shadow: none;
792 border-radius: 0;
793 outline:none; resize:none;
794 overflow:hidden;
795 position:absolute;
796 height:99%; width:98%;
797 display: inline;
798 padding-left:0.5em;
799 }
800
801 #kiwi.theme_cli #topic { background:#111111; height:2em; border-bottom:1px solid #444444; border-top:1px solid #444444; }
802 #kiwi.theme_cli #topic div {
803 width:100%; height: 1.5em;
804 padding: 0.2em 1em;
805 text-align: center;
806 color:#6d6d6d;
807 border:none; outline:none;
808 overflow: hidden;
809 white-space: nowrap;
810 }
811 #kiwi.theme_cli #topic:hover div {
812 min-height:1.5em;
813 white-space:pre-wrap; word-wrap:break-word;
814 overflow:visible;
815 background-color:#111111;
816 z-index: 1;
817 height:auto; bottom:auto;
818 border-bottom: 1px solid #444444;
819 }
820
821 #kiwi.theme_cli #toolbar .app_tools { width:200px; padding-left:10px; color:#D4D4D4; }
822 #kiwi.theme_cli #toolbar .app_tools ul li {
823 font-size:26px;
824 -webkit-transition: all .3s ease;
825 -moz-transition: all .3s ease;
826 transition: all .3s ease;
827 margin-left:10px;
828 }
829 #kiwi.theme_cli #toolbar .app_tools ul li:hover { color:#88C56A; }
830 #kiwi.theme_cli #toolbar .app_tools img { }
831
832 #kiwi.theme_cli #toolbar .panellist li {
833 line-height: 1.4em;
834 vertical-align: middle;
835
836 border-radius:5px;
837 -moz-border-radius:5px;
838 -webkit-border-radius:5px;
839 -khtml-border-radius:5px;
840 behavior: url(border-radius.htc);
841
842 background-image: -webkit-gradient(
843 linear,
844 left top,
845 left bottom,
846 color-stop(0.38, rgb(238,238,238)),
847 color-stop(0.68, rgb(209,209,209))
848 );
849 background-image: -moz-linear-gradient(
850 center top,
851 rgb(238,238,238) 38%,
852 rgb(209,209,209) 68%
853 );
854
855 border: 1px solid #333;
856 background-color: #eee;
857 }
858
859 #kiwi.theme_cli #toolbar .panellist .alert_highlight { background: #990000; }
860 #kiwi.theme_cli #toolbar .panellist .alert_activity { background: #009900; }
861 #kiwi.theme_cli #toolbar .panellist .alert_action { }
862
863 #kiwi.theme_cli #toolbar .panellist .active { padding-right:23px; }
864 #kiwi.theme_cli #toolbar .panellist li .part {
865 background:url('../img/redcross.png'); width:14px; height:14px;
866 }
867 #kiwi.theme_cli #toolbar .panellist li .part:after { content:""; }
868
869 #kiwi.theme_cli #toolbar .panellist li.server span { background:url(../img/server_tab.png) no-repeat; padding-left:23px; }
870
871 /* Tab texts are within a span */
872 #kiwi.theme_cli #toolbar .panellist li span { line-height:20px; vertical-align:middle; display:block; }
873
874
875 #kiwi.theme_cli #memberlists { background:#222222; }
876 #kiwi.theme_cli #memberlists ul li { padding: 0.2em 1em; }
877 #kiwi.theme_cli #memberlists ul li a.nick { color:#6d6d6d; }
878 #kiwi.theme_cli #memberlists ul li:hover {
879 border-left: 5px solid #88C56A;
880 -webkit-transition: 0.2s ease;
881 -moz-transition: 0.2s ease;
882 -ms-transition: 0.2s ease;
883 -o-transition: 0.2s ease;
884 transition: 0.2s ease;
885 }
886
887 #kiwi.theme_cli #memberlists ul li .userbox { margin:0 1em 0 1em; padding-bottom:0.4em; font-size:.9em; }
888 #kiwi.theme_cli #memberlists ul li .userbox a { display:block; text-decoration:none; margin-bottom:2px; }
889 #kiwi.theme_cli #memberlists ul li .userbox a i { font-size:1.1em; margin-right:5px; }
890 #kiwi.theme_cli #memberlists ul li .userbox .divider-horizontal { display:none; }
891
892
893 #kiwi.theme_cli .messages .msg > div { color:#6d6d6d; font-family: Inconsolata, Consolas, 'courier new', monospace; }
894 #kiwi.theme_cli .messages .msg { border: none; }
895 #kiwi.theme_cli .messages .msg .time { display:inline; margin-right:1em; color:#777; }
896 #kiwi.theme_cli .messages .msg .nick { display:inline; margin-right:1em; }
897 #kiwi.theme_cli .messages .msg .nick:before { content:"<"; }
898 #kiwi.theme_cli .messages .msg .nick:after { content:">"; }
899 #kiwi.theme_cli .messages .msg .text { white-space:pre-wrap; word-wrap:break-word; }
900
901 #kiwi.theme_cli .messages .msg.action .nick { display:none; }
902 #kiwi.theme_cli .messages .msg.action .text { color:#009900; border-left:none; font-style:italic; }
903 #kiwi.theme_cli .messages .msg.action.join { color:#009900; }
904 #kiwi.theme_cli .messages .msg.action.part .text { color:#900; }
905 #kiwi.theme_cli .messages .msg.action.quit .text { color:#900; }
906 #kiwi.theme_cli .messages .msg.action.kick .text { color:#900; }
907 #kiwi.theme_cli .messages .msg.status .nick { display:none; }
908 #kiwi.theme_cli .messages .msg.status .text { color:#990000; border-left:none; font-weight:bold; }
909 #kiwi.theme_cli .messages .msg.topic .nick { display:none; }
910 #kiwi.theme_cli .messages .msg.topic .text { color:#009900; font-style: italic; border-left:none; }
911 /*#kiwi.theme_cli .messages .msg.motd .nick { display:none; }*/
912 #kiwi.theme_cli .messages .msg.motd { border:none; }
913 #kiwi.theme_cli .messages .msg.motd .text { color:#666; }
914 #kiwi.theme_cli .messages .msg.whois .nick { font-weight:normal; }
915 #kiwi.theme_cli .messages .msg.whois .text { padding-left:1em; border-left:1px dashed #999; }
916 #kiwi.theme_cli .messages .msg.error .text {
917 border:1px solid #A33F3F; background-color:#D28A8A;
918 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
919 }
920
921 #kiwi.theme_cli .messages .msg.global_nick_highlight { background:#111111; }
922
923
924
925 #kiwi.theme_cli .messages .msg .media { margin-left:0.5em; }
926 #kiwi.theme_cli .messages .msg .media .media_close { font-size:0.9em; }
927 #kiwi.theme_cli .messages .msg .media .media_content { margin:10px 0 0 6em; overflow:hidden; }
928 #kiwi.theme_cli .messages .msg .media .media_content img { padding:3px; border:1px solid gray; }
929 #kiwi.theme_cli .messages .msg .media .media_content > .content {
930 background: white;
931 overflow: hidden;
932 padding: 10px;
933 border: #DDD 1px solid;
934 border-top-color: #EEE;
935 border-bottom-color: #BBB;
936 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
937 -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.15);
938 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
939 border-radius: 5px;
940 float: left;
941 }
942
943 #kiwi.theme_cli .messages .msg .media.twitter .media_content > .content {
944 background: transparent;
945 border:none;
946 overflow: hidden;
947 box-shadow: none;
948 padding: 0;
949 }
950 #kiwi.theme_cli .messages .msg .media.reddit .thumbnail_nsfw {
951 display: inline-block;
952 float: left;
953 }
954 #kiwi.theme_cli .messages .msg .media.reddit .thumbnail { float:left; margin-right: 0.5em; }
955
956
957
958 /* The server select dialog */
959 #kiwi.theme_cli .server_select { width:730px; padding:3em 0 2em 0; margin: 0 auto; }
960 #kiwi.theme_cli .server_select .more { display: none; width:270px; margin:0 auto; }
961 #kiwi.theme_cli .server_select table tr td { padding:5px; }
962 #kiwi.theme_cli .server_select button { float:right; padding:3px 7px; margin-top:10px; }
963 #kiwi.theme_cli .server_select input { padding:3px 7px; width:150px; }
964 #kiwi.theme_cli .server_select label { width:5em; padding-top:3px }
965 #kiwi.theme_cli .server_select br { clear:both; }
966 #kiwi.theme_cli .server_select .basic input, .server_select .basic button { font-size:1em; padding:0.5em 1em; }
967 #kiwi.theme_cli .server_select .basic input { width:170px; }
968 #kiwi.theme_cli .server_select .basic label { font-size:1.3em; margin-top:4px; }
969 #kiwi.theme_cli .server_select .basic tr.have_pass { font-size:0.8em; }
970 #kiwi.theme_cli .server_select .basic tr.channel td { padding-top:1em; }
971 #kiwi.theme_cli .server_select .basic { border-bottom: 1px dashed gray; margin-bottom:1em; }
972 #kiwi.theme_cli .server_select .basic .show_more { display: block; width:116px; margin:10px 0 0 0; font-size:0.8em; background: url(../img/more.png) no-repeat right 7px; }
973 #kiwi.theme_cli .server_select.single_server .basic { border:none; }
974 #kiwi.theme_cli .server_select .status { text-align: center; font-weight: bold; padding:1em; }
975 #kiwi.theme_cli .server_select .status.ok { }
976 #kiwi.theme_cli .server_select .status.error {
977 border:1px solid #A33F3F; background-color:#D28A8A;
978 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
979 }
980
981
982 #kiwi.theme_cli .server_select .kiwi_logo { text-align: center; display:block; }
983 #kiwi.theme_cli .server_select .kiwi_logo h1 {
984 font-size:20px;
985 line-height:48px; vertical-align: middle;
986 color: #555555;
987 }
988 #kiwi.theme_cli .server_select .kiwi_logo img { }
989
990
991 #kiwi.theme_cli .divider-verticle {
992 border-left: 1px solid #303030;
993 border-right: 1px solid #1B1B1B;
994 }
995
996 #kiwi.theme_cli .divider-horizontal {
997 border-top: 1px solid #303030;
998 border-bottom: 1px solid #1B1B1B;
999 }