diff options
author | Lars Hjemli | 2009-01-27 20:16:37 +0100 |
---|---|---|
committer | Lars Hjemli | 2009-01-27 20:16:37 +0100 |
commit | 7710178e45dee61e85ea77c4221309ce8c086f95 (patch) | |
tree | 281c5251777308f18c05d323183b28470445f4bc /cgit.css | |
parent | e78186dcb63ec67a38dddfcd8f91d2108583320b (diff) | |
parent | b54ef9749c083afd86573112fad3b3ed8ee2d0e4 (diff) | |
download | cgit-7710178e45dee61e85ea77c4221309ce8c086f95.tar.gz cgit-7710178e45dee61e85ea77c4221309ce8c086f95.tar.bz2 cgit-7710178e45dee61e85ea77c4221309ce8c086f95.zip |
Merge branch 'lh/stats'
Conflicts:
cgit.c
cgit.css
cgit.h
ui-tree.c
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'cgit.css')
-rw-r--r-- | cgit.css | 76 |
1 files changed, 76 insertions, 0 deletions
@@ -495,3 +495,79 @@ a.deco { | |||
495 | background-color: #ff8888; | 495 | background-color: #ff8888; |
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 | } | ||