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