Unidiff1 files changed, 76 insertions, 0 deletions
|
diff --git a/cgit.css b/cgit.css index f19446d..e8214de 100644 --- a/ cgit.css+++ b/ cgit.css |
|
@@ -496,2 +496,78 @@ a.deco { |
496 | border: solid 1px #770000; |
496 | border: solid 1px #770000; |
497 | } |
497 | } |
| |
498 | table.stats { |
| |
499 | border: solid 1px black; |
| |
500 | border-collapse: collapse; |
| |
501 | } |
| |
502 | |
| |
503 | table.stats th { |
| |
504 | text-align: left; |
| |
505 | padding: 1px 0.5em; |
| |
506 | background-color: #eee; |
| |
507 | border: solid 1px black; |
| |
508 | } |
| |
509 | |
| |
510 | table.stats td { |
| |
511 | text-align: right; |
| |
512 | padding: 1px 0.5em; |
| |
513 | border: solid 1px black; |
| |
514 | } |
| |
515 | |
| |
516 | table.stats td.total { |
| |
517 | font-weight: bold; |
| |
518 | text-align: left; |
| |
519 | } |
| |
520 | |
| |
521 | table.stats td.sum { |
| |
522 | color: #c00; |
| |
523 | font-weight: bold; |
| |
524 | /*background-color: #eee; */ |
| |
525 | } |
| |
526 | |
| |
527 | table.stats td.left { |
| |
528 | text-align: left; |
| |
529 | } |
| |
530 | |
| |
531 | table.vgraph { |
| |
532 | border-collapse: separate; |
| |
533 | border: solid 1px black; |
| |
534 | height: 200px; |
| |
535 | } |
| |
536 | |
| |
537 | table.vgraph th { |
| |
538 | background-color: #eee; |
| |
539 | font-weight: bold; |
| |
540 | border: solid 1px white; |
| |
541 | padding: 1px 0.5em; |
| |
542 | } |
| |
543 | |
| |
544 | table.vgraph td { |
| |
545 | vertical-align: bottom; |
| |
546 | padding: 0px 10px; |
| |
547 | } |
| |
548 | |
| |
549 | table.vgraph div.bar { |
| |
550 | background-color: #eee; |
| |
551 | } |
| |
552 | |
| |
553 | table.hgraph { |
| |
554 | border: solid 1px black; |
| |
555 | width: 800px; |
| |
556 | } |
| |
557 | |
| |
558 | table.hgraph th { |
| |
559 | background-color: #eee; |
| |
560 | font-weight: bold; |
| |
561 | border: solid 1px black; |
| |
562 | padding: 1px 0.5em; |
| |
563 | } |
| |
564 | |
| |
565 | table.hgraph td { |
| |
566 | vertical-align: center; |
| |
567 | padding: 2px 2px; |
| |
568 | } |
| |
569 | |
| |
570 | table.hgraph div.bar { |
| |
571 | background-color: #eee; |
| |
572 | height: 1em; |
| |
573 | } |
|