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