/etc/cvsweb/cvsweb.css is in cvsweb 3:3.0.6-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | /* CSS for FreeBSD-CVSweb */
/* $FreeBSD: projects/cvsweb/css/cvsweb.css,v 1.15 2004/07/20 20:04:00 scop Exp $ */
body {
color: #000;
background-color: #fff;
}
th {
text-align: left;
}
hr {
height: 1px;
border: none;
background-color: #000;
}
h1 {
text-align: center;
}
fieldset {
background-color: #eee;
padding: 0.8em;
}
input[type="submit"] {
padding-left: 0.5em;
padding-right: 0.5em;
}
/* Generic nowrap class */
.nowrap {
white-space: nowrap;
}
/* Source, diff and annotate views */
.src {
color: #000;
background-color: #eee;
font-style: normal;
font-weight: normal;
}
/* Navigation header for source views, diffs and annotations */
.navigate-header {
background-color: #99e;
padding: 2px;
border: 2px outset;
}
.navigate-header img {
vertical-align: bottom;
}
/* Directory table */
table.dir {
border-right: 1px solid #ccc;
}
/* Cells */
table.dir * td {
border-left: 1px solid #ccc;
border-bottom: 1px solid #ccc;
padding-left: 5px;
padding-right: 5px;
}
/* Column headers */
table.dir * th {
background-color: #ffc;
border: thin outset;
padding-left: 5px;
padding-right: 5px;
}
/* Sorted column header */
table.dir * th.sorted {
background-color: #fc6;
border: thin inset;
}
/* Even rows */
table.dir * tr.even {
background-color: #fff;
}
/* Odd rows */
table.dir * tr.odd {
background-color: #fff;
}
/* File and dir name columns */
table.dir * td.file, table.dir * td.dir {
white-space: nowrap;
}
table.dir * td.dir img, table.dir * td.file img {
vertical-align: bottom;
}
/* Graph link column */
table.dir * td.graph {
padding-left: 3px;
padding-right: 3px;
text-align: center;
width: 1%;
}
/* Age column */
table.dir * td.age {
font-style: italic;
white-space: nowrap;
}
table.dir * td.author {
white-space: nowrap;
}
/* Log entry column */
table.dir * td.log {
font-size: smaller;
}
/* Attic toggles in directory view */
.attic {
font-size: smaller;
}
/* Option table labels and values */
.opt-label {
text-align: right;
padding-left: 0.5em;
}
.opt-value {
padding-right: 0.5em;
}
/* Log entry in markup */
.log-markup {
background-color: #fff;
width: 100%;
}
/* Diff-selected revision in log */
.diff-selected {
padding-right: 0.5em;
border-right: 10px solid #fc6;
}
/* 'Line'-header of each diffed file */
.diff-heading {
background-color: #9cc;
border: 2px solid #aaa;
padding: 5px;
}
/* Common properties for diff "contents" */
.diff {
font-family: sans-serif;
font-size: smaller;
}
/* Lines that are the same */
.diff-same {
background-color: inherit;
}
/* Empty lines */
.diff-empty {
background-color: #ccc;
}
/* Added lines */
.diff-added {
background-color: #9f9;
}
/* Removed lines */
.diff-removed {
background-color: #f99;
}
/* Changed lines */
.diff-changed {
background-color: #ff6;
}
/* Empty changed lines */
.diff-changed-missing {
background-color: #ee6;
}
/* Unchanged text in ediffs */
.diff-unchanged {
background-color: #ccc;
}
/* Current revision lines in annotate view */
.current-rev {
font-weight: bold;
}
/* Download links */
.download-link {
font-weight: bold;
}
/* Display links */
.display-link {
font-weight: bold;
}
|