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