##// END OF EJS Templates
hgweb: improve shortlog formatting...
Matt Mackall -
r4703:bc63247c default
parent child Browse files
Show More
@@ -1,7 +1,7 b''
1 1 <table class="slogEntry parity#parity#">
2 2 <tr>
3 3 <td class="age">#date|age#</td>
4 <td class="author">#author|obfuscate#</td>
4 <td class="author">#author|person#</td>
5 5 <td class="node"><a href="#url#rev/#node|short#{sessionvars%urlparameter}">#desc|strip|firstline|escape#</a></td>
6 6 </tr>
7 7 </table>
@@ -1,78 +1,78 b''
1 1 a { text-decoration:none; }
2 2 .age { white-space:nowrap; }
3 3 .indexlinks { white-space:nowrap; }
4 4 .parity0 { background-color: #dddddd; }
5 5 .parity1 { background-color: #eeeeee; }
6 6 .lineno { width: 60px; color: #aaaaaa; font-size: smaller;
7 7 text-align: right; padding-right:1em; }
8 8 .plusline { color: green; }
9 9 .minusline { color: red; }
10 10 .atline { color: purple; }
11 11 .annotate { font-size: smaller; text-align: right; padding-right: 1em; }
12 12 .buttons a {
13 13 background-color: #666666;
14 14 padding: 2pt;
15 15 color: white;
16 16 font-family: sans;
17 17 font-weight: bold;
18 18 }
19 19 .navigate a {
20 20 background-color: #ccc;
21 21 padding: 2pt;
22 22 font-family: sans;
23 23 color: black;
24 24 }
25 25
26 26 .metatag {
27 27 background-color: #888888;
28 28 color: white;
29 29 text-align: right;
30 30 }
31 31
32 32 /* Common */
33 33 pre { margin: 0; }
34 34
35 35 .logo {
36 36 background-color: #333;
37 37 padding: 4pt;
38 38 margin: 8pt 0 8pt 8pt;
39 39 font-family: sans;
40 40 font-size: 60%;
41 41 color: white;
42 42 float: right;
43 43 clear: right;
44 44 text-align: left;
45 45 }
46 46
47 47 .logo a {
48 48 font-weight: bold;
49 49 font-size: 150%;
50 50 color: #999;
51 51 }
52 52
53 53 /* Changelog/Filelog entries */
54 54 .logEntry { width: 100%; }
55 55 .logEntry .age { width: 15%; }
56 56 .logEntry th { font-weight: normal; text-align: right; vertical-align: top; }
57 57 .logEntry th.age, .logEntry th.firstline { font-weight: bold; }
58 58 .logEntry th.firstline { text-align: left; width: inherit; }
59 59
60 60 /* Shortlog entries */
61 .slogEntry { width: 100%; font-size: smaller; }
62 .slogEntry .age { width: 7%; }
61 .slogEntry { width: 100%; }
62 .slogEntry .age { width: 8em; }
63 63 .slogEntry td { font-weight: normal; text-align: left; vertical-align: top; }
64 .slogEntry td.author { width: 35%; }
64 .slogEntry td.author { width: 15em; }
65 65
66 66 /* Tag entries */
67 67 #tagEntries { list-style: none; margin: 0; padding: 0; }
68 68 #tagEntries .tagEntry { list-style: none; margin: 0; padding: 0; }
69 69
70 70 /* Changeset entry */
71 71 #changesetEntry { }
72 72 #changesetEntry th { font-weight: normal; background-color: #888; color: #fff; text-align: right; }
73 73 #changesetEntry th.files, #changesetEntry th.description { vertical-align: top; }
74 74
75 75 /* File diff view */
76 76 #filediffEntry { }
77 77 #filediffEntry th { font-weight: normal; background-color: #888; color: #fff; text-align: right; }
78 78
General Comments 0
You need to be logged in to leave comments. Login now