]> git.mar77i.info Git - admin/blob - gitweb-theme.css
add rcfiles, bigintmandel
[admin] / gitweb-theme.css
1 body {
2 font-family: sans-serif;
3 font-size: small;
4 border: solid #43423c;
5 border-width: 1px;
6 margin: 10px;
7 background-color: #151515;
8 color: white;
9 }
10
11 a {
12 color: #8484ff;
13 }
14
15 a:hover, a:visited, a:active {
16 color: #ffadad;
17 }
18
19 span.cntrl {
20 border: dashed #6a6a6a;
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 img.blob {
36 max-height: 100%;
37 max-width: 100%;
38 }
39
40 a.list img.avatar {
41 border-style: none;
42 }
43
44 div.page_header {
45 height: 25px;
46 padding: 8px;
47 font-size: 150%;
48 font-weight: bold;
49 background-color: #43423c;
50 }
51
52 div.page_header a:visited, a.header {
53 color: #8484ff;
54 }
55
56 div.page_header a:hover {
57 color: #ffadad;
58 }
59
60 div.page_nav {
61 padding: 8px;
62 }
63
64 div.page_nav a:visited {
65 color: #8484ff;
66 }
67
68 div.page_path {
69 padding: 8px;
70 font-weight: bold;
71 border: solid #43423c;
72 border-width: 0px 0px 1px;
73 }
74
75 div.page_footer {
76 height: 22px;
77 padding: 4px 8px;
78 background-color: #43423c;
79 }
80
81 div.page_footer_text {
82 line-height: 22px;
83 float: left;
84 color: #bfbfbf;
85 font-style: italic;
86 }
87
88 div#generating_info {
89 margin: 4px;
90 font-size: smaller;
91 text-align: center;
92 color: #c4c4c4;
93 }
94
95 div.page_body {
96 padding: 8px;
97 font-family: monospace;
98 }
99
100 div.title, a.title {
101 display: block;
102 padding: 6px 8px;
103 font-weight: bold;
104 background-color: #2e2d26;
105 text-decoration: none;
106 color: white;
107 }
108
109 div.readme {
110 padding: 8px;
111 }
112
113 a.title:hover {
114 background-color: #43423c;
115 }
116
117 div.title_text {
118 padding: 6px 0px;
119 border: solid #43423c;
120 border-width: 0px 0px 1px;
121 font-family: monospace;
122 }
123
124 div.log_body {
125 padding: 8px 8px 8px 150px;
126 }
127
128 span.age {
129 position: relative;
130 float: left;
131 width: 142px;
132 font-style: italic;
133 }
134
135 span.signoff {
136 color: #8c8c8c;
137 }
138
139 div.log_link {
140 padding: 0px 8px;
141 font-size: 70%;
142 font-family: sans-serif;
143 font-style: normal;
144 position: relative;
145 float: left;
146 width: 136px;
147 }
148
149 div.list_head {
150 padding: 6px 8px 4px;
151 border: solid #43423c;
152 border-width: 1px 0px 0px;
153 font-style: italic;
154 }
155
156 .author_date, .author {
157 font-style: italic;
158 }
159
160 div.author_date {
161 padding: 8px;
162 border: solid #43423c;
163 border-width: 0px 0px 1px 0px;
164 }
165
166 a.list {
167 text-decoration: none;
168 color: white;
169 }
170
171 a.subject, a.name {
172 font-weight: bold;
173 }
174
175 table.tags a.subject {
176 font-weight: normal;
177 }
178
179 a.list:hover {
180 text-decoration: underline;
181 color: #ffadad;
182 }
183
184 a.text {
185 text-decoration: none;
186 color: #8484ff;
187 }
188
189 a.text:visited {
190 text-decoration: none;
191 color: #ffadad;
192 }
193
194 a.text:hover {
195 text-decoration: underline;
196 color: #ffadad;
197 }
198
199 table {
200 padding: 8px 4px;
201 border-spacing: 0;
202 }
203
204 table.diff_tree {
205 font-family: monospace;
206 }
207
208 table.combined.diff_tree th {
209 text-align: center;
210 }
211
212 table.combined.diff_tree td {
213 padding-right: 24px;
214 }
215
216 table.combined.diff_tree th.link,
217 table.combined.diff_tree td.link {
218 padding: 0px 2px;
219 }
220
221 table.combined.diff_tree td.nochange a {
222 color: #4545ae;
223 }
224
225 table.combined.diff_tree td.nochange a:hover,
226 table.combined.diff_tree td.nochange a:visited {
227 color: #ae6565;
228 }
229
230 table.blame {
231 border-collapse: collapse;
232 }
233
234 table.blame td {
235 padding: 0px 5px;
236 font-size: 100%;
237 vertical-align: top;
238 }
239
240 th {
241 padding: 2px 5px;
242 font-size: 100%;
243 text-align: left;
244 }
245
246 /* do not change row style on hover for 'blame' view */
247 tr.light,
248 table.blame .light:hover {
249 background-color: #151515;
250 }
251
252 tr.dark,
253 table.blame .dark:hover {
254 background-color: #24241b;
255 }
256
257 /* currently both use the same, but it can change */
258 tr.light:hover,
259 tr.dark:hover {
260 background-color: #2e2d26;
261 }
262
263 /* boundary commits in 'blame' view */
264 /* and commits without "previous" */
265 tr.boundary td.sha1,
266 tr.no-previous td.linenr {
267 font-weight: bold;
268 }
269
270 /* for 'blame_incremental', during processing */
271 tr.color1 { background-color: #0c1e0c; }
272 tr.color2 { background-color: #0c0c1e; }
273 tr.color3 { background-color: #1e0c0c; }
274
275 td {
276 padding: 2px 5px;
277 font-size: 100%;
278 vertical-align: top;
279 }
280
281 td.link, td.selflink {
282 padding: 2px 5px;
283 font-family: sans-serif;
284 font-size: 70%;
285 }
286
287 td.selflink {
288 padding-right: 0px;
289 }
290
291 td.sha1 {
292 font-family: monospace;
293 }
294
295 .error {
296 color: #ff6666;
297 background-color: #fffe66;
298 }
299
300 td.current_head {
301 text-decoration: underline;
302 }
303
304 td.category {
305 background-color: #43423c;
306 border-top: 1px solid white;
307 border-left: 1px solid white;
308 font-weight: bold;
309 }
310
311 table.diff_tree span.file_status.new {
312 color: #b2ffb2;
313 }
314
315 table.diff_tree span.file_status.deleted {
316 color: #ff8b8b;
317 }
318
319 table.diff_tree span.file_status.moved,
320 table.diff_tree span.file_status.mode_chnge {
321 color: #9d9d9d;
322 }
323
324 table.diff_tree span.file_status.copied {
325 color: #83a483;
326 }
327
328 /* noage: "No commits" */
329 table.project_list td.noage {
330 color: #949494;
331 font-style: italic;
332 }
333
334 /* age2: 60*60*24*2 <= age */
335 table.project_list td.age2, table.blame td.age2 {
336 font-style: italic;
337 }
338
339 /* age1: 60*60*2 <= age < 60*60*24*2 */
340 table.project_list td.age1 {
341 color: #a3ffa3;
342 font-style: italic;
343 }
344
345 table.blame td.age1 {
346 color: #a3ffa3;
347 background: transparent;
348 }
349
350 /* age0: age < 60*60*2 */
351 table.project_list td.age0 {
352 color: #a3ffa3;
353 font-style: italic;
354 font-weight: bold;
355 }
356
357 table.blame td.age0 {
358 color: #a3ffa3;
359 background: transparent;
360 font-weight: bold;
361 }
362
363 td.pre, div.pre, div.diff {
364 font-family: monospace;
365 font-size: 12px;
366 white-space: pre;
367 }
368
369 td.mode {
370 font-family: monospace;
371 }
372
373 /* progress of blame_interactive */
374 div#progress_bar {
375 height: 2px;
376 margin-bottom: -2px;
377 background-color: #43443c;
378 }
379 div#progress_info {
380 float: right;
381 text-align: right;
382 }
383
384 /* format of (optional) objects size in 'tree' view */
385 td.size {
386 font-family: monospace;
387 text-align: right;
388 }
389
390 /* styling of diffs (patchsets): commitdiff and blobdiff views */
391 div.diff.header,
392 div.diff.extended_header {
393 white-space: normal;
394 }
395
396 div.diff.header {
397 font-weight: bold;
398
399 background-color: #2e2d26;
400
401 margin-top: 4px;
402 padding: 4px 0px 2px 0px;
403 border: solid #43423c;
404 border-width: 1px 0px 1px 0px;
405 }
406
407 div.diff.header a.path {
408 text-decoration: underline;
409 }
410
411 div.diff.extended_header,
412 div.diff.extended_header a.path,
413 div.diff.extended_header a.hash {
414 color: #9d9d9d;
415 }
416
417 div.diff.extended_header .info {
418 color: #646464;
419 }
420
421 div.diff.extended_header {
422 background-color: #26241b;
423 padding: 2px 0px 2px 0px;
424 }
425
426 div.diff a.list,
427 div.diff a.path,
428 div.diff a.hash {
429 text-decoration: none;
430 }
431
432 div.diff a.list:hover,
433 div.diff a.path:hover,
434 div.diff a.hash:hover {
435 text-decoration: underline;
436 }
437
438 div.diff.to_file a.path,
439 div.diff.to_file {
440 color: #bbffbb;
441 }
442
443 div.diff.add {
444 color: #adffad;
445 }
446
447 div.diff.add span.marked {
448 background-color: #2a6a2a;
449 }
450
451 div.diff.from_file a.path,
452 div.diff.from_file {
453 color: #ff9999;
454 }
455
456 div.diff.rem {
457 color: #ff8484;
458 }
459
460 div.diff.rem span.marked {
461 background-color: #6a2a2a;
462 }
463
464 div.diff.chunk_header a,
465 div.diff.chunk_header {
466 color: #ffa3ff;
467 }
468
469 div.diff.chunk_header {
470 border: dotted #341434;
471 border-width: 1px 0px 0px 0px;
472 margin-top: 2px;
473 }
474
475 div.diff.chunk_header span.chunk_info {
476 background-color: #260f26;
477 }
478
479 div.diff.chunk_header span.section {
480 color: #f298f2;
481 }
482
483 div.diff.incomplete {
484 color: #484848;
485 }
486
487 div.diff.nodifferences {
488 font-weight: bold;
489 color: #ffc5c5;
490 }
491
492 /* side-by-side diff */
493 div.chunk_block {
494 overflow: hidden;
495 }
496
497 div.chunk_block div.old {
498 float: left;
499 width: 50%;
500 overflow: hidden;
501 }
502
503 div.chunk_block div.new {
504 margin-left: 50%;
505 width: 50%;
506 }
507
508 div.chunk_block.rem div.old div.diff.rem {
509 background-color: #1f0c0c;
510 }
511 div.chunk_block.add div.new div.diff.add {
512 background-color: #0b1c0b;
513 }
514 div.chunk_block.chg div div.diff {
515 background-color: #24240e;
516 }
517 div.chunk_block.ctx div div.diff.ctx {
518 color: #d4d4d4;
519 }
520
521
522 div.index_include {
523 border: solid #43423c;
524 border-width: 0px 0px 1px;
525 padding: 12px 8px;
526 }
527
528 div.search {
529 font-size: 100%;
530 font-weight: normal;
531 margin: 4px 8px;
532 float: right;
533 top: 56px;
534 right: 12px
535 }
536
537 div.projsearch {
538 text-align: center;
539 margin: 20px 0px;
540 }
541
542 div.projsearch form {
543 margin-bottom: 2px;
544 }
545
546 td.linenr {
547 text-align: right;
548 }
549
550 a.linenr {
551 color: #7b7b7b;
552 text-decoration: none
553 }
554
555 a.rss_logo {
556 float: right;
557 padding: 3px 5px;
558 line-height: 10px;
559 border: 1px solid;
560 border-color: #6f472e #ffd2b4 #ffe9da #c67f4f;
561 color: #151515;
562 background-color: #ffa366;
563 font-weight: bold;
564 font-family: sans-serif;
565 font-size: 70%;
566 text-align: center;
567 text-decoration: none;
568 }
569
570 a.rss_logo:hover {
571 background-color: #ffa370;
572 }
573
574 a.rss_logo.generic {
575 background-color: #ffb766;
576 }
577
578 a.rss_logo.generic:hover {
579 background-color: #ffb770;
580 }
581
582 span.refs span {
583 padding: 0px 4px;
584 font-size: 70%;
585 font-weight: normal;
586 border: 1px solid;
587 background-color: #6a2a6a;
588 border-color: #481c48 #ff66f4 #ff66f4 #481c48;
589 }
590
591 span.refs span a {
592 text-decoration: none;
593 color: inherit;
594 }
595
596 span.refs span a:hover {
597 text-decoration: underline;
598 }
599
600 span.refs span.indirect {
601 font-style: italic;
602 }
603
604 span.refs span.ref {
605 background-color: #2a2a6a;
606 border-color: #1c1c48 #84a3ff #84a3ff #1c1c48;
607 }
608
609 span.refs span.tag {
610 background-color: #6a6a2a;
611 border-color: #48481c #fff466 #fff466 #48481c;
612 }
613
614 span.refs span.head {
615 background-color: #2a6a2a;
616 border-color: #1c481c #84ffa3 #84ffa3 #1c481c;
617 }
618
619 span.atnight {
620 color: #ff8484;
621 }
622
623 span.match {
624 color: #ff7878;
625 }
626
627 div.binary {
628 font-style: italic;
629 }
630
631 div.remote {
632 margin: .5em;
633 border: 1px solid #43423c;
634 display: inline-block;
635 }
636
637 /* JavaScript-based timezone manipulation */
638
639 .popup { /* timezone selection UI */
640 position: absolute;
641 /* "top: 0; right: 0;" would be better, if not for bugs in browsers */
642 top: 0; left: 0;
643 border: 1px solid;
644 padding: 2px;
645 background-color: #242424;
646 font-style: normal;
647 color: white;
648 cursor: auto;
649 }
650
651 .close-button { /* close timezone selection UI without selecting */
652 /* float doesn't work within absolutely positioned container,
653 * if width of container is not set explicitly */
654 /* float: right; */
655 position: absolute;
656 top: 0px; right: 0px;
657 border: 1px solid #b2ffb2;
658 margin: 1px 1px 1px 1px;
659 padding-bottom: 2px;
660 width: 12px;
661 height: 10px;
662 font-size: 9px;
663 font-weight: bold;
664 text-align: center;
665 background-color: #240e0e;
666 cursor: pointer;
667 }
668
669
670 /* Style definition generated by highlight 2.4.5, http://www.andre-simon.de/ */
671
672 /* Highlighting theme definition: */
673
674 .num { color: #5f5eec; }
675 .esc { color: #ff66ff; }
676 .str { color: #ff6666; }
677 .dstr { color: #fffeb1; }
678 .slc { color: #939193;
679 ; font-style:italic; }
680 .com { color: #939193;
681 ; font-style:italic; }
682 .dir { color: #b1ffb1; }
683 .sym { color: white; }
684 .line { color: #bfbfbf; }
685 .kwa { color: white;
686 ; font-weight:bold; }
687 .kwb { color: #ffb0b0; }
688 .kwc { color: white;
689 ; font-weight:bold; }
690 .kwd { color: #b1b1ff; }