##// END OF EJS Templates
changelog: more polish
Aras Pranckevicius -
r1853:8fe1a141 beta
parent child Browse files
Show More
@@ -2115,6 +2115,19 b' h3.files_location {'
2115 padding: 5px !important;
2115 padding: 5px !important;
2116 }
2116 }
2117
2117
2118 .tablerow1 {
2119 background-color: #F8F8F8;
2120 }
2121
2122 .changeset_id {
2123 font-family: monospace;
2124 color: #666666;
2125 }
2126
2127 .changeset_hash {
2128 color: #000000;
2129 }
2130
2118 #changeset_content {
2131 #changeset_content {
2119 border: 1px solid #CCC;
2132 border: 1px solid #CCC;
2120 padding: 5px;
2133 padding: 5px;
@@ -2225,12 +2238,9 b' h3.files_location {'
2225 }
2238 }
2226
2239
2227 #graph_content .container_header {
2240 #graph_content .container_header {
2228 border: 1px solid #CCC;
2241 border-bottom: 1px solid #DDD;
2229 padding: 10px;
2242 padding: 10px;
2230 height: 25px;
2243 height: 25px;
2231 -webkit-border-radius: 6px 6px 0px 0px;
2232 -moz-border-radius: 6px 6px 0px 0px;
2233 border-radius: 6px 6px 0px 0px;
2234 }
2244 }
2235
2245
2236 #graph_content #rev_range_container {
2246 #graph_content #rev_range_container {
@@ -2239,10 +2249,8 b' h3.files_location {'
2239 }
2249 }
2240
2250
2241 #graph_content .container {
2251 #graph_content .container {
2242 border-bottom: 1px solid #CCC;
2252 border-bottom: 1px solid #DDD;
2243 border-left: 1px solid #CCC;
2253 height: 55px;
2244 border-right: 1px solid #CCC;
2245 height: 60px;
2246 overflow: hidden;
2254 overflow: hidden;
2247 }
2255 }
2248
2256
@@ -2266,12 +2274,6 b' h3.files_location {'
2266
2274
2267 #graph_content .container .left .date {
2275 #graph_content .container .left .date {
2268 color: #444444;
2276 color: #444444;
2269 f_ont-weight: 700;
2270 p_adding-bottom: 5px;
2271 }
2272
2273 #graph_content .container .left .date span {
2274 vertical-align: text-top;
2275 }
2277 }
2276
2278
2277 #graph_content .container .left .author {
2279 #graph_content .container .left .author {
@@ -2357,9 +2359,7 b' h3.files_location {'
2357 }
2359 }
2358
2360
2359 .right .parent {
2361 .right .parent {
2360 font-size: 90%;
2362 color: #666666;
2361 font-family: monospace;
2362 padding: 2px 2px 2px 2px;
2363 }
2363 }
2364 .right .logtags{
2364 .right .logtags{
2365 padding: 2px 2px 2px 2px;
2365 padding: 2px 2px 2px 2px;
@@ -44,11 +44,11 b''
44 </div>
44 </div>
45
45
46 %for cnt,cs in enumerate(c.pagination):
46 %for cnt,cs in enumerate(c.pagination):
47 <div id="chg_${cnt+1}" class="container">
47 <div id="chg_${cnt+1}" class="container ${'tablerow1' if cnt%2==0 else 'tablerow2'}">
48 <div class="left">
48 <div class="left">
49 <div class="date">
49 <div>
50 ${h.checkbox(cs.short_id,class_="changeset_range")}
50 ${h.checkbox(cs.short_id,class_="changeset_range")}
51 <span>${cs.revision}: ${h.short_id(cs.raw_id)}<br/>${cs.date}</span>
51 <span class="changeset_id">${cs.revision}:<span class="changeset_hash">${h.short_id(cs.raw_id)}</span></span>
52 </div>
52 </div>
53 <div class="author">
53 <div class="author">
54 <div class="gravatar">
54 <div class="gravatar">
@@ -56,6 +56,7 b''
56 </div>
56 </div>
57 <div title="${cs.author}" class="user">${h.person(cs.author)}</div>
57 <div title="${cs.author}" class="user">${h.person(cs.author)}</div>
58 </div>
58 </div>
59 <div class="date">${cs.date}</div>
59 </div>
60 </div>
60 <div class="mid">
61 <div class="mid">
61 <div class="message">${h.link_to(h.wrap_paragraphs(cs.message),h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}</div>
62 <div class="message">${h.link_to(h.wrap_paragraphs(cs.message),h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id))}</div>
@@ -69,8 +70,9 b''
69 %endif
70 %endif
70 %if cs.parents:
71 %if cs.parents:
71 %for p_cs in reversed(cs.parents):
72 %for p_cs in reversed(cs.parents):
72 <div class="parent">${_('Parent')} ${p_cs.revision}: ${h.link_to(h.short_id(p_cs.raw_id),
73 <div class="parent">${_('Parent')}
73 h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
74 <span class="changeset_id">${p_cs.revision}:<span class="changeset_hash">${h.link_to(h.short_id(p_cs.raw_id),
75 h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}</span></span>
74 </div>
76 </div>
75 %endfor
77 %endfor
76 %else:
78 %else:
General Comments 0
You need to be logged in to leave comments. Login now