]> git.ozlabs.org Git - patchwork/blob - htdocs/css/style.css
Add nacked-by tag
[patchwork] / htdocs / css / style.css
1 body {
2         background-color: white;
3         color: black;
4         margin: 0em;
5         font-size: 9pt;
6 }
7
8 .floaty {
9         position: fixed;
10         left: 0.1em;
11         top: 17em;
12 }
13
14
15 #title {
16         background: url('/images/title-background.png') top left repeat-x;
17         background-color: #786fb4;
18         margin: 0px;
19         padding-top: 0.1em;
20         padding-bottom: 0.0em;
21         padding-left: 2em;
22 }
23
24 #title h1, #title h1 a {
25         font-size: 16pt;
26         color: white;
27         margin-bottom: 0;
28 }
29
30 .beta {
31         font-size: 60%;
32         vertical-align: sub;
33         line-height: 2em;
34 }
35
36 #auth {
37         border-left: thin solid white;
38         padding-top: 0em;
39         padding-left: 1.5em;
40         padding-right: 1.5em;
41         padding-top: 0.5em;
42         padding-bottom: 0.5em;
43         font-size: 90%;
44         float: right;
45         color: white;
46 }
47 #auth a {
48         color: white;
49 }
50
51 #nav {
52         float: left
53         width: 100%;
54         background: #e8e8e8;
55         border-bottom: 0.2em solid #786fb4;
56         font-size: 90%;
57         padding: 0.2em 0.5em;
58 }
59
60 #nav a {
61         text-decoration: underline;
62 }
63
64 #navleft {
65         float: left;
66 }
67
68 #navright {
69         float: right;
70 }
71
72 #content {
73         padding: 1em;
74 }
75
76 form {
77         padding: 0em;
78         margin: 0em;
79 }
80
81 a:visited { color: #000000; }
82 a { color: #786fb4; }
83
84 table {
85         border-collapse: collapse;
86 }
87
88 img {
89         border: 0;
90 }
91
92 input {
93         border: thin solid #909090;
94 }
95
96 dl dt {
97         margin-top: 0.8em;
98 }
99
100 #footer {
101         padding: 1em;
102         font-size: small;
103         text-align: center;
104         color: #909090;
105 }
106
107 #footer a {
108         color: #909090;
109 }
110
111 /* messages */
112 #messages {
113         background: #e0e0f0;
114         margin: 0.5em 1em 0.0em 0.5em;
115         padding: 0.3em;
116 }
117
118 #messages .message {
119         color: green;
120 }
121
122 /* patch lists */
123 table.patchlist {
124         width: 98%;
125         border: thin solid black;
126         padding: 0em 1em;
127 }
128
129 table.patchlist th {
130         background: #eeeeee;
131         border-bottom: thin solid black;
132         text-align: left;
133         padding-left: 6px;
134 }
135
136 table.patchlist th img {
137         vertical-align: bottom;
138 }
139
140 table.patchlist td {
141         padding: 2px 6px 2px 6px;
142         margin: 0px;
143         margin-top: 10px;
144 }
145
146 table.patchlist td img {
147         vertical-align: bottom;
148 }
149
150 table.patchlist td.patchlistfilters {
151         background: #c0c0ff;
152         border-top: thin solid gray;
153         border-bottom: thin solid black;
154         font-size: smaller;
155 }
156 table.patchlist td.patchlistreorder {
157         background: #c0c0ff;
158         border-top: thin solid gray;
159         border-bottom: thin solid black;
160         font-size: smaller;
161         text-align: right;
162 }
163 table.patchlist tr.odd {
164         background: #ffffff;
165 }
166
167 table.patchlist tr.even {
168         background: #e8e8e8;
169 }
170
171 a.colinactive, a.colactive {
172         color: black;
173         text-decoration: none;
174 }
175
176 a.colinactive:hover {
177         color: red;
178 }
179
180 div.filters {
181 }
182
183 div.patchforms {
184         margin-top: 2em;
185 }
186
187 /* list order manipulation */
188
189 table.patchlist tr.draghover {
190         background: #e8e8e8 !important;
191 }
192
193 .dragging {
194         border: thin solid black;
195         background: #e8e8e8 !important;
196 }
197
198 input#reorder-cancel {
199         display: none;
200         color: #505050;
201 }
202
203 input#reorder-change {
204 }
205
206 /* list pagination */
207 .paginator { padding-bottom: 1em; padding-top: 1em; font-size: 80%; }
208
209 .paginator .prev-na,
210 .paginator .next-na {
211         padding:.3em;
212         font-weight: normal;
213         border: 0.1em solid #c0c0c0;
214         background-color: #f9f9f9;
215         color: #a0a0a0;
216 }
217
218 .paginator .prev a, .paginator .prev a:visited,
219 .paginator .next a, .paginator .next a:visited {
220         border: 0.1em solid #b0b0d0;
221         background-color: #eeeeee;
222         color: #786fb4;
223         padding: .3em;
224         font-weight: bold;
225 }
226
227 .paginator .prev, .paginator .prev-na { margin-right:.5em; }
228 .paginator .next, .paginator .next-na { margin-left:.5em; }
229
230 .paginator .page a, .paginator .page a:visited, .paginator .curr {
231         padding: .25em;
232         font-weight: bold;
233         border: 1px solid #b0b0d0;
234         background-color: #eeeeee;
235         margin: 0em .25em;
236         color: #786fb4;
237 }
238
239 .paginator .curr {
240         background-color: #b0b0d0;
241         color:#fff;
242         border:1px solid #c0c0ff;
243         font-weight:bold;
244 }
245
246 .paginator .page a:hover,
247 .paginator .curr a:hover,
248 .paginator .prev a:hover,
249 .paginator .next a:hover {
250         color: #ffffff;
251         background-color: #c0c0ff;
252         border:1px solid #234f32;
253 }
254
255 /* patch view */
256 table.patchmeta th {
257         text-align: left;
258 }
259
260 table.patchmeta tr th, table.patchmeta tr td {
261         text-align: left;
262         padding: 3px 10px 3px 10px;
263         vertical-align: middle;
264 }
265
266 .patchnav {
267         padding-left: 1em;
268         padding-top: 1em;
269 }
270
271 .comment .meta {
272         background: #f0f0f0;
273 }
274
275 .patch .content {
276         border: thin solid gray;
277         padding: 1em;
278 }
279
280 .quote {
281         color: #007f00;
282 }
283
284 span.p_header   { color: #2e8b57; font-weight: bold; }
285 span.p_chunk    { color: #a52a2a; font-weight: bold; }
286 span.p_context  { color: #a020f0; }
287 span.p_add      { color: #008b8b; }
288 span.p_del      { color: #6a5acd; }
289 span.p_mod      { color: #0000ff; }
290
291 .acked-by {
292         color: #2d4566;
293
294 }
295
296 .nacked-by {
297         color: #2d4566;
298
299 }
300
301 .signed-off-by {
302         color: #672d45;
303         font-weight: bold;
304 }
305
306 .from {
307         font-weight: bold;
308 }
309
310 /* bundles */
311 table.bundlelist {
312         margin-top: 2em;
313         margin-bottom: 4em;
314         margin-left: auto;
315         margin-right: auto;
316         border: thin solid black;
317 }
318
319 table.bundlelist th {
320         padding-left: 2em;
321         padding-right: 2em;
322         background: #eeeeee;
323         border-bottom: thin solid black;
324 }
325
326 table.bundlelist td
327 {
328         padding-left: 2em;
329         padding-right: 2em;
330 }
331
332 /* forms that appear for a patch */
333 div.patchform {
334         border: thin solid gray;
335         padding-left: 0.6em;
336         padding-right: 0.6em;
337         float: left;
338         margin: 0.5em 1em;
339 }
340
341 div.patchform h3 {
342         margin-top: 0em;
343         margin-left: -0.6em;
344         margin-right: -0.6em;
345         padding-left: 0.3em;
346         padding-right: 0.3em;
347         background: #786fb4;
348         color: white;
349         font-size: 100%;
350 }
351
352 div.patchform ul {
353         list-style-type: none;
354         padding-left: 0.2em;
355         margin-top: 0em;
356 }
357
358 /* forms */
359 table.form {
360 }
361
362 span.help_text {
363         font-size: 80%;
364 }
365
366
367 table.form td {
368         padding: 0.6em;
369         vertical-align: top;
370 }
371
372 table.form th.headerrow {
373         background: #786fb4;
374         color: white;
375         font-weight: bold;
376         text-align: center;
377 }
378
379 table.form th {
380         font-weight: normal;
381         text-align: left;
382         vertical-align: top;
383         padding-top: 0.6em;
384 }
385
386 table.form td.form-help {
387         font-size: smaller;
388         padding-bottom: 1em;
389         padding-top: 0em;
390 }
391
392 table.form tr td.submitrow {
393         border-bottom: 0.2em solid #786fb4;
394         text-align: center;
395 }
396
397 table.registerform {
398         margin-left: auto;
399         margin-right: auto;
400 }
401 table.loginform {
402         margin-left: auto;
403         margin-right: auto;
404         width: 30em;
405 }
406
407 /* form errors */
408 .errorlist {
409         color: red;
410         list-style-type: none;
411         padding-left: 0.2em;
412         margin: 0em;
413 }
414
415 /* generic table with header columns on the left */
416 table.horizontal {
417         border-collapse: collapse;
418         border: thin solid #e8e8e8;
419 }
420
421 table.horizontal th {
422         text-align: left;
423 }
424
425 table.horizontal td, table.horizontal th {
426         padding: 0.5em 1em;
427         border: thin solid #e8e8e8;
428 }
429
430 /* generic table with header row */
431 table.vertical {
432         border-collapse: collapse;
433 }
434 table.vertical th {
435         background: #786fb4;
436         color: white;
437         font-weight: bold;
438         text-align: center;
439 }
440
441 table.vertical th, table.vertical td {
442         padding: 0.2em 0.8em;
443         border: thin solid #e8e8e8;
444 }
445
446 td.numberformat {
447         text-align: right;
448 }
449
450 /* boxes */
451 div.box {
452         border: thin solid gray;
453         margin: 1em;
454         padding: 0.5em;
455 }
456
457 div.box h2 {
458         background: #786fb4;
459         color: white;
460         margin: -0.5em -0.5em 1em; -0.5em;
461         padding: 0em 0.5em;
462         font-size: 100%;
463 }
464
465 div.box table.vertical {
466         margin-left: auto;
467         margin-right: auto;
468 }
469
470 /* columns */
471 .leftcol {
472         float: left;
473         width: 49%;
474 }
475
476 .rightcol {
477         float: right;
478         width: 49%;
479 }