]> jfr.im git - irc/quakenet/qwebirc.git/blame - css/qui.mcss
Add option to hide timestamp.
[irc/quakenet/qwebirc.git] / css / qui.mcss
CommitLineData
6f8a20df
CP
1topic_background=c,f2f0ff
2lines_background=c,f2f0ff
3topic_border=c,c8d2dc
4tabbar_border=c,c3cee0
5tabbar_background=c,e2ecf9
6tabbar_text=c,000000
7tab_border=c,c8d2dc
8tab_text=c,000000
9tab_hover=c,ffffff
10tab_selected=c,ffffff
11tab_selected_border=c,c8d2dc
12tab_selected_text=c,333333
13input_border=c,c3cee0
14nicklist_border=c,c8d2dc
15nicklist_background=c,f2f0ff
16nicklist_text=c,000000
17nicklist_selected_border=c,c8d2dc
18menu_border=c,c8d2dc
19menu_background=c,f2f0ff
20menu_hover_background=c,FFFFFE
21lastpositionbar=c,C8D2DC
a7249843
CP
22timestamp_display=o,SHOW_TIMESTAMPS,inline,none
23timestamp_padding_left=o,SHOW_TIMESTAMPS,7px,11px
24timestamp_text_indent=o,SHOW_TIMESTAMPS,-7px,-9px
4dd199c3 25
b59f2549
CP
26body {
27 margin: 0;
28 height: 100%;
29 overflow: hidden;
e82478eb 30 font-family: Verdana, sans-serif;
b59f2549
CP
31}
32
df07adea
CP
33html {
34 overflow: hidden;
35}
36
b59f2549
CP
37#ircui {
38 position: absolute;
39 left: 0px;
40 right: 0px;
41 top: 0px;
42 height: 100%;
43 width: 100%;
44 overflow: hidden;
45}
46
b1ee83f3
CP
47.qwebirc-qui .dynamicpanel {
48 position: absolute;
49}
50.qwebirc-qui .widepanel, .leftboundpanel {
51 left: 0px;
52}
53.qwebirc-qui .widepanel {
54 width: 100%;
55}
56.qwebirc-qui .topboundpanel {
57 top: 0px;
58}
59.qwebirc-qui .rightboundpanel {
60 /*right: 0px;*/
61}
62.qwebirc-qui .bottomboundpanel {
63 color: red;
64}
65
66.qwebirc-qui .lines {
925fc357 67 color: black;
b1ee83f3 68 overflow: auto;
b1ee83f3 69 font-size: 0.8em;
4dd199c3 70 background: $(lines_background);
b1ee83f3
CP
71}
72
a7249843
CP
73.qwebirc-qui .lines .timestamp {
74 display: $(timestamp_display);
75}
76
06a4f056
CP
77.qwebirc-qui .ircwindow div {
78 font-family: Consolas, "Lucida Console", monospace;
a7249843
CP
79 text-indent: $(timestamp_text_indent);
80 padding-left: $(timestamp_padding_left);
06a4f056 81 word-wrap: break-word;
e82478eb
CP
82}
83
b1ee83f3
CP
84.qwebirc-qui .tab-invisible {
85 display: none;
86}
87
c1416a8d 88.qwebirc-qui .input input.keyboard-input {
b1ee83f3
CP
89 border: 0px;
90 margin: 2px 0px 0px 0px;
91 width: 99%;
b1ee83f3
CP
92}
93
c1416a8d
CP
94.qwebirc-qui .input input.mobile-input {
95 border: 0px;
96 margin: 2px 0px 0px 0px;
97}
98
99.qwebirc-qui .input input.mobile-button {
100 position: absolute;
101 top: 0px;
102}
103
b1ee83f3
CP
104.qwebirc-qui form {
105 margin: 0px;
106 padding: 0px;
107}
70638ce4
CP
108
109.qwebirc-qui .topic {
110 position: absolute;
111 left: 0px;
112 top: 0px;
113 right: 0px;
4dd199c3
CP
114 background-color: $(topic_background);
115 border-bottom: 1px dashed $(topic_border);
70638ce4
CP
116}
117
118.qwebirc-qui .topic .emptytopic {
52090a1f 119 color: gray;
70638ce4
CP
120}
121
122.qwebirc-qui .topic {
52090a1f 123 color: gray;
70638ce4
CP
124 padding-left: 5px;
125 font-size: 0.7em;
f34d8514 126 cursor: default;
70638ce4
CP
127}
128
941e1642 129.qwebirc-qui .outertabbar {
4dd199c3
CP
130 border-bottom: 1px solid $(tabbar_border);
131 background: $(tabbar_background);
941e1642
CP
132}
133
134.qwebirc-qui .tabbar {
70638ce4 135 font-size: 0.8em;
4dd199c3 136 color: $(tabbar_text);
ff1c78b3
CP
137 margin-left: 38px;
138 line-height: 24px;
70638ce4
CP
139}
140
141.qwebirc-qui a.tab {
4dd199c3 142 border: 1px solid $(tab_border);
70638ce4
CP
143 padding: 2px;
144 cursor: default;
70638ce4
CP
145 -moz-border-radius: 4px;
146 -webkit-border-radius: 4px;
ff1c78b3
CP
147 margin-right: -2px;
148 white-space: nowrap;
70638ce4 149 text-decoration: none;
4dd199c3 150 color: $(tab_text);
70638ce4
CP
151}
152
153.qwebirc-qui .tab:hover {
4dd199c3 154 background: $(tab_hover);
70638ce4
CP
155 border: 1px solid #c8d2dc;
156 -moz-border-radius: 4px;
157 -webkit-border-radius: 4px;
158}
159
160.qwebirc-qui .tab-selected {
4dd199c3
CP
161 background: $(tab_selected);
162 border: 1px solid $(tab_selected_border);
70638ce4
CP
163 -moz-border-radius: 4px;
164 -webkit-border-radius: 4px;
4dd199c3 165 color: $(tab_selected_text);
70638ce4
CP
166}
167
168.qwebirc-qui div.input {
4dd199c3 169 border-top: 1px solid $(input_border);
70638ce4
CP
170 padding-left: 3px;
171 padding-right: 3px;
172}
173
174.qwebirc-qui .tabclose {
175 margin-left: 5px;
ff1c78b3
CP
176 font-size: 0.7em;
177 line-height: 150%;
70638ce4
CP
178 vertical-align: top;
179 padding-left: 3px;
180 -moz-border-radius: 2px;
181 -webkit-border-radius: 2px;
182}
96f28062
CP
183
184.qwebirc-qui a.tab-hilight-activity {
a87357c0 185 color: #009900;
96f28062
CP
186}
187
188.qwebirc-qui a.tab-hilight-speech {
68e4ac2d 189 color: #0000ff;
96f28062
CP
190}
191
192.qwebirc-qui a.tab-hilight-us {
68e4ac2d 193 color: #ff0000;
96f28062 194}
52090a1f
CP
195
196.qwebirc-qui .nicklist {
4dd199c3 197 border-left: 1px solid $(nicklist_border);
52090a1f
CP
198 position: absolute;
199 top: 0px;
200 right: 0px;
cffd43cf 201 width: 140px;
52090a1f 202 overflow: auto;
4dd199c3
CP
203 background: $(nicklist_background);
204 color: $(nicklist_text);
52090a1f
CP
205 font-size: 0.7em;
206}
207
208.qwebirc-qui .nicklist a {
209 display: block;
210 color: black;
211 text-decoration: none;
212 cursor: default;
4dd199c3
CP
213 border-top: 1px solid $(nicklist_background);
214 border-bottom: 1px solid $(nicklist_background);
52090a1f
CP
215 padding-left: 1px;
216}
217
218.qwebirc-qui .nicklist a.selected {
219 display: block;
220 color: black;
221 background: white;
222 text-decoration: none;
4dd199c3 223 border-bottom: $(nicklist_selected_border) 1px solid;
52090a1f 224 cursor: default;
0b638f3c
CP
225}
226
d8272bcb 227.qwebirc-qui .nicklist a.selected-middle {
4dd199c3 228 border-top: $(nicklist_selected_border) 1px solid;
d8272bcb
CP
229}
230
0b638f3c
CP
231div#noscript {
232 text-align: center;
0b638f3c 233 font-weight: bold;
cffd43cf
CP
234}
235
236.qwebirc-qui .nicklist div.menu {
237 margin: 0px 0px 0px 5px;
238}
239
240.qwebirc-qui .nicklist div.menu a {
241 border-bottom: 0;
242 border-top: 0;
925fc357
CP
243}
244
7cb09779
CP
245.qwebirc-qui .hyperlink-whois, .hyperlink-qwhois, .hyperlink-channel {
246 cursor: pointer;
247 cursor: hand;
248}
249
250.qwebirc-qui .hyperlink-whois:hover, .hyperlink-qwhois:hover, .hyperlink-channel:hover {
251 text-decoration: underline;
f9b2babd 252}
43cb8910 253
941e1642 254.qwebirc-qui .outertabbar .dropdown-tab {
43cb8910
CP
255 cursor: pointer;
256 cursor: hand;
941e1642
CP
257 float: left;
258 padding: 4px;
ff1c78b3 259 width: 30px;
43cb8910
CP
260}
261
e9837dce 262.qwebirc-qui .dropdownmenu {
43cb8910 263 z-index: 100;
4dd199c3 264 border: 1px solid $(menu_border);
43cb8910 265 position: relative;
43cb8910
CP
266 top: 10px;
267 left: 10px;
4dd199c3 268 background: $(menu_background);
43cb8910
CP
269}
270
e9837dce 271.qwebirc-qui .dropdownmenu a {
43cb8910
CP
272 display: block;
273 font-size: 0.7em;
274 color: black;
275 cursor: pointer;
276 cursor: hand;
277 padding-top: 1px;
4355d625 278 padding-left: 3px;
43cb8910 279 padding-bottom: 1px;
4355d625 280 padding-right: 3px;
43cb8910
CP
281}
282
e9837dce 283.qwebirc-qui .dropdownmenu a:hover {
4dd199c3 284 background: $(menu_hover_background); /* IE is rubbish and doesn't like #FFFFFF or white */
43cb8910
CP
285}
286
e9837dce
CP
287.qwebirc-qui .dropdownhint {
288 position: relative;
289 left: -500px;
43cb8910 290 z-index: 10;
1e9c8714 291 white-space: nowrap;
43cb8910
CP
292 font-size: 0.7em;
293}
5c0b5a6e
CP
294
295.qwebirc-qui hr.lastpos {
296 border: none;
4dd199c3 297 border-top: 1px solid $(lastpositionbar);
5c0b5a6e
CP
298 margin-left: 3em;
299 margin-right: 3em;
300}