]> Lady’s Gitweb - Gitweb/blob - gitweb.css
gitweb: Add optional "time to generate page" info in footer
[Gitweb] / gitweb.css
1 body {
2 font-family: sans-serif;
3 font-size: small;
4 border: solid #d9d8d1;
5 border-width: 1px;
6 margin: 10px;
7 background-color: #ffffff;
8 color: #000000;
9 }
10
11 a {
12 color: #0000cc;
13 }
14
15 a:hover, a:visited, a:active {
16 color: #880000;
17 }
18
19 span.cntrl {
20 border: dashed #aaaaaa;
21 border-width: 1px;
22 padding: 0px 2px 0px 2px;
23 margin: 0px 2px 0px 2px;
24 }
25
26 img.logo {
27 float: right;
28 border-width: 0px;
29 }
30
31 img.avatar {
32 vertical-align: middle;
33 }
34
35 div.page_header {
36 height: 25px;
37 padding: 8px;
38 font-size: 150%;
39 font-weight: bold;
40 background-color: #d9d8d1;
41 }
42
43 div.page_header a:visited, a.header {
44 color: #0000cc;
45 }
46
47 div.page_header a:hover {
48 color: #880000;
49 }
50
51 div.page_nav {
52 padding: 8px;
53 }
54
55 div.page_nav a:visited {
56 color: #0000cc;
57 }
58
59 div.page_path {
60 padding: 8px;
61 font-weight: bold;
62 border: solid #d9d8d1;
63 border-width: 0px 0px 1px;
64 }
65
66 div.page_footer {
67 height: 17px;
68 padding: 4px 8px;
69 background-color: #d9d8d1;
70 }
71
72 div.page_footer_text {
73 float: left;
74 color: #555555;
75 font-style: italic;
76 }
77
78 div#generating_info {
79 margin: 4px;
80 font-size: smaller;
81 text-align: center;
82 color: #505050;
83 }
84
85 div.page_body {
86 padding: 8px;
87 font-family: monospace;
88 }
89
90 div.title, a.title {
91 display: block;
92 padding: 6px 8px;
93 font-weight: bold;
94 background-color: #edece6;
95 text-decoration: none;
96 color: #000000;
97 }
98
99 div.readme {
100 padding: 8px;
101 }
102
103 a.title:hover {
104 background-color: #d9d8d1;
105 }
106
107 div.title_text {
108 padding: 6px 0px;
109 border: solid #d9d8d1;
110 border-width: 0px 0px 1px;
111 font-family: monospace;
112 }
113
114 div.log_body {
115 padding: 8px 8px 8px 150px;
116 }
117
118 span.age {
119 position: relative;
120 float: left;
121 width: 142px;
122 font-style: italic;
123 }
124
125 span.signoff {
126 color: #888888;
127 }
128
129 div.log_link {
130 padding: 0px 8px;
131 font-size: 70%;
132 font-family: sans-serif;
133 font-style: normal;
134 position: relative;
135 float: left;
136 width: 136px;
137 }
138
139 div.list_head {
140 padding: 6px 8px 4px;
141 border: solid #d9d8d1;
142 border-width: 1px 0px 0px;
143 font-style: italic;
144 }
145
146 .author_date, .author {
147 font-style: italic;
148 }
149
150 div.author_date {
151 padding: 8px;
152 border: solid #d9d8d1;
153 border-width: 0px 0px 1px 0px;
154 }
155
156 a.list {
157 text-decoration: none;
158 color: #000000;
159 }
160
161 a.subject, a.name {
162 font-weight: bold;
163 }
164
165 table.tags a.subject {
166 font-weight: normal;
167 }
168
169 a.list:hover {
170 text-decoration: underline;
171 color: #880000;
172 }
173
174 a.text {
175 text-decoration: none;
176 color: #0000cc;
177 }
178
179 a.text:visited {
180 text-decoration: none;
181 color: #880000;
182 }
183
184 a.text:hover {
185 text-decoration: underline;
186 color: #880000;
187 }
188
189 table {
190 padding: 8px 4px;
191 border-spacing: 0;
192 }
193
194 table.diff_tree {
195 font-family: monospace;
196 }
197
198 table.combined.diff_tree th {
199 text-align: center;
200 }
201
202 table.combined.diff_tree td {
203 padding-right: 24px;
204 }
205
206 table.combined.diff_tree th.link,
207 table.combined.diff_tree td.link {
208 padding: 0px 2px;
209 }
210
211 table.combined.diff_tree td.nochange a {
212 color: #6666ff;
213 }
214
215 table.combined.diff_tree td.nochange a:hover,
216 table.combined.diff_tree td.nochange a:visited {
217 color: #d06666;
218 }
219
220 table.blame {
221 border-collapse: collapse;
222 }
223
224 table.blame td {
225 padding: 0px 5px;
226 font-size: 100%;
227 vertical-align: top;
228 }
229
230 th {
231 padding: 2px 5px;
232 font-size: 100%;
233 text-align: left;
234 }
235
236 /* do not change row style on hover for 'blame' view */
237 tr.light,
238 table.blame .light:hover {
239 background-color: #ffffff;
240 }
241
242 tr.dark,
243 table.blame .dark:hover {
244 background-color: #f6f6f0;
245 }
246
247 /* currently both use the same, but it can change */
248 tr.light:hover,
249 tr.dark:hover {
250 background-color: #edece6;
251 }
252
253 /* boundary commits in 'blame' view */
254 /* and commits without "previous" */
255 tr.boundary td.sha1,
256 tr.no-previous td.linenr {
257 font-weight: bold;
258 }
259
260 td {
261 padding: 2px 5px;
262 font-size: 100%;
263 vertical-align: top;
264 }
265
266 td.link, td.selflink {
267 padding: 2px 5px;
268 font-family: sans-serif;
269 font-size: 70%;
270 }
271
272 td.selflink {
273 padding-right: 0px;
274 }
275
276 td.sha1 {
277 font-family: monospace;
278 }
279
280 .error {
281 color: red;
282 background-color: yellow;
283 }
284
285 td.current_head {
286 text-decoration: underline;
287 }
288
289 table.diff_tree span.file_status.new {
290 color: #008000;
291 }
292
293 table.diff_tree span.file_status.deleted {
294 color: #c00000;
295 }
296
297 table.diff_tree span.file_status.moved,
298 table.diff_tree span.file_status.mode_chnge {
299 color: #777777;
300 }
301
302 table.diff_tree span.file_status.copied {
303 color: #70a070;
304 }
305
306 /* noage: "No commits" */
307 table.project_list td.noage {
308 color: #808080;
309 font-style: italic;
310 }
311
312 /* age2: 60*60*24*2 <= age */
313 table.project_list td.age2, table.blame td.age2 {
314 font-style: italic;
315 }
316
317 /* age1: 60*60*2 <= age < 60*60*24*2 */
318 table.project_list td.age1 {
319 color: #009900;
320 font-style: italic;
321 }
322
323 table.blame td.age1 {
324 color: #009900;
325 background: transparent;
326 }
327
328 /* age0: age < 60*60*2 */
329 table.project_list td.age0 {
330 color: #009900;
331 font-style: italic;
332 font-weight: bold;
333 }
334
335 table.blame td.age0 {
336 color: #009900;
337 background: transparent;
338 font-weight: bold;
339 }
340
341 td.pre, div.pre, div.diff {
342 font-family: monospace;
343 font-size: 12px;
344 white-space: pre;
345 }
346
347 td.mode {
348 font-family: monospace;
349 }
350
351 /* styling of diffs (patchsets): commitdiff and blobdiff views */
352 div.diff.header,
353 div.diff.extended_header {
354 white-space: normal;
355 }
356
357 div.diff.header {
358 font-weight: bold;
359
360 background-color: #edece6;
361
362 margin-top: 4px;
363 padding: 4px 0px 2px 0px;
364 border: solid #d9d8d1;
365 border-width: 1px 0px 1px 0px;
366 }
367
368 div.diff.header a.path {
369 text-decoration: underline;
370 }
371
372 div.diff.extended_header,
373 div.diff.extended_header a.path,
374 div.diff.extended_header a.hash {
375 color: #777777;
376 }
377
378 div.diff.extended_header .info {
379 color: #b0b0b0;
380 }
381
382 div.diff.extended_header {
383 background-color: #f6f5ee;
384 padding: 2px 0px 2px 0px;
385 }
386
387 div.diff a.list,
388 div.diff a.path,
389 div.diff a.hash {
390 text-decoration: none;
391 }
392
393 div.diff a.list:hover,
394 div.diff a.path:hover,
395 div.diff a.hash:hover {
396 text-decoration: underline;
397 }
398
399 div.diff.to_file a.path,
400 div.diff.to_file {
401 color: #007000;
402 }
403
404 div.diff.add {
405 color: #008800;
406 }
407
408 div.diff.from_file a.path,
409 div.diff.from_file {
410 color: #aa0000;
411 }
412
413 div.diff.rem {
414 color: #cc0000;
415 }
416
417 div.diff.chunk_header a,
418 div.diff.chunk_header {
419 color: #990099;
420 }
421
422 div.diff.chunk_header {
423 border: dotted #ffe0ff;
424 border-width: 1px 0px 0px 0px;
425 margin-top: 2px;
426 }
427
428 div.diff.chunk_header span.chunk_info {
429 background-color: #ffeeff;
430 }
431
432 div.diff.chunk_header span.section {
433 color: #aa22aa;
434 }
435
436 div.diff.incomplete {
437 color: #cccccc;
438 }
439
440 div.diff.nodifferences {
441 font-weight: bold;
442 color: #600000;
443 }
444
445 div.index_include {
446 border: solid #d9d8d1;
447 border-width: 0px 0px 1px;
448 padding: 12px 8px;
449 }
450
451 div.search {
452 font-size: 100%;
453 font-weight: normal;
454 margin: 4px 8px;
455 float: right;
456 top: 56px;
457 right: 12px
458 }
459
460 p.projsearch {
461 text-align: center;
462 }
463
464 td.linenr {
465 text-align: right;
466 }
467
468 a.linenr {
469 color: #999999;
470 text-decoration: none
471 }
472
473 a.rss_logo {
474 float: right;
475 padding: 3px 0px;
476 width: 35px;
477 line-height: 10px;
478 border: 1px solid;
479 border-color: #fcc7a5 #7d3302 #3e1a01 #ff954e;
480 color: #ffffff;
481 background-color: #ff6600;
482 font-weight: bold;
483 font-family: sans-serif;
484 font-size: 70%;
485 text-align: center;
486 text-decoration: none;
487 }
488
489 a.rss_logo:hover {
490 background-color: #ee5500;
491 }
492
493 a.rss_logo.generic {
494 background-color: #ff8800;
495 }
496
497 a.rss_logo.generic:hover {
498 background-color: #ee7700;
499 }
500
501 span.refs span {
502 padding: 0px 4px;
503 font-size: 70%;
504 font-weight: normal;
505 border: 1px solid;
506 background-color: #ffaaff;
507 border-color: #ffccff #ff00ee #ff00ee #ffccff;
508 }
509
510 span.refs span a {
511 text-decoration: none;
512 color: inherit;
513 }
514
515 span.refs span a:hover {
516 text-decoration: underline;
517 }
518
519 span.refs span.indirect {
520 font-style: italic;
521 }
522
523 span.refs span.ref {
524 background-color: #aaaaff;
525 border-color: #ccccff #0033cc #0033cc #ccccff;
526 }
527
528 span.refs span.tag {
529 background-color: #ffffaa;
530 border-color: #ffffcc #ffee00 #ffee00 #ffffcc;
531 }
532
533 span.refs span.head {
534 background-color: #aaffaa;
535 border-color: #ccffcc #00cc33 #00cc33 #ccffcc;
536 }
537
538 span.atnight {
539 color: #cc0000;
540 }
541
542 span.match {
543 color: #e00000;
544 }
545
546 div.binary {
547 font-style: italic;
548 }
This page took 0.660141 seconds and 5 git commands to generate.