nowrap breaks floats in firefox. workaround needed.
[KiwiIRC.git] / client / assets / css / style.css
CommitLineData
696a66f8 1html, body { height:100%; }
8af29f2b 2* { margin:0; padding:0; }
696a66f8
D
3
4
5
8af29f2b 6/* Few resets for within the kiwi container */
696a66f8
D
7#kiwi {
8 overflow:hidden; position:relative;
9 height:100%;
5998fd56 10}
8af29f2b
D
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; }
5998fd56 15
696a66f8 16
696a66f8
D
17/**
18 * Main layout blocks
19 */
8af29f2b
D
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 {
696a66f8 25 position: absolute; width:10px; z-index:1; cursor:w-resize;
696a66f8
D
26}
27
28
8af29f2b
D
29#kiwi #toolbar #tabs { margin-right: 200px; }
30#kiwi #toolbar .panellist {
696a66f8 31 overflow: hidden;
696a66f8 32 display:block;
696a66f8 33}
8af29f2b 34#kiwi #toolbar .panellist li {
696a66f8
D
35 float: left; list-style: inline;
36 display:inline; position:relative;
37 padding:5px; margin:3px;
696a66f8 38 cursor: pointer;
8af29f2b 39}
696a66f8 40
8af29f2b
D
41#kiwi #toolbar .panellist .active { padding-right:23px; }
42#kiwi #toolbar .panellist .alert_highlight { font-weight: bold; }
43#kiwi #toolbar .panellist .alert_activity { font-weight: bold; }
44#kiwi #toolbar .panellist .alert_action { font-weight: bold; }
696a66f8 45
e97e4eb4
PV
46#kiwi #toolbar .panellist li .part { position: absolute; top: 5px; right: 5px; }
47#kiwi #toolbar .panellist li .part:before { content:"[x]"; }
8af29f2b
D
48#kiwi #toolbar .panellist li img.icon { left:5px; top:2px; height:auto; width:auto; }
49
50#kiwi #status_message {
51 background: #FFF;
696a66f8 52 border-bottom: 1px solid;
8af29f2b 53 text-align: center;
696a66f8 54}
696a66f8
D
55
56
8af29f2b 57#kiwi .panel_container { overflow-y:auto; height:100%; }
696a66f8
D
58
59
60
8af29f2b 61#kiwi .messages {
696a66f8
D
62 overflow-x:wrap;
63 border:none; display: none;
696a66f8 64}
8af29f2b
D
65#kiwi .messages a {}
66#kiwi .messages.active { display:block; }
696a66f8 67
8af29f2b
D
68#kiwi .messages .msg {}
69#kiwi .messages .msg .time { display:inline; }
70#kiwi .messages .msg .nick { display:inline; }
71#kiwi .messages .msg .text { display:inline; }
bf3bd4e5 72
8af29f2b
D
73#kiwi .messages .msg.action .nick { display:none; }
74#kiwi .messages .msg.action .text { }
75#kiwi .messages .msg.action.join { }
76#kiwi .messages .msg.action.part .text { }
77#kiwi .messages .msg.action.quit .text { }
78#kiwi .messages .msg.action.kick .text { }
79#kiwi .messages .msg.status .nick { display:none; }
80#kiwi .messages .msg.status .text { }
81#kiwi .messages .msg.topic .nick { display:none; }
82#kiwi .messages .msg.topic .text { }
83#kiwi .messages .msg.motd { }
84#kiwi .messages .msg.motd .nick { }
85#kiwi .messages .msg.motd .text { }
86#kiwi .messages .msg.whois .nick { }
87#kiwi .messages .msg.whois .text { }
88#kiwi .messages .msg.error .text { }
0197b21c 89
8af29f2b
D
90#kiwi .messages .msg.global_nick_highlight { }
91#kiwi .messages .msg.highlight { }
696a66f8
D
92
93
696a66f8 94
8af29f2b
D
95/* A member/nick list per channel */
96#kiwi #memberlists { border-left: 1px solid #8A8A8A; }
e579ff0d 97#kiwi #memberlists.disabled { display:none; }
8af29f2b 98#kiwi #memberlists ul { display:none; }
696a66f8 99
8af29f2b
D
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 { }
696a66f8 104
8af29f2b
D
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 {
fb989cb2 116 height:1.7em; position:relative;
696a66f8 117}
696a66f8 118
8af29f2b
D
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 */
86a9c924 127#kiwi #controlbox .input .inp { white-space: nowrap; }
8af29f2b
D
128
129
130/* Nick change dialog showed when clicking the nick label */
131#kiwi #controlbox .nickchange {
696a66f8 132 position: absolute;
8af29f2b 133 background: #FFF;
696a66f8 134}
8af29f2b
D
135#kiwi #controlbox .nickchange input { }
136#kiwi #controlbox .nickchange button { }
696a66f8 137
fb989cb2
D
138/* Plugin tools */
139#kiwi #controlbox .input_tools { float:right; }
140#kiwi #controlbox .input_tools .tool { margin:0 1em; display:inline; }
141
696a66f8
D
142
143
8af29f2b
D
144/**
145 * Topic bar
146 */
147#kiwi #topic { position:relative; height:2em; }
148#kiwi #topic div {
696a66f8 149 position:absolute;
8af29f2b 150 top:0; bottom:0; left:0; right:0;
f5035603 151 overflow: hidden;
696a66f8
D
152}
153
154
155
156
157
8af29f2b
D
158/**
159 * Server selection dialog
160 */
161#kiwi .server_select { width:800px; margin:0 auto; overflow:hidden; }
162#kiwi .server_select .more { display: none; }
163#kiwi .server_select button { }
164#kiwi .server_select input { }
bac3c32e 165#kiwi .server_select label { }
8af29f2b
D
166#kiwi .server_select br { clear:both; }
167#kiwi .server_select .basic input { }
168#kiwi .server_select .basic label { }
169#kiwi .server_select .basic { border-bottom: 1px solid gray; margin-bottom:1em; }
170#kiwi .server_select .basic .show_more { }
fdce9047 171#kiwi .server_select .basic tr.pass { display:none; }
8af29f2b
D
172#kiwi .server_select.single_server .basic { border:none; }
173#kiwi .server_select .status { }
696a66f8 174
8af29f2b
D
175/* When connected to an IRC server, .ok is set on the status div */
176#kiwi .server_select .status.ok { }
696a66f8 177
8af29f2b
D
178/* IRC server connection error, .error is set on the status div */
179#kiwi .server_select .status.error { }
696a66f8
D
180
181
182
8af29f2b
D
183/* Logo and title in the server selection dialog */
184#kiwi .server_select .kiwi_logo { text-align: center; display:block; }
185#kiwi .server_select .kiwi_logo h1 { }
186#kiwi .server_select .kiwi_logo img { }
696a66f8
D
187
188
189
8af29f2b
D
190/* Icons in the top right corner */
191#kiwi #toolbar .app_tools { float:right; }
192#kiwi #toolbar .app_tools ul li {
193 display:inline; cursor:pointer;
7de3dd03 194}
8af29f2b 195#kiwi #toolbar .app_tools img { height:25px; width:25px; margin: 6px 0.7em 0 0; }
696a66f8
D
196
197
198
8af29f2b 199/* Settings applet */
93fa049c
D
200#kiwi .settings {
201 width:900px;
202 margin:1em auto;
203}
204#kiwi .settings table td {
205 padding:0.5em 1em;
206}
18aaad59
JA
207#kiwi .settings .save .feedback {
208 display: none;
209 position: relative;
210 left: -1.6em;
211}
93fa049c
D
212
213
214
696a66f8
D
215
216/**
217 * Reusable componants
218 */
219
8af29f2b 220#kiwi .divider-verticle {
696a66f8
D
221 border-left: 1px solid #CFCFCF;
222 border-right: 1px solid #FFFFFF;
223 position: absolute;
224 top:25px; bottom:25px;
225 right:0;
226 width:0;
227}
228
8af29f2b 229#kiwi .divider-horizontal {
696a66f8
D
230 border-top: 1px solid #CFCFCF;
231 border-bottom: 1px solid #FFFFFF;
232 position: absolute;
233 left:25px; right:25px;
234 bottom:0;
235 height:0;
236}
237
238
239
567a2f79
D
240#kiwi .loader {
241 background:url(../img/loader.gif) no-repeat;
242 width:43px; height:11px;
243 display:inline-block;
244}
245
246
247
696a66f8
D
248
249
250/**
251 * Themes
252 */
253
254
8af29f2b
D
255/* Relaxed theme */
256#kiwi.theme_relaxed {
257 background: url(../img/background-light.png) left top repeat-x #E3E3E3;
258 color: #555555;
696a66f8 259}
8af29f2b
D
260#kiwi.theme_relaxed,
261#kiwi.theme_relaxed input,
262#kiwi.theme_relaxed button,
263#kiwi.theme_relaxed textarea {
264 font-family:Arial, Helvetica, sans-serif;
265 font-size:14px; line-height:1.4em;
266}
267#kiwi.theme_relaxed input, textarea {
268 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5),0 1px 0px rgba(255, 255, 255, 0.3);
269 border: none;
270 border-radius: 3px;
271}
272#kiwi.theme_relaxed #toolbar {
273 background-color:#1B1B1B; font-size:0.9em;
274}
275#kiwi.theme_relaxed #controlbox { background-color:#1B1B1B; }
276#kiwi.theme_relaxed #memberlists_resize_handle {
277 /*background:url('../img/resize_handle.png') no-repeat; background-position:center;*/
278}
279#kiwi.theme_relaxed #toolbar .panellist li {
280 line-height: 1.4em;
281 vertical-align: middle;
282
283 border-radius:5px;
284 -moz-border-radius:5px;
285 -webkit-border-radius:5px;
286 -khtml-border-radius:5px;
287 behavior: url(border-radius.htc);
288
289 background-image: -webkit-gradient(
290 linear,
291 left top,
292 left bottom,
293 color-stop(0.38, rgb(238,238,238)),
294 color-stop(0.68, rgb(209,209,209))
295 );
296 background-image: -moz-linear-gradient(
297 center top,
298 rgb(238,238,238) 38%,
299 rgb(209,209,209) 68%
300 );
301
302 border: 1px solid #333;
303 background-color: #eee;
696a66f8
D
304}
305
3adc7463
D
306#kiwi.theme_relaxed #toolbar .panellist .alert_highlight { /*background: #990000;*/ }
307#kiwi.theme_relaxed #toolbar .panellist .alert_activity { font-weight:normal; }
308#kiwi.theme_relaxed #toolbar .panellist .alert_action { font-weight:normal; }
696a66f8 309
8af29f2b 310#kiwi.theme_relaxed #toolbar .panellist .active { padding-right:23px; }
e97e4eb4 311#kiwi.theme_relaxed #toolbar .panellist li .part:before { content:"\f00d"; }
696a66f8 312
4cce3bd7
PV
313#kiwi.theme_relaxed #toolbar .panellist li.server span { padding-left: 5px; }
314#kiwi.theme_relaxed #toolbar .panellist li.server:before { content: "\f0ec"; }
696a66f8 315
8af29f2b 316/* Tab texts are within a span */
e967ff52 317#kiwi.theme_relaxed #toolbar .panellist li span { line-height:20px; vertical-align:middle; display:inline-block; }
3adc7463
D
318
319#kiwi.theme_relaxed #toolbar .panellist li.active .activity { display:none; }
96c2c1f3 320#kiwi.theme_relaxed #toolbar .panellist li .activity.zero { display:none; }
3adc7463
D
321#kiwi.theme_relaxed #toolbar .panellist li .activity {
322 padding: 1px 3px; margin-left:1em;
323 border-radius: 4px;
324 background: #3F9532; color:#000; /*color: #ff5300;*/
325 text-align: center; font-size: 10px;
326 display:inline-block;
327 width:2em;
328}
329#kiwi.theme_relaxed #toolbar .panellist li.alert_highlight .activity {
330 color: #fff; background: #a60400;
331}
8af29f2b
D
332
333#kiwi.theme_relaxed #status_message {
334 background: #FEEFB3; color: #9F6000;
335 border-bottom: 1px solid;
336 padding: 0.9em;
337 text-align: center; font-size:1.1em;
338}
339#kiwi.theme_relaxed #status_message.err { color:#D8000C; background:#FFBABA; }
340
341#kiwi.theme_relaxed .messages { color: #333333; }
342#kiwi.theme_relaxed .messages.active { }
343#kiwi.theme_relaxed .messages a { text-decoration:none; }
344
345#kiwi.theme_relaxed .messages .msg { border-bottom: 1px solid #DEDEDE; padding: 1px; font-family:arial; font-size:0.9em; }
2bbb5225 346#kiwi.theme_relaxed .messages .msg .time { width:5em; float:left; color:#777; padding:5px; display:none; }
318c5545 347#kiwi.theme_relaxed .messages .msg .nick { width:11em; float:left; font-size:12px; font-family:Arial; text-align:right; padding: 5px; overflow:hidden; }
8af29f2b 348#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; }
696a66f8 349
e579ff0d
D
350#kiwi.theme_relaxed.narrow .messages .msg .nick { width: auto; }
351#kiwi.theme_relaxed.narrow .messages .msg .text { margin-left: 1em; border:none; }
352
8af29f2b 353#kiwi.theme_relaxed .messages .msg.action .nick { }
318c5545 354#kiwi.theme_relaxed .messages .msg.action .text { color:#009900; border-left:none; font-style:italic; }
696a66f8
D
355#kiwi.theme_relaxed .messages .msg.action.join { color:#009900; }
356#kiwi.theme_relaxed .messages .msg.action.part .text { color:#900; }
357#kiwi.theme_relaxed .messages .msg.action.quit .text { color:#900; }
358#kiwi.theme_relaxed .messages .msg.action.kick .text { color:#900; }
8af29f2b 359#kiwi.theme_relaxed .messages .msg.status .nick { }
696a66f8
D
360#kiwi.theme_relaxed .messages .msg.status .text { color:#990000; margin-left:9em; border-left:none; font-weight:bold; }
361#kiwi.theme_relaxed .messages .msg.topic .nick { display:none; }
362#kiwi.theme_relaxed .messages .msg.topic .text { color:#009900; margin-left:9em; font-style: italic; border-left:none; }
696a66f8 363#kiwi.theme_relaxed .messages .msg.motd { border:none; }
8af29f2b 364/*#kiwi.theme_relaxed .messages .msg.motd .nick { display:none; }*/
0bbc9309 365#kiwi.theme_relaxed .messages .msg.motd .text { color:#666; font-family:monospace; }
696a66f8
D
366#kiwi.theme_relaxed .messages .msg.whois .nick { font-weight:normal; }
367#kiwi.theme_relaxed .messages .msg.whois .text { margin-left:18em; padding-left:1em; border-left:1px dashed #999; }
368#kiwi.theme_relaxed .messages .msg.error .text {
369 border:1px solid #A33F3F; background-color:#D28A8A;
370 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
371}
372
2bbb5225
D
373#kiwi.theme_relaxed.timestamps .messages .msg .time { display:block; }
374#kiwi.theme_relaxed.timestamps .messages .msg .text { margin-left:17em; }
375
8af29f2b
D
376#kiwi.theme_relaxed .messages .msg.global_nick_highlight,
377#kiwi.theme_relaxed .messages .msg.highlight { background:#D9D9D9; }
378
e579ff0d
D
379/* Narrow styling (window width < 400px) */
380#kiwi.theme_relaxed.narrow .messages .msg .nick { width: auto; }
381#kiwi.theme_relaxed.narrow .messages .msg .text { margin-left: 1em; border:none; }
382#kiwi.theme_relaxed.narrow .messages .msg.action .text { margin-left: 1em; }
383
8af29f2b 384
b025bb57
D
385#kiwi.theme_relaxed .messages .msg .media { margin-left:0.5em; }
386#kiwi.theme_relaxed .messages .msg .media .media_close { font-size:0.9em; }
b9149cd0 387#kiwi.theme_relaxed .messages .msg .media .media_content { margin:10px 0 0 10px; overflow:hidden; }
b025bb57 388#kiwi.theme_relaxed .messages .msg .media .media_content img { padding:3px; border:1px solid gray; }
b9149cd0
D
389#kiwi.theme_relaxed .messages .msg .media .media_content > .content {
390 background: white;
391 overflow: hidden;
392 padding: 10px;
393 border: #DDD 1px solid;
394 border-top-color: #EEE;
395 border-bottom-color: #BBB;
396 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
397 -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.15);
398 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
399 border-radius: 5px;
400 float: left;
401}
402
403#kiwi.theme_relaxed .messages .msg .media.twitter .media_content > .content {
404 background: transparent;
405 border:none;
406 overflow: hidden;
407 box-shadow: none;
408 padding: 0;
409}
410#kiwi.theme_relaxed .messages .msg .media.reddit .thumbnail_nsfw {
411 display: inline-block;
412 float: left;
413}
414#kiwi.theme_relaxed .messages .msg .media.reddit .thumbnail { float:left; margin-right: 0.5em; }
b025bb57 415
8af29f2b
D
416
417#kiwi.theme_relaxed #memberlists {
418 background-color: #DADADA;
419 border-left: 1px solid #8A8A8A;
420}
e579ff0d 421#kiwi.theme_relaxed.narrow #memberlists { display:none; }
8af29f2b
D
422#kiwi.theme_relaxed #memberlists ul { list-style: none; }
423#kiwi.theme_relaxed #memberlists ul.active { }
424#kiwi.theme_relaxed #memberlists ul li { padding: 0.2em 1em; }
425#kiwi.theme_relaxed #memberlists ul li:hover {
426 border-left: 5px solid #88C56A;
427 -webkit-transition: 0.2s ease;
428 -moz-transition: 0.2s ease;
429 -ms-transition: 0.2s ease;
430 -o-transition: 0.2s ease;
431 transition: 0.2s ease;
432}
433#kiwi.theme_relaxed #memberlists ul li a.nick { display:block; color:black; }
434
06be3458 435#kiwi.theme_relaxed #memberlists ul li .userbox { margin:4px 1em 5px 1em; padding-bottom:0.7em; font-size:.9em; }
8af29f2b
D
436#kiwi.theme_relaxed #memberlists ul li .userbox a { display:block; text-decoration:none; margin-bottom:2px; }
437#kiwi.theme_relaxed #memberlists ul li .userbox a i { font-size:1.1em; margin-right:5px; }
438
06be3458
D
439/* User mode styles */
440#kiwi.theme_relaxed #memberlists ul li .prefix {
441 display:none;
442 width:20px; height:20px;
443 border-radius: 5px;
444 margin: 0 7px 0 0;
445 font-size:12px; text-align: center;
446 color: #E3E3E3;
447 /* text-indent: -1000px; */
448}
449/* Most important modes towards the bottom - they override the top ones! */
450#kiwi.theme_relaxed #memberlists ul li.mode.v .prefix { display:inline-block; background:#b3b3b3; }
451#kiwi.theme_relaxed #memberlists ul li.mode.h .prefix { display:inline-block; background:#b5b447; }
452#kiwi.theme_relaxed #memberlists ul li.mode.o .prefix { display:inline-block; background:#47b547; }
453#kiwi.theme_relaxed #memberlists ul li.mode.a .prefix { display:inline-block; background:#b54747; }
454#kiwi.theme_relaxed #memberlists ul li.mode.q .prefix { display:inline-block; background:#8547b5; }
8af29f2b
D
455
456#kiwi.theme_relaxed #controlbox .input {
457 background:#fff; margin:3px;
458 height:1.7em;
459 border-radius:5px;
460 -moz-border-radius:5px;
461 -webkit-border-radius:5px;
462 -khtml-border-radius:5px;
463}
a591f9cf 464#kiwi.theme_relaxed #controlbox .input .nick { text-align: right; width:11em; left:0px; position:absolute; padding:2px; overflow:hidden; }
8af29f2b 465#kiwi.theme_relaxed #controlbox .input .nick a { text-decoration:none; color:black; }
e579ff0d
D
466
467#kiwi.theme_relaxed.narrow #controlbox .input .nick { display:none; }
468#kiwi.theme_relaxed.narrow #controlbox .input .input_wrap { left:7px; }
469
8af29f2b
D
470#kiwi.theme_relaxed #controlbox .input .input_wrap {
471 position:absolute;
472 right:7px; left: 12.2em;
473 height:1.7em;
474}
475#kiwi.theme_relaxed #controlbox .input .inp {
476 line-height:1.7em;
477 border: medium none;
478 box-shadow: none;
479 border-radius: 0;
480 outline:none; resize:none;
481 overflow:hidden;
482 position:relative;
483 height:100%; width:100%;
484 display: block;
485}
486
487
488#kiwi.theme_relaxed #controlbox .nickchange {
489 padding:10px; left: 0px;
490 background: #1B1B1B; color:#eeeeee;
491}
492#kiwi.theme_relaxed #controlbox .nickchange input { padding:0.3em 0.5em; }
493#kiwi.theme_relaxed #controlbox .nickchange button { padding:0.5em; }
494
495
496
03b71faf 497#kiwi.theme_relaxed #topic { background-color:#1B1B1B; padding-bottom:2px; }
8af29f2b 498#kiwi.theme_relaxed #topic div {
8af29f2b
D
499 padding: 0.2em 1em;
500 text-align: center;
501 box-shadow: none;
502 border-radius: 0;
503 background-color:#FFF;
504 height: 1.5em;
505 overflow: hidden;
506 outline: none;
03b71faf
D
507 white-space: nowrap;
508}
509#kiwi.theme_relaxed #topic:hover div {
510 min-height:1.5em;
511 white-space:pre-wrap; word-wrap:break-word;
512 overflow:visible;
513 background-color:#FFF;
514 z-index: 1;
515 height:auto; bottom:auto;
516 border-bottom: 2px solid #1B1B1B;
8af29f2b
D
517}
518
519
520#kiwi.theme_relaxed #toolbar .app_tools { width:200px; padding-left:10px; color:#D4D4D4; }
6ad4ad20 521#kiwi.theme_relaxed.narrow #toolbar #tabs { margin-right:0; }
e579ff0d 522#kiwi.theme_relaxed.narrow #toolbar .app_tools { width:auto; }
8af29f2b
D
523#kiwi.theme_relaxed #toolbar .app_tools ul li {
524 font-size:26px;
525 -webkit-transition: all .3s ease;
526 -moz-transition: all .3s ease;
527 transition: all .3s ease;
528 margin-left:10px;
529}
530#kiwi.theme_relaxed #toolbar .app_tools ul li:hover { color:#88C56A; }
531#kiwi.theme_relaxed #toolbar .app_tools img { }
532
533
534/* The server select dialog */
535#kiwi.theme_relaxed .server_select { width:730px; padding:3em 0 2em 0; margin: 0 auto; }
536#kiwi.theme_relaxed .server_select .more { display: none; width:270px; margin:0 auto; }
bac3c32e
D
537#kiwi.theme_relaxed .server_select table tr td { padding:5px; }
538#kiwi.theme_relaxed .server_select button { float:right; padding:3px 7px; }
539#kiwi.theme_relaxed .server_select input { padding:3px 7px; width:150px; }
540#kiwi.theme_relaxed .server_select label { }
8af29f2b
D
541#kiwi.theme_relaxed .server_select br { clear:both; }
542#kiwi.theme_relaxed .server_select .basic input, .server_select .basic button { font-size:1em; padding:0.5em 1em; }
543#kiwi.theme_relaxed .server_select .basic input { width:170px; }
544#kiwi.theme_relaxed .server_select .basic label { font-size:1.3em; margin-top:4px; }
bac3c32e 545#kiwi.theme_relaxed .server_select .basic tr.have_pass { font-size:0.8em; }
bac3c32e 546#kiwi.theme_relaxed .server_select .basic tr.channel td { padding-top:1em; }
8af29f2b 547#kiwi.theme_relaxed .server_select .basic { border-bottom: 1px dashed gray; margin-bottom:1em; }
bac3c32e 548#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; }
8af29f2b
D
549#kiwi.theme_relaxed .server_select.single_server .basic { border:none; }
550#kiwi.theme_relaxed .server_select .status { text-align: center; font-weight: bold; padding:1em; }
551#kiwi.theme_relaxed .server_select .status.ok { }
552#kiwi.theme_relaxed .server_select .status.error {
553 border:1px solid #A33F3F; background-color:#D28A8A;
554 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
555}
556
557
558#kiwi.theme_relaxed .server_select .kiwi_logo { text-align: center; display:block; }
559#kiwi.theme_relaxed .server_select .kiwi_logo h1 {
560 font-size:20px;
561 line-height:48px; vertical-align: middle;
562 color: #555555;
563}
564#kiwi.theme_relaxed .server_select .kiwi_logo img { }
565
696a66f8 566
7f27ea92 567#kiwi.theme_relaxed.chanlist_treeview #panels { left:160px; }
3adc7463
D
568#kiwi.theme_relaxed.chanlist_treeview #toolbar { position:static; }
569#kiwi.theme_relaxed.chanlist_treeview #toolbar .app_tools { float:none; }
7f27ea92
D
570#kiwi.theme_relaxed.chanlist_treeview #toolbar > div { margin-left:160px; }
571#kiwi.theme_relaxed.chanlist_treeview #toolbar #tabs { position:absolute; left:0px; bottom:0px; top:0px; margin:0; width:160px; background:#1B1B1B; overflow-y:auto; }
3adc7463
D
572#kiwi.theme_relaxed.chanlist_treeview #tabs ul li { display:block; float:none; }
573#kiwi.theme_relaxed.chanlist_treeview #tabs ul li .activity { float:right; }
574#kiwi.theme_relaxed.chanlist_treeview #tabs ul li.active {
575 margin-right:0;
576 border-right-width:0;
577 border-bottom-right-radius:0;
578 border-top-right-radius:0;
579}
696a66f8
D
580
581
039a3156
D
582#kiwi.theme_relaxed .applet > div.settings button.save {
583 padding:1em 2em;
584 border:1px solid gray; border-radius:3px;
585}
586#kiwi.theme_relaxed .applet > div.settings tr {
587 border-bottom: 1px dashed black;
588}
3f085329 589
039a3156
D
590#kiwi.theme_relaxed .applet > div.settings td.label {
591 font-weight: bold;
592}
593#kiwi.theme_relaxed .applet > div.settings tr.save {
594 text-align: right;
595}
3f085329
D
596
597
598/**
599 * Mini theme
600 */
601#kiwi.theme_mini {
602 background: #FFF;
603 color: #555555;
604}
605#kiwi.theme_mini,
606#kiwi.theme_mini input,
607#kiwi.theme_mini button,
608#kiwi.theme_mini textarea {
609 font-family:Arial, Helvetica, sans-serif;
610 font-size:14px; line-height:1.4em;
611}
612#kiwi.theme_mini input, textarea {
613 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5),0 1px 0px rgba(255, 255, 255, 0.3);
614 border: none;
615 border-radius: 3px;
616}
617#kiwi.theme_mini #toolbar {
618 background-color:#1B1B1B; font-size:0.9em;
619}
620#kiwi.theme_mini #controlbox { background-color:#1B1B1B; }
621#kiwi.theme_mini #memberlists_resize_handle {
622 display:none; width:0;
623}
624#kiwi.theme_mini #toolbar .panellist li {
625 line-height: 1.4em;
626 vertical-align: middle;
627
628 border-radius:5px;
629 -moz-border-radius:5px;
630 -webkit-border-radius:5px;
631 -khtml-border-radius:5px;
632
633 border: 1px solid #333;
634 background-color: #eee;
635}
636
637#kiwi.theme_mini #toolbar #tabs { margin-right:0 !important; }
e967ff52
D
638#kiwi.theme_mini #toolbar .panellist .alert_highlight { font-weight:bold; }
639#kiwi.theme_mini #toolbar .panellist .alert_activity { font-weight:normal; }
640#kiwi.theme_mini #toolbar .panellist .alert_action { font-weight:normal; }
3f085329
D
641
642#kiwi.theme_mini #toolbar .panellist .active { padding-right:23px; }
e97e4eb4 643#kiwi.theme_mini #toolbar .panellist li .part:before { content:"\f00d"; }
3f085329 644
4cce3bd7
PV
645#kiwi.theme_mini #toolbar .panellist li.server span { padding-left:5px; }
646#kiwi.theme_mini #toolbar .panellist li.server:before { content: "\f0ec"; }
3f085329
D
647
648/* Tab texts are within a span */
e967ff52
D
649#kiwi.theme_mini #toolbar .panellist li span { line-height:20px; vertical-align:middle; display:inline-block; }
650
651#kiwi.theme_mini #toolbar .panellist li .activity { display:inline; margin-left:0.5em; font-style:italic; font-size:0.8em; }
652#kiwi.theme_mini #toolbar .panellist li .activity:before { content:"("; }
653#kiwi.theme_mini #toolbar .panellist li .activity:after { content:")"; }
3f085329
D
654
655#kiwi.theme_mini #status_message {
656 background: #FEEFB3; color: #9F6000;
657 border-bottom: 1px solid;
658 padding: 0.9em;
659 text-align: center; font-size:1.1em;
660}
661#kiwi.theme_mini #status_message.err { color:#D8000C; background:#FFBABA; }
662
663#kiwi.theme_mini .messages { color: #333333; }
664#kiwi.theme_mini .messages.active { }
665#kiwi.theme_mini .messages a { text-decoration:none; }
666
667#kiwi.theme_mini .messages .msg { border-bottom: 1px solid #DEDEDE; padding: 5px; font-family:arial; font-size:0.9em; }
668#kiwi.theme_mini .messages .msg .time { display:none; }
669#kiwi.theme_mini .messages .msg .nick { display:block; font-family:Arial; text-transform:capitalize; }
670#kiwi.theme_mini .messages .msg .text { display:block; white-space:pre-wrap; word-wrap:break-word; font-family:arial; }
671
672#kiwi.theme_mini .messages .msg.action .nick { }
673#kiwi.theme_mini .messages .msg.action .text { color:#009900; border-left:none; font-style:italic; }
674#kiwi.theme_mini .messages .msg.action.join { color:#009900; }
675#kiwi.theme_mini .messages .msg.action.part .text { color:#900; }
676#kiwi.theme_mini .messages .msg.action.quit .text { color:#900; }
677#kiwi.theme_mini .messages .msg.action.kick .text { color:#900; }
678#kiwi.theme_mini .messages .msg.status .nick { }
679#kiwi.theme_mini .messages .msg.status .text { color:#990000; border-left:none; font-weight:bold; }
680#kiwi.theme_mini .messages .msg.topic .nick { display:none; }
681#kiwi.theme_mini .messages .msg.topic .text { color:#009900; font-style: italic; border-left:none; }
682#kiwi.theme_mini .messages .msg.motd { border:none; }
683/*#kiwi.theme_mini .messages .msg.motd .nick { display:none; }*/
684#kiwi.theme_mini .messages .msg.motd .text { color:#666; }
685#kiwi.theme_mini .messages .msg.whois .nick { font-weight:normal; }
686#kiwi.theme_mini .messages .msg.whois .text { padding-left:1em; border-left:1px dashed #999; }
687#kiwi.theme_mini .messages .msg.error .text {
688 border:1px solid #A33F3F; background-color:#D28A8A;
689 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
690}
691
692#kiwi.theme_mini .messages .msg.global_nick_highlight,
693#kiwi.theme_mini .messages .msg.highlight { background:#D9D9D9; }
694
695
696
697#kiwi.theme_mini #memberlists {
698 background-color: #DADADA;
699 border-left: 1px solid #8A8A8A;
700 display:none;
701 width:0px;
702}
703#kiwi.theme_mini #memberlists ul { list-style: none; }
704#kiwi.theme_mini #memberlists ul.active { }
705#kiwi.theme_mini #memberlists ul li { padding: 0.2em 1em; }
706#kiwi.theme_mini #memberlists ul li:hover {
707 border-left: 5px solid #88C56A;
708 -webkit-transition: 0.2s ease;
709 -moz-transition: 0.2s ease;
710 -ms-transition: 0.2s ease;
711 -o-transition: 0.2s ease;
712 transition: 0.2s ease;
713}
714#kiwi.theme_mini #memberlists ul li a.nick { display:block; color:black; }
715
716#kiwi.theme_mini #memberlists ul li .userbox { margin:0 1em 5px 1em; padding-bottom:0.7em; font-size:.9em; }
717#kiwi.theme_mini #memberlists ul li .userbox a { display:block; text-decoration:none; margin-bottom:2px; }
718#kiwi.theme_mini #memberlists ul li .userbox a i { font-size:1.1em; margin-right:5px; }
719
720
721#kiwi.theme_mini #controlbox .input {
722 background:#fff; margin:3px;
723 height:1.7em;
724}
725#kiwi.theme_mini #controlbox .input .nick { display:none; }
726#kiwi.theme_mini #controlbox .input .nick a { text-decoration:none; color:black; }
727#kiwi.theme_mini #controlbox .input .input_wrap {
728 position:absolute;
729 right:3px; left:3px;
730 height:1.7em;
731}
732#kiwi.theme_mini #controlbox .input .inp {
733 line-height:1.7em;
734 border: medium none;
735 box-shadow: none;
736 border-radius: 0;
737 resize:none;
738 overflow:hidden;
739 position:relative;
740 height:100%; width:100%;
741 display: block;
742}
743
744
745#kiwi.theme_mini #controlbox .nickchange {
746 padding:10px; left: 0px;
747 background: #1B1B1B; color:#eeeeee;
748}
749#kiwi.theme_mini #controlbox .nickchange input { padding:0.3em 0.5em; }
750#kiwi.theme_mini #controlbox .nickchange button { padding:0.5em; }
751
752
753
754#kiwi.theme_mini #topic { display:none; }
755#kiwi.theme_mini #topic div {
756 top:2; bottom:2px; left:0; width:100%;
757 padding: 0.2em 1em;
758 text-align: center;
759 box-shadow: none;
760 border-radius: 0;
761 background-color:#FFF;
762 height: 1.5em;
763 overflow: hidden;
764 outline: none;
765}
766
767
768#kiwi.theme_mini #toolbar .app_tools { padding-left:10px; color:#D4D4D4; }
769#kiwi.theme_mini #toolbar .app_tools ul li {
770 font-size:26px;
771 -webkit-transition: all .3s ease;
772 -moz-transition: all .3s ease;
773 transition: all .3s ease;
774 margin-left:10px;
775}
776#kiwi.theme_mini #toolbar .app_tools ul li:hover { color:#88C56A; }
777#kiwi.theme_mini #toolbar .app_tools img { }
778
779
780/* The server select dialog */
781#kiwi.theme_mini .server_select { padding:3em 0 2em 0; margin: 0 auto; width:100%; }
782#kiwi.theme_mini .server_select .more { display:none; }
783#kiwi.theme_mini .server_select button { display:block; padding:3px 7px; margin:0 auto; }
784#kiwi.theme_mini .server_select input.nick {
785 float:none; display:block; width:80%;
786 padding:0.5em 1em; margin:0 auto;
787 text-align: center;
788}
789#kiwi.theme_mini .server_select label { display:none; }
790#kiwi.theme_mini .server_select br { clear:both; }
791#kiwi.theme_mini .server_select .basic { border:none; }
fdce9047
D
792#kiwi.theme_mini .server_select .basic table { width:100%; }
793#kiwi.theme_mini .server_select .basic table tr.channel,
794#kiwi.theme_mini .server_select .basic table tr.pass,
795#kiwi.theme_mini .server_select .basic table tr.have_pass { display:none; }
3f085329
D
796#kiwi.theme_mini .server_select .basic .show_more { display:none !important; }
797#kiwi.theme_mini .server_select.single_server .basic { border:none; }
798#kiwi.theme_mini .server_select .status { text-align: center; font-weight: bold; padding:1em; }
799#kiwi.theme_mini .server_select .status.ok { }
800#kiwi.theme_mini .server_select .status.error {
801 border:1px solid #A33F3F; background-color:#D28A8A;
802 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
803}
804
805#kiwi.theme_mini .server_select .divider-verticle {
806 display:none;
807}
808#kiwi.theme_mini .server_select .server_details {
809 position: relative !important;
810 float: none !important;
811 width: auto !important;
812 padding: 0 !important;
813 margin: 2em 0 0 0 !important;
814}
815#kiwi.theme_mini .server_select .about_kiwi { display:none; }
816
817
818
819
820
821
822
823
824
696a66f8
D
825/* CLI theme */
826#kiwi.theme_cli { background:#222222; color:#6d6d6d; }
03b71faf
D
827#kiwi.theme_cli,
828#kiwi.theme_cli input,
829#kiwi.theme_cli button,
830#kiwi.theme_cli textarea {
831 font-family:Arial, Helvetica, sans-serif;
832 font-size:14px; line-height:1.4em;
833}
834
c5366583 835#kiwi.theme_cli #controlbox { background:#111111; border-top:1px solid #444444; color:#909090; font-size:1.3em; line-height:2em; }
696a66f8 836#kiwi.theme_cli #controlbox .input_wrap:before { content:"> " }
03b71faf 837#kiwi.theme_cli #controlbox .input { background:none; border:none;}
8d0837f0 838#kiwi.theme_cli #controlbox .input .nick { line-height:1.7em; padding:0; text-align: right; width:11em; left:0px; position:absolute; overflow:hidden; }
03b71faf
D
839#kiwi.theme_cli #controlbox .input .input_wrap {
840 position:absolute;
841 right:7px; left: 12.2em;
842 height:1.7em;
843}
844#kiwi.theme_cli #controlbox .input .inp {
8d0837f0 845 line-height:1.4em;
03b71faf
D
846 font-size:1.3em;
847 background:transparent; color:#909090;
848 border: medium none;
849 box-shadow: none;
850 border-radius: 0;
851 outline:none; resize:none;
852 overflow:hidden;
853 position:absolute;
c5366583 854 top: 0px;
8d0837f0 855 height:99%; width:98%;
03b71faf
D
856 display: inline;
857 padding-left:0.5em;
858}
859
860#kiwi.theme_cli #topic { background:#111111; height:2em; border-bottom:1px solid #444444; border-top:1px solid #444444; }
861#kiwi.theme_cli #topic div {
862 width:100%; height: 1.5em;
863 padding: 0.2em 1em;
864 text-align: center;
865 color:#6d6d6d;
866 border:none; outline:none;
867 overflow: hidden;
868 white-space: nowrap;
869}
870#kiwi.theme_cli #topic:hover div {
871 min-height:1.5em;
872 white-space:pre-wrap; word-wrap:break-word;
873 overflow:visible;
874 background-color:#111111;
875 z-index: 1;
876 height:auto; bottom:auto;
877 border-bottom: 1px solid #444444;
878}
879
880#kiwi.theme_cli #toolbar .app_tools { width:200px; padding-left:10px; color:#D4D4D4; }
881#kiwi.theme_cli #toolbar .app_tools ul li {
882 font-size:26px;
883 -webkit-transition: all .3s ease;
884 -moz-transition: all .3s ease;
885 transition: all .3s ease;
886 margin-left:10px;
887}
888#kiwi.theme_cli #toolbar .app_tools ul li:hover { color:#88C56A; }
889#kiwi.theme_cli #toolbar .app_tools img { }
890
891#kiwi.theme_cli #toolbar .panellist li {
892 line-height: 1.4em;
893 vertical-align: middle;
894
03b71faf 895 border: 1px solid #333;
e967ff52 896 background-color: #111;
03b71faf
D
897}
898
c5366583
D
899#kiwi.theme_cli #toolbar .panellist .alert_highlight { font-weight:bold; }
900#kiwi.theme_cli #toolbar .panellist .alert_activity { font-weight:normal; }
901#kiwi.theme_cli #toolbar .panellist .alert_action { font-weight:normal; }
03b71faf
D
902
903#kiwi.theme_cli #toolbar .panellist .active { padding-right:23px; }
e97e4eb4 904#kiwi.theme_cli #toolbar .panellist li .part:before { content:"\f00d"; }
03b71faf 905
4cce3bd7
PV
906#kiwi.theme_cli #toolbar .panellist li.server span { padding-left:5px; }
907#kiwi.theme_cli #toolbar .panellist li.server:before { content: "\f0ec"; }
03b71faf
D
908
909/* Tab texts are within a span */
e967ff52
D
910#kiwi.theme_cli #toolbar .panellist li span { line-height:20px; vertical-align:middle; display:inline-block; }
911
912#kiwi.theme_cli #toolbar .panellist li .activity { display:inline; margin-left:0.5em; font-style:italic; font-size:0.8em; }
913#kiwi.theme_cli #toolbar .panellist li .activity:before { content:"("; }
914#kiwi.theme_cli #toolbar .panellist li .activity:after { content:")"; }
21f32731
D
915#kiwi.theme_cli #toolbar .panellist li.alert_highlight .activity {
916 color: #fff; background: #a60400; padding:2px; border-radius:3px;
917}
696a66f8 918
696a66f8 919
7bd34e87 920#kiwi.theme_cli #memberlists { background:#222222; }
03b71faf 921#kiwi.theme_cli #memberlists ul li { padding: 0.2em 1em; }
696a66f8 922#kiwi.theme_cli #memberlists ul li a.nick { color:#6d6d6d; }
03b71faf
D
923#kiwi.theme_cli #memberlists ul li:hover {
924 border-left: 5px solid #88C56A;
925 -webkit-transition: 0.2s ease;
926 -moz-transition: 0.2s ease;
927 -ms-transition: 0.2s ease;
928 -o-transition: 0.2s ease;
929 transition: 0.2s ease;
930}
931
932#kiwi.theme_cli #memberlists ul li .userbox { margin:0 1em 0 1em; padding-bottom:0.4em; font-size:.9em; }
933#kiwi.theme_cli #memberlists ul li .userbox a { display:block; text-decoration:none; margin-bottom:2px; }
934#kiwi.theme_cli #memberlists ul li .userbox a i { font-size:1.1em; margin-right:5px; }
935#kiwi.theme_cli #memberlists ul li .userbox .divider-horizontal { display:none; }
936
696a66f8
D
937
938#kiwi.theme_cli .messages .msg > div { color:#6d6d6d; font-family: Inconsolata, Consolas, 'courier new', monospace; }
939#kiwi.theme_cli .messages .msg { border: none; }
03b71faf
D
940#kiwi.theme_cli .messages .msg .time { display:inline; margin-right:1em; color:#777; }
941#kiwi.theme_cli .messages .msg .nick { display:inline; margin-right:1em; }
942#kiwi.theme_cli .messages .msg .nick:before { content:"<"; }
943#kiwi.theme_cli .messages .msg .nick:after { content:">"; }
696a66f8
D
944#kiwi.theme_cli .messages .msg .text { white-space:pre-wrap; word-wrap:break-word; }
945
946#kiwi.theme_cli .messages .msg.action .nick { display:none; }
03b71faf 947#kiwi.theme_cli .messages .msg.action .text { color:#009900; border-left:none; font-style:italic; }
696a66f8
D
948#kiwi.theme_cli .messages .msg.action.join { color:#009900; }
949#kiwi.theme_cli .messages .msg.action.part .text { color:#900; }
950#kiwi.theme_cli .messages .msg.action.quit .text { color:#900; }
951#kiwi.theme_cli .messages .msg.action.kick .text { color:#900; }
952#kiwi.theme_cli .messages .msg.status .nick { display:none; }
03b71faf 953#kiwi.theme_cli .messages .msg.status .text { color:#990000; border-left:none; font-weight:bold; }
696a66f8 954#kiwi.theme_cli .messages .msg.topic .nick { display:none; }
03b71faf 955#kiwi.theme_cli .messages .msg.topic .text { color:#009900; font-style: italic; border-left:none; }
696a66f8
D
956/*#kiwi.theme_cli .messages .msg.motd .nick { display:none; }*/
957#kiwi.theme_cli .messages .msg.motd { border:none; }
958#kiwi.theme_cli .messages .msg.motd .text { color:#666; }
959#kiwi.theme_cli .messages .msg.whois .nick { font-weight:normal; }
03b71faf 960#kiwi.theme_cli .messages .msg.whois .text { padding-left:1em; border-left:1px dashed #999; }
696a66f8
D
961#kiwi.theme_cli .messages .msg.error .text {
962 border:1px solid #A33F3F; background-color:#D28A8A;
963 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
7b8357a5
D
964}
965
03b71faf 966#kiwi.theme_cli .messages .msg.global_nick_highlight { background:#111111; }
21f32731 967#kiwi.theme_cli .messages .msg.highlight { background:#111111; }
03b71faf
D
968
969
8ed27b45
D
970
971#kiwi.theme_cli .messages .msg .media { margin-left:0.5em; }
972#kiwi.theme_cli .messages .msg .media .media_close { font-size:0.9em; }
973#kiwi.theme_cli .messages .msg .media .media_content { margin:10px 0 0 6em; overflow:hidden; }
974#kiwi.theme_cli .messages .msg .media .media_content img { padding:3px; border:1px solid gray; }
975#kiwi.theme_cli .messages .msg .media .media_content > .content {
976 background: white;
977 overflow: hidden;
978 padding: 10px;
979 border: #DDD 1px solid;
980 border-top-color: #EEE;
981 border-bottom-color: #BBB;
982 -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
983 -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.15);
984 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
985 border-radius: 5px;
986 float: left;
987}
988
989#kiwi.theme_cli .messages .msg .media.twitter .media_content > .content {
990 background: transparent;
991 border:none;
992 overflow: hidden;
993 box-shadow: none;
994 padding: 0;
995}
996#kiwi.theme_cli .messages .msg .media.reddit .thumbnail_nsfw {
997 display: inline-block;
998 float: left;
999}
1000#kiwi.theme_cli .messages .msg .media.reddit .thumbnail { float:left; margin-right: 0.5em; }
1001
1002
1003
03b71faf
D
1004/* The server select dialog */
1005#kiwi.theme_cli .server_select { width:730px; padding:3em 0 2em 0; margin: 0 auto; }
1006#kiwi.theme_cli .server_select .more { display: none; width:270px; margin:0 auto; }
fdce9047 1007#kiwi.theme_cli .server_select table tr td { padding:5px; }
03b71faf 1008#kiwi.theme_cli .server_select button { float:right; padding:3px 7px; margin-top:10px; }
fdce9047
D
1009#kiwi.theme_cli .server_select input { padding:3px 7px; width:150px; }
1010#kiwi.theme_cli .server_select label { width:5em; padding-top:3px }
03b71faf
D
1011#kiwi.theme_cli .server_select br { clear:both; }
1012#kiwi.theme_cli .server_select .basic input, .server_select .basic button { font-size:1em; padding:0.5em 1em; }
1013#kiwi.theme_cli .server_select .basic input { width:170px; }
1014#kiwi.theme_cli .server_select .basic label { font-size:1.3em; margin-top:4px; }
fdce9047
D
1015#kiwi.theme_cli .server_select .basic tr.have_pass { font-size:0.8em; }
1016#kiwi.theme_cli .server_select .basic tr.channel td { padding-top:1em; }
03b71faf 1017#kiwi.theme_cli .server_select .basic { border-bottom: 1px dashed gray; margin-bottom:1em; }
fdce9047 1018#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; }
03b71faf
D
1019#kiwi.theme_cli .server_select.single_server .basic { border:none; }
1020#kiwi.theme_cli .server_select .status { text-align: center; font-weight: bold; padding:1em; }
1021#kiwi.theme_cli .server_select .status.ok { }
1022#kiwi.theme_cli .server_select .status.error {
1023 border:1px solid #A33F3F; background-color:#D28A8A;
1024 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
1025}
1026
1027
1028#kiwi.theme_cli .server_select .kiwi_logo { text-align: center; display:block; }
1029#kiwi.theme_cli .server_select .kiwi_logo h1 {
1030 font-size:20px;
1031 line-height:48px; vertical-align: middle;
1032 color: #555555;
1033}
fdce9047
D
1034#kiwi.theme_cli .server_select .kiwi_logo img { }
1035
1036
d98b7d33 1037#kiwi.theme_cli .divider-verticle {
fdce9047
D
1038 border-left: 1px solid #303030;
1039 border-right: 1px solid #1B1B1B;
1040}
1041
d98b7d33 1042#kiwi.theme_cli .divider-horizontal {
fdce9047
D
1043 border-top: 1px solid #303030;
1044 border-bottom: 1px solid #1B1B1B;
c5366583
D
1045}
1046
1047
1048
1049#kiwi.theme_cli.chanlist_treeview #panels { left:200px; }
1050#kiwi.theme_cli.chanlist_treeview #toolbar { position:static; }
1051#kiwi.theme_cli.chanlist_treeview #toolbar .app_tools { float:none; }
a7a1a6fb 1052#kiwi.theme_cli.chanlist_treeview #toolbar > div { }
c5366583
D
1053#kiwi.theme_cli.chanlist_treeview #toolbar #tabs { position:absolute; left:0px; bottom:0px; top:0px; margin:0; width:200px; background:#1B1B1B; overflow-y:auto; }
1054#kiwi.theme_cli.chanlist_treeview #tabs ul li { display:block; float:none; }
1055#kiwi.theme_cli.chanlist_treeview #tabs ul li .activity { float:right; }
e48a02c8
D
1056#kiwi.theme_cli.chanlist_treeview #tabs ul li.active { padding-left:1em; }
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067/**
1068 * Basic theme
1069 */
1070#kiwi.theme_basic {
1071 background: #FFF;
1072 color: #555555;
1073}
1074#kiwi.theme_basic,
1075#kiwi.theme_basic input,
1076#kiwi.theme_basic button,
1077#kiwi.theme_basic textarea {
1078 font-family:Arial, Helvetica, sans-serif;
1079 font-size:14px; line-height:1.4em;
1080}
1081#kiwi.theme_basic input, textarea {
1082 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5),0 1px 0px rgba(255, 255, 255, 0.3);
1083 border: none;
1084 border-radius: 3px;
1085}
1086#kiwi.theme_basic #toolbar {
1087 background-color:#1B1B1B; font-size:0.9em;
1088}
1089#kiwi.theme_basic #controlbox { background-color:#1B1B1B; }
1090#kiwi.theme_basic #memberlists_resize_handle {
1091 display:none; width:0;
1092}
1093#kiwi.theme_basic #toolbar .panellist li {
1094 line-height: 1.4em;
1095 vertical-align: middle;
1096
1097 border-radius:5px;
1098 -moz-border-radius:5px;
1099 -webkit-border-radius:5px;
1100 -khtml-border-radius:5px;
1101
1102 border: 1px solid #333;
1103 background-color: #eee;
1104}
1105
1106#kiwi.theme_basic #toolbar #tabs { margin-right:0 !important; }
1107#kiwi.theme_basic #toolbar .panellist .alert_highlight { font-weight:bold; color:red; }
1108#kiwi.theme_basic #toolbar .panellist .alert_activity { font-weight:normal; color:green; }
1109#kiwi.theme_basic #toolbar .panellist .alert_action { font-weight:normal; color:green; }
1110
e97e4eb4 1111#kiwi.theme_basic #toolbar .panellist .active { padding-right:25px; }
e48a02c8 1112#kiwi.theme_basic #toolbar .panellist li .part {}
e97e4eb4 1113#kiwi.theme_basic #toolbar .panellist li .part:before { content:"[x]"; }
e48a02c8
D
1114
1115#kiwi.theme_basic #toolbar .panellist li.server span { }
1116
1117/* Tab texts are within a span */
1118#kiwi.theme_basic #toolbar .panellist li span { line-height:20px; vertical-align:middle; display:inline-block; }
1119
1120#kiwi.theme_basic #toolbar .panellist li .activity { display:inline; margin-left:0.5em; font-style:italic; font-size:0.8em; }
1121#kiwi.theme_basic #toolbar .panellist li .activity:before { content:"("; }
1122#kiwi.theme_basic #toolbar .panellist li .activity:after { content:")"; }
1123
1124#kiwi.theme_basic #status_message {
1125 background: #FEEFB3; color: #9F6000;
1126 border-bottom: 1px solid;
1127 padding: 0.9em;
1128 text-align: center; font-size:1.1em;
1129}
1130#kiwi.theme_basic #status_message.err { color:#D8000C; background:#FFBABA; }
1131
1132#kiwi.theme_basic .messages { }
1133#kiwi.theme_basic .messages.active { }
1134#kiwi.theme_basic .messages a { text-decoration:underline; }
1135
2d42794d 1136#kiwi.theme_basic .messages .msg { }
e48a02c8
D
1137#kiwi.theme_basic .messages .msg > div { font-family: Consolas, "Lucida Console", monospace; font-size:0.9em; }
1138#kiwi.theme_basic .messages .msg { border: none; }
2d42794d 1139#kiwi.theme_basic .messages .msg .time { display:inline; margin-right:1em; margin-left:2px; color:gray; }
e48a02c8
D
1140#kiwi.theme_basic .messages .msg .nick { display:inline; margin-right:1em; }
1141#kiwi.theme_basic .messages .msg .nick:before { content:"<"; }
1142#kiwi.theme_basic .messages .msg .nick:after { content:">"; }
141058ff 1143#kiwi.theme_basic .messages .msg .text { white-space:pre-wrap; word-wrap:break-word; color:#1e1e1e; }
e48a02c8
D
1144
1145#kiwi.theme_basic .messages .msg.action .nick,
1146#kiwi.theme_basic .messages .msg.static .nick,
1147#kiwi.theme_basic .messages .msg.topic .nick { display:none; }
1148
2d42794d
D
1149#kiwi.theme_basic .messages .msg.action .text { color:#009900; font-style:italic; }
1150#kiwi.theme_basic .messages .msg.action.join { color:#009900; }
1151#kiwi.theme_basic .messages .msg.action.part .text { color:#900; }
1152#kiwi.theme_basic .messages .msg.action.quit .text { color:#900; }
1153#kiwi.theme_basic .messages .msg.action.kick .text { color:#900; }
1154
e48a02c8
D
1155#kiwi.theme_basic .messages .msg.motd { border:none; }
1156/*#kiwi.theme_basic .messages .msg.motd .nick { display:none; }*/
1157#kiwi.theme_basic .messages .msg.motd .text { color:#666; }
1158#kiwi.theme_basic .messages .msg.whois .nick { font-weight:normal; }
1159#kiwi.theme_basic .messages .msg.whois .text { padding-left:1em; border-left:1px dashed #999; }
1160#kiwi.theme_basic .messages .msg.error .text {
1161 border:1px solid #A33F3F; background-color:#D28A8A;
1162 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
1163}
1164
1165#kiwi.theme_basic .messages .msg.global_nick_highlight,
1166#kiwi.theme_basic .messages .msg.highlight { background:#D9D9D9; }
1167
1168
1169
1170#kiwi.theme_basic #memberlists {
1171 background-color: #DADADA;
2d42794d 1172 border-left: 1px dashed #8A8A8A;
e48a02c8 1173}
2d42794d 1174#kiwi.theme_basic #memberlists ul { list-style: none; margin-left:2px; }
e48a02c8
D
1175#kiwi.theme_basic #memberlists ul.active { }
1176#kiwi.theme_basic #memberlists ul li { padding:0 2px; }
1177#kiwi.theme_basic #memberlists ul li:hover {}
1178#kiwi.theme_basic #memberlists ul li a.nick { display:block; color:black; }
1179
1180#kiwi.theme_basic #memberlists ul li .userbox { margin:0 1em 5px 1em; padding-bottom:0.7em; font-size:.9em; }
1181#kiwi.theme_basic #memberlists ul li .userbox a { display:block; text-decoration:none; margin-bottom:2px; }
1182#kiwi.theme_basic #memberlists ul li .userbox a i { font-size:1.1em; margin-right:5px; }
1183
1184
1185#kiwi.theme_basic #controlbox .input {
1186 background:#fff; margin:3px;
1187 height:1.7em;
1188}
2d42794d
D
1189#kiwi.theme_basic #controlbox .input .nick {
1190 text-align: right;
1191 width: 11em;
1192 left: 0px;
1193 position: absolute;
1194 padding: 2px;
1195 overflow: hidden;
1196}
1197#kiwi.theme_basic #controlbox .input .nick:after { content:">"; margin-left:3px; top:2px; }
e48a02c8
D
1198#kiwi.theme_basic #controlbox .input .nick a { text-decoration:none; color:black; }
1199#kiwi.theme_basic #controlbox .input .input_wrap {
1200 position:absolute;
2d42794d 1201 right:3px; left:12em;
e48a02c8
D
1202 height:1.7em;
1203}
1204#kiwi.theme_basic #controlbox .input .inp {
1205 line-height:1.7em;
1206 border: medium none;
1207 box-shadow: none;
1208 border-radius: 0;
1209 resize:none;
1210 overflow:hidden;
1211 position:relative;
1212 height:100%; width:100%;
1213 display: block;
1214}
1215
1216
1217#kiwi.theme_basic #controlbox .nickchange {
1218 padding:10px; left: 0px;
1219 background: #1B1B1B; color:#eeeeee;
1220}
1221#kiwi.theme_basic #controlbox .nickchange input { padding:0.3em 0.5em; }
1222#kiwi.theme_basic #controlbox .nickchange button { padding:0.5em; }
1223
1224
1225
1226#kiwi.theme_basic #topic { }
1227#kiwi.theme_basic #topic div {
1228 top:2; bottom:2px; left:0; width:100%;
1229 padding: 0.2em 1em;
1230 text-align: center;
1231 box-shadow: none;
1232 border-radius: 0;
1233 background-color:#FFF;
1234 height: 1.5em;
1235 overflow: hidden;
1236 outline: none;
1237}
1238#kiwi.theme_basic #topic:hover div {
1239 min-height:1.5em;
1240 white-space:pre-wrap; word-wrap:break-word;
1241 overflow:visible;
1242 background-color:#FFF;
1243 z-index: 1;
1244 height:auto; bottom:auto;
1245 border-bottom: 1px dotted #1B1B1B;
1246}
1247
1248
1249#kiwi.theme_basic #toolbar .app_tools { padding-left:10px; color:#D4D4D4; }
1250#kiwi.theme_basic #toolbar .app_tools ul li {
1251 font-size:26px;
1252 -webkit-transition: all .3s ease;
1253 -moz-transition: all .3s ease;
1254 transition: all .3s ease;
1255 margin-left:10px;
1256}
1257#kiwi.theme_basic #toolbar .app_tools ul li:hover { color:#88C56A; }
1258#kiwi.theme_basic #toolbar .app_tools img { }
1259
1260
1261/* The server select dialog */
335bc454
D
1262#kiwi.theme_basic .server_select { width:730px; padding:3em 0 2em 0; margin: 0 auto; }
1263#kiwi.theme_basic .server_select a { text-decoration: none; }
1264#kiwi.theme_basic .server_select .more { display: none; width:270px; margin:0 auto; }
1265#kiwi.theme_basic .server_select table tr td { padding:5px; }
1266#kiwi.theme_basic .server_select button { float:right; padding:3px 7px; }
1267#kiwi.theme_basic .server_select input { padding:3px 7px; width:150px; }
1268#kiwi.theme_basic .server_select label { }
e48a02c8 1269#kiwi.theme_basic .server_select br { clear:both; }
335bc454
D
1270#kiwi.theme_basic .server_select .basic input, .server_select .basic button { font-size:1em; padding:0.5em 1em; }
1271#kiwi.theme_basic .server_select .basic input { width:170px; }
1272#kiwi.theme_basic .server_select .basic label { font-size:1.3em; margin-top:4px; }
1273#kiwi.theme_basic .server_select .basic tr.have_pass { font-size:0.8em; }
1274#kiwi.theme_basic .server_select .basic tr.channel td { padding-top:1em; }
1275#kiwi.theme_basic .server_select .basic { border-bottom: 1px dashed gray; margin-bottom:1em; }
1276#kiwi.theme_basic .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; }
e48a02c8
D
1277#kiwi.theme_basic .server_select.single_server .basic { border:none; }
1278#kiwi.theme_basic .server_select .status { text-align: center; font-weight: bold; padding:1em; }
1279#kiwi.theme_basic .server_select .status.ok { }
1280#kiwi.theme_basic .server_select .status.error {
1281 border:1px solid #A33F3F; background-color:#D28A8A;
1282 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
1283}
1284
335bc454
D
1285
1286#kiwi.theme_basic .server_select .kiwi_logo { text-align: center; display:block; }
1287#kiwi.theme_basic .server_select .kiwi_logo h1 {
1288 font-size:20px;
1289 line-height:48px; vertical-align: middle;
1290 color: #555555;
e48a02c8 1291}
335bc454
D
1292#kiwi.theme_basic .server_select .kiwi_logo img { }
1293
e48a02c8
D
1294
1295#kiwi.theme_basic.chanlist_treeview #panels { left:160px; }
1296#kiwi.theme_basic.chanlist_treeview #toolbar { position:static; }
1297#kiwi.theme_basic.chanlist_treeview #toolbar .app_tools { float:none; }
1298#kiwi.theme_basic.chanlist_treeview #toolbar > div { margin-left:160px; }
1299#kiwi.theme_basic.chanlist_treeview #toolbar #tabs { position:absolute; left:0px; bottom:0px; top:0px; margin:0; width:160px; background:#1B1B1B; overflow-y:auto; }
1300#kiwi.theme_basic.chanlist_treeview #tabs ul li { display:block; float:none; }
1301#kiwi.theme_basic.chanlist_treeview #tabs ul li .activity { float:right; }
1302#kiwi.theme_basic.chanlist_treeview #tabs ul li.active {
1303 margin-right:0;
1304 border-right-width:0;
1305 border-bottom-right-radius:0;
1306 border-top-right-radius:0;
e97e4eb4 1307}