]> gitweb.ps.run Git - ps-cgit/blob - cgit.css
Teach log search about --grep, --author and --committer
[ps-cgit] / cgit.css
1 body {
2         font-family: arial, sans-serif;
3         font-size: 11pt;
4         color: black;
5         background: white;
6 }
7
8 body, table {
9         padding: 0em;
10         margin: 0em;
11 }
12
13 table {
14       border-collapse: collapse;
15 }
16
17 h2 {
18         font-size: 120%;
19         font-weight: bold;
20         margin-top: 0em;
21         margin-bottom: 0.25em;
22 }
23
24 h3 {
25         margin-top: 0em;
26         font-size: 100%;
27         font-weight: normal;
28 }
29
30 h4 {
31         margin-top: 1.5em;
32         margin-bottom: 0.1em;
33         font-size: 100%;
34         font-weight: bold;
35 }
36
37 a {
38         color: blue;
39         text-decoration: none;
40 }
41
42 a:hover {
43         text-decoration: underline;
44 }
45
46 table.list {
47         border: none;
48         border-collapse: collapse;
49 }
50
51 table.list tr {
52         background: white;
53 }
54
55 table.list tr:hover {
56         background: #eee;
57 }
58
59 table.list tr.nohover:hover {
60         background: white;
61 }
62
63 table.list th {
64         font-weight: bold;
65         border-bottom: solid 1px #777;
66         padding: 0.1em 0.5em 0.1em 0.5em;
67         vertical-align: baseline;
68 }
69
70 table.list td {
71         border: none;
72         padding: 0.1em 0.5em 0.1em 0.5em;
73 }
74
75 img {
76         border: none;
77 }
78
79 table#layout {
80         width: 100%;
81         border-collapse: collapse;
82         margin: 0px;
83 }
84
85 td#header, td#logo {
86         color: #666;
87         background-color: #ddd;
88         border-bottom: solid 1px #000;
89 }
90
91 td#header {
92         font-size: 150%;
93         font-weight: bold;
94         padding: 0.2em 0.5em;
95         vertical-align: text-bottom;
96 }
97
98 td#header a {
99         color: #666;
100 }
101
102 td#header a:hover {
103         text-decoration: underline;
104 }
105
106 td#logo {
107         text-align: right;
108         vertical-align: middle;
109         padding-right: 0.5em;
110 }
111
112 td#crumb, td#search {
113         color: #ccc;
114         border-top: solid 3px #555;
115         background-color: #666;
116         border-bottom: solid 1px #333;
117         padding: 2px 1em;
118 }
119
120 td#crumb {
121         font-weight: bold;
122 }
123
124 td#crumb a {
125         color: #ccc;
126         background-color: #666;
127         padding: 0em 0.5em 0em 0.5em;
128 }
129
130 td#crumb a:hover {
131         color: #666;
132         background-color: #ccc;
133         text-decoration: none;
134 }
135
136 td#search {
137         text-align: right;
138         vertical-align: middle;
139         padding-right: 0.5em;
140 }
141
142 td#search form {
143         margin: 0px;
144         padding: 0px;
145 }
146
147 td#search select {
148         font-size: 9pt;
149         padding: 0px;
150         border: solid 1px #333;
151         color: #333;
152         background-color: #fff;
153 }
154
155 td#search input {
156         font-size: 9pt;
157         padding: 0px;
158 }
159
160 td#search input.txt {
161         width: 8em;
162         border: solid 1px #333;
163         color: #333;
164         background-color: #fff;
165 }
166
167 td#search input.btn {
168         border: solid 1px #333;
169         color: #333;
170         background-color: #ccc;
171 }
172
173 div#summary {
174         vertical-align: top;
175         margin-bottom: 1em;
176 }
177
178 table#downloads {
179         float: right;
180         border-collapse: collapse;
181         border: solid 1px #777;
182         margin-left: 0.5em;
183         margin-bottom: 0.5em;
184 }
185
186 table#downloads th {
187         background-color: #ccc;
188 }
189
190 td#content {
191         padding: 1em 0.5em;
192 }
193
194 div#blob {
195         border: solid 1px black;
196 }
197
198 div.error {
199         color: red;
200         font-weight: bold;
201         margin: 1em 2em;
202 }
203
204 a.ls-blob, a.ls-dir, a.ls-mod {
205         font-family: monospace;
206 }
207
208 td.ls-size {
209         text-align: right;
210 }
211
212 td.ls-size {
213         font-family: monospace;
214 }
215
216 td.ls-mode {
217         font-family: monospace;
218 }
219
220 table.blob {
221         margin-top: 0.5em;
222         border-top: solid 1px black;
223 }
224
225 table.blob td.no {
226         border-right: solid 1px black;
227         color: black;
228         background-color: #eee;
229         text-align: right;
230 }
231
232 table.blob td.no a {
233         color: black;
234 }
235
236 table.blob td.no a:hover {
237         color: black;
238         text-decoration: none;
239 }
240
241 table.blob td.txt {
242         white-space: pre;
243         font-family: monospace;
244         padding-left: 0.5em;
245 }
246
247 table.nowrap td {
248         white-space: nowrap;
249 }
250
251 table.commit-info {
252         border-collapse: collapse;
253         margin-top: 1.5em;
254 }
255
256 table.commit-info th {
257         text-align: left;
258         font-weight: normal;
259         padding: 0.1em 1em 0.1em 0.1em;
260         vertical-align: top;
261 }
262
263 table.commit-info td {
264         font-weight: normal;
265         padding: 0.1em 1em 0.1em 0.1em;
266 }
267
268 div.commit-subject {
269         font-weight: bold;
270         font-size: 125%;
271         margin: 1.5em 0em 0.5em 0em;
272         padding: 0em;
273 }
274
275 div.commit-msg {
276         white-space: pre;
277         font-family: monospace;
278 }
279
280 div.diffstat-header {
281         font-weight: bold;
282         padding-top: 1.5em;
283 }
284
285 table.diffstat {
286         border-collapse: collapse;
287         width: 100%;
288         border: solid 1px #aaa;
289         background-color: #eee;
290 }
291
292 table.diffstat th {
293         font-weight: normal;
294         text-align: left;
295         text-decoration: underline;
296         padding: 0.1em 1em 0.1em 0.1em;
297         font-size: 100%;
298 }
299
300 table.diffstat td {
301         padding: 0.2em 0.2em 0.1em 0.1em;
302         font-size: 100%;
303         border: none;
304 }
305
306 table.diffstat td.mode {
307         white-space: nowrap;
308 }
309
310 table.diffstat td span.modechange {
311         padding-left: 1em;
312         color: red;
313 }
314
315 table.diffstat td.add a {
316         color: green;
317 }
318
319 table.diffstat td.del a {
320         color: red;
321 }
322
323 table.diffstat td.upd a {
324         color: blue;
325 }
326
327 table.diffstat td.graph {
328         width: 75%;
329         vertical-align: middle;
330 }
331
332 table.diffstat td.graph table {
333         border: none;
334 }
335
336 table.diffstat td.graph td {
337         padding: 0px;
338         border: 0px;
339         height: 7pt;
340 }
341
342 table.diffstat td.graph td.add {
343         background-color: #5c5;
344 }
345
346 table.diffstat td.graph td.rem {
347         background-color: #c55;
348 }
349
350 div.diffstat-summary {
351         color: #888;
352         padding-top: 0.5em;
353 }
354
355 table.diff {
356         width: 100%;
357 }
358
359 table.diff td {
360         font-family: monospace;
361         white-space: pre;
362 }
363
364 table.diff td div.head {
365         font-weight: bold;
366         margin-top: 1em;
367         background-color: #eee;
368 }
369
370 table.diff td div.hunk {
371         color: #009;
372 }
373
374 table.diff td div.add {
375         color: green;
376 }
377
378 table.diff td div.del {
379         color: red;
380 }
381
382 .sha1 {
383         font-family: monospace;
384         font-size: 90%;
385 }
386
387 .left {
388         text-align: left;
389 }
390
391 .right {
392         text-align: right;
393 }
394
395 table.list td.repogroup {
396         font-style: italic;
397         color: #888;
398 }
399
400 a.button {
401         font-size: 80%;
402         color: #aaa;
403         background-color: #eee;
404         border: solid 1px #aaa;
405         padding: 0em 0.5em;
406         margin: 0.1em 0.25em;
407 }
408
409 a.button:hover {
410         text-decoration: none;
411         color: #333;
412         background-color: #ccc;
413 }
414
415 a.primary {
416         font-size: 100%;
417 }
418
419 a.secondary {
420         font-size: 90%;
421 }
422
423 td.toplevel-repo {
424
425 }
426
427 table.list td.sublevel-repo {
428         padding-left: 1.5em;
429 }
430
431 span.age-mins {
432         font-weight: bold;
433         color: #080;
434 }
435
436 span.age-hours {
437         color: #080;
438 }
439
440 span.age-days {
441         color: #040;
442 }
443
444 span.age-weeks {
445         color: #444;
446 }
447
448 span.age-months {
449         color: #888;
450 }
451
452 span.age-years {
453         color: #bbb;
454 }