##// END OF EJS Templates
paper, coal: define the diffstat templates...
Steven Brown -
r14563:81fc9678 default
parent child Browse files
Show More
@@ -0,0 +1,8 b''
1 <tr class="parity{parity}">
2 <td class="diffstat-file"><a href="#l{fileno}.1">{file|escape}</a></td>
3 <td class="diffstat-total" align="right">{total}</td>
4 <td class="diffstat-graph">
5 <span class="diffstat-add" style="width:{addpct}%;">&nbsp;</span>
6 <span class="diffstat-remove" style="width:{removepct}%;">&nbsp;</span>
7 </td>
8 </tr>
@@ -23,6 +23,8 b' filedifflink = \'<a href="{url}diff/{node'
23 filenodelink = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> '
23 filenodelink = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> '
24 filenolink = '{file|escape} '
24 filenolink = '{file|escape} '
25 fileellipses = '...'
25 fileellipses = '...'
26 diffstatlink = ../paper/diffstat.tmpl
27 diffstatnolink = ../paper/diffstat.tmpl
26 changelogentry = ../paper/shortlogentry.tmpl
28 changelogentry = ../paper/shortlogentry.tmpl
27 searchentry = ../paper/shortlogentry.tmpl
29 searchentry = ../paper/shortlogentry.tmpl
28 changeset = ../paper/changeset.tmpl
30 changeset = ../paper/changeset.tmpl
@@ -22,6 +22,8 b' filedifflink = \'<a href="{url}diff/{node'
22 filenodelink = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> '
22 filenodelink = '<a href="{url}file/{node|short}/{file|urlescape}{sessionvars%urlparameter}">{file|escape}</a> '
23 filenolink = '{file|escape} '
23 filenolink = '{file|escape} '
24 fileellipses = '...'
24 fileellipses = '...'
25 diffstatlink = diffstat.tmpl
26 diffstatnolink = diffstat.tmpl
25 changelogentry = shortlogentry.tmpl
27 changelogentry = shortlogentry.tmpl
26 searchentry = shortlogentry.tmpl
28 searchentry = shortlogentry.tmpl
27 changeset = changeset.tmpl
29 changeset = changeset.tmpl
@@ -103,6 +103,26 b' a { text-decoration:none; }'
103 .minusline { color: #dc143c; } /* crimson */
103 .minusline { color: #dc143c; } /* crimson */
104 .atline { color: purple; }
104 .atline { color: purple; }
105
105
106 .diffstat-file {
107 white-space: nowrap;
108 font-size: 90%;
109 }
110 .diffstat-total {
111 white-space: nowrap;
112 font-size: 90%;
113 }
114 .diffstat-graph {
115 width: 100%;
116 }
117 .diffstat-add {
118 background-color: green;
119 float: left;
120 }
121 .diffstat-remove {
122 background-color: red;
123 float: left;
124 }
125
106 .navigate {
126 .navigate {
107 text-align: right;
127 text-align: right;
108 font-size: 60%;
128 font-size: 60%;
@@ -94,6 +94,26 b' a { text-decoration:none; }'
94 .minusline { color: #dc143c; } /* crimson */
94 .minusline { color: #dc143c; } /* crimson */
95 .atline { color: purple; }
95 .atline { color: purple; }
96
96
97 .diffstat-file {
98 white-space: nowrap;
99 font-size: 90%;
100 }
101 .diffstat-total {
102 white-space: nowrap;
103 font-size: 90%;
104 }
105 .diffstat-graph {
106 width: 100%;
107 }
108 .diffstat-add {
109 background-color: green;
110 float: left;
111 }
112 .diffstat-remove {
113 background-color: red;
114 float: left;
115 }
116
97 .navigate {
117 .navigate {
98 text-align: right;
118 text-align: right;
99 font-size: 60%;
119 font-size: 60%;
General Comments 0
You need to be logged in to leave comments. Login now