[BACK]Return to cvsweb.css CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / cvsweb / css

Annotation of cvsweb/css/cvsweb.css, Revision 3.5

3.1       scop        1: /* CSS for FreeBSD-CVSweb */
                      2: /* $FreeBSD$ */
                      3:
                      4: body {
                      5:   color: #000;
                      6:   background-color: #fff;
                      7: }
                      8: th {
                      9:   text-align: left;
                     10: }
                     11: /* Source, diff and annotate views */
                     12: .src {
3.3       scop       13:   color: #000;
3.1       scop       14:   background-color: #eee;
3.3       scop       15:   font-style: normal;
3.4       scop       16:   font-weight: normal;
3.1       scop       17: }
                     18: /* Navigation header for diffs and annotations */
                     19: .navigate-header {
                     20:   background-color: #99e;
                     21: }
                     22: /* Directory table */
                     23: table.dir {
                     24:   border-width: 0;
                     25:   background-color: #ccc;
                     26: }
                     27: /* Directory column header */
                     28: .dir-header {
                     29:   background-color: #ffc;
                     30: }
                     31: /* Sorted directory column header */
                     32: .dir-header-sorted {
                     33:   background-color: #fc6;
                     34: }
                     35: /* Odd rows in directory table */
                     36: .dir-row-odd {
                     37:   background-color: #fff;
                     38: }
                     39: /* Even rows in directory table */
                     40: .dir-row-even {
                     41:   background-color: #fff;
                     42: }
                     43: /* Log entry in markup */
                     44: .log-markup {
                     45:   background-color: #fff;
                     46: }
                     47: /* Diff-selected revision in log */
                     48: .diff-selected {
                     49:   background-color: #eee;
                     50: }
                     51: /* 'Line'-header of each diffed file */
                     52: .diff-heading {
                     53:   background-color: #9cc;
                     54: }
                     55: /* Lines that are the same */
                     56: .diff-same {
                     57:   font-family: Helvetica, Arial, sans-serif;
                     58:   font-size: smaller;
                     59: }
                     60: /* Empty lines */
                     61: .diff-empty {
                     62:   background-color: #ccc;
3.2       scop       63:   font-size: smaller;
3.1       scop       64: }
                     65: /* Added lines */
                     66: .diff-added {
                     67:   background-color: #ccf;
                     68:   font-family: Helvetica, Arial, sans-serif;
                     69:   font-size: smaller;
                     70: }
                     71: /* Removed lines */
                     72: .diff-removed {
                     73:   background-color: #f99;
                     74:   font-family: Helvetica, Arial, sans-serif;
                     75:   font-size: smaller;
                     76: }
                     77: /* Changed lines */
                     78: .diff-changed {
                     79:   background-color: #9f9;
                     80:   font-family: Helvetica, Arial, sans-serif;
                     81:   font-size: smaller;
                     82: }
                     83: /* Empty changed lines */
                     84: .diff-changed-missing {
                     85:   background-color: #9c9;
3.2       scop       86:   font-size: smaller;
3.1       scop       87: }
3.5     ! scop       88: /* Download links */
        !            89: .download-link {
        !            90:   font-weight: bold;
        !            91: }

CVSweb