Auto panel scrolling; Sending raw IRC commands; Tab closing panels correctly; Panels...
[KiwiIRC.git] / client_backbone / style.css
CommitLineData
2dd6a025
D
1* { margin:0px; padding:0px; }
2html, body { height:100%; }
3
4
5
6
7body {
8 overflow:hidden; position:relative;
9 height:100%;
10 font-family:Arial, Helvetica, sans-serif;
11 font-size:14px; line-height:1.4em;
12 background:#EBEBEB;
13}
14
15/**
16 * Main layout blocks
17 */
473fe73f
D
18#toolbar { position:absolute; top:0px; width:100%; background-color:#1B1B1B; font-size:0.9em; }
19#panels { position:absolute; left:0px; right:200px; bottom:100px; top:100px; overflow-y:scroll; }
20#memberlists { position:absolute; right:0px; width:200px; bottom:100px; top:100px; }
2dd6a025
D
21#controlbox { position: absolute; bottom:0px; width:100%; background-color:#1B1B1B; }
22
23
24
25#toolbar .panellist {
26 overflow: hidden;
27 margin-right: 50px;
28 white-space: nowrap;
29 display:block;
30 /*height: 35px;*/
31}
32#toolbar .panellist li {
33 float: left; list-style: inline;
34 display:inline; position:relative;
35 padding:5px; margin:3px;
36 border: 1px solid #333;
37 background-color: #eee;
38
39 cursor: pointer;
40
41 line-height: 1.4em;
42 vertical-align: middle;
43
44 border-radius:5px;
45 -moz-border-radius:5px;
46 -webkit-border-radius:5px;
47 -khtml-border-radius:5px;
48 behavior: url(border-radius.htc);
49
50 background-image: -webkit-gradient(
51 linear,
52 left top,
53 left bottom,
54 color-stop(0.38, rgb(238,238,238)),
55 color-stop(0.68, rgb(209,209,209))
56 );
57 background-image: -moz-linear-gradient(
58 center top,
59 rgb(238,238,238) 38%,
60 rgb(209,209,209) 68%
61 );
62}
63#toolbar .panellist .active { padding-right:23px; }
64#toolbar .panellist .highlight {
65 background: #990000;
66 font-weight: bold;
67}
68#toolbar .panellist .activity { font-weight: bold; background: #009900; }
69
70#toolbar .panellist li img { width:1em; height:1em; top:7px; right:5px; position:absolute; }
71#toolbar .panellist li img.icon { left:5px; top:2px; height:auto; width:auto; }
72
73
74
75
76.messages {
77 overflow-x:wrap;
473fe73f 78 overflow-y:scroll;
2dd6a025
D
79 border:none; display: none;
80 height: 100%;
81}
82.messages a {
83 text-decoration:none;
84}
85.messages.active { display:block; }
86
87.messages .msg { border-bottom: 1px solid #CCC; padding:1px; font-family:arial; font-size:0.9em; }
88.messages .msg .time { width:6em; float:left; color:#777; }
89.messages .msg .nick { width:7em; text-align:right; float:left; font-size:12px; }
90.messages .msg .text { margin-left:15em; white-space:pre-wrap; word-wrap:break-word; font-family:monospace; }
91
92.messages .msg.action .nick { display:none; }
93.messages .msg.action .text { margin-left:9em; }
94.messages .msg.action.join { color:#009900; }
95.messages .msg.action.part .text { color:#900; }
96.messages .msg.action.quit .text { color:#900; }
97.messages .msg.status .nick { display:none; }
98.messages .msg.status .text { color:#990000; margin-left:9em; font-weight:bold; }
99.messages .msg.topic .nick { display:none; }
100.messages .msg.topic .text { color:#009900; margin-left:9em; font-style: italic; }
101/*.messages .msg.motd .nick { display:none; }*/
102.messages .msg.motd { border:none; }
103.messages .msg.motd .text { color:#666; }
104.messages .msg.whois .nick { font-weight:normal; }
105.messages .msg.whois .text { margin-left:18em; padding-left:1em; border-left:1px dashed #999; }
106.messages .msg.error .text {
107 border:1px solid #A33F3F; background-color:#D28A8A;
108 padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
109}
110
111
112
113#memberlists ul { list-style: none; display:none; }
114#memberlists ul.active { display:block; }
115#memberlists ul li { padding: 0.2em 1em; overflow-y:auto; overflow-x:hidden; cursor:pointer; }
116#memberlists ul li:hover { background-color:#FAF7D3; }
117
118#memberlists ul li .userbox { margin:0px 5px 5px 5px; font-size:.9em; }
119#memberlists ul li .userbox a { display:block; text-decoration:none; border-bottom: 1px dashed #aaa; }
120
121
122
123#controlbox .input {
124 background:#fff; margin:3px;
125 height:1.7em;
126 border-radius:5px;
127 -moz-border-radius:5px;
128 -webkit-border-radius:5px;
129 -khtml-border-radius:5px;
130}
131#controlbox .input .nick { text-align: right; width:11em; left:0px; position:absolute; padding:2px; }
132#controlbox .input .nick a { text-decoration:none; }
133#controlbox .input input {
134 position:absolute;
135 right:5px; left: 12.2em;
136 height:1.7em;
137 border: medium none;
138 outline:none;
139}
140
141
142
143#topic { background-color:#1B1B1B; height:2em; position:relative; }
144#topic input {
145 position:absolute;
146 top:2; bottom:2px; left:0; width:100%;
147 text-align: center;
148}