##// END OF EJS Templates
changelog: making less noisy
Aras Pranckevicius -
r1849:162300a9 beta
parent child Browse files
Show More
@@ -2141,7 +2141,7 b' h3.files_location {'
2141
2141
2142 #changeset_content .container .right {
2142 #changeset_content .container .right {
2143 float: right;
2143 float: right;
2144 width: 25%;
2144 width: 20%;
2145 text-align: right;
2145 text-align: right;
2146 }
2146 }
2147
2147
@@ -2222,7 +2222,7 b' h3.files_location {'
2222 }
2222 }
2223
2223
2224 #graph_content {
2224 #graph_content {
2225 width: 800px;
2225 width: 80%;
2226 float: left;
2226 float: left;
2227 }
2227 }
2228
2228
@@ -2244,21 +2244,32 b' h3.files_location {'
2244 border-bottom: 1px solid #CCC;
2244 border-bottom: 1px solid #CCC;
2245 border-left: 1px solid #CCC;
2245 border-left: 1px solid #CCC;
2246 border-right: 1px solid #CCC;
2246 border-right: 1px solid #CCC;
2247 min-height: 70px;
2247 height: 60px;
2248 overflow: hidden;
2248 overflow: hidden;
2249 font-size: 1.2em;
2250 }
2249 }
2251
2250
2252 #graph_content .container .right {
2251 #graph_content .container .right {
2253 float: right;
2252 float: right;
2254 width: 28%;
2253 width: 23%;
2255 text-align: right;
2254 text-align: right;
2256 padding-bottom: 5px;
2255 }
2257 }
2256
2257 #graph_content .container .left {
2258 float: left;
2259 width: 25%;
2260 padding-left: 5px;
2261 }
2262
2263 #graph_content .container .mid {
2264 float: left;
2265 width: 49%;
2266 }
2267
2258
2268
2259 #graph_content .container .left .date {
2269 #graph_content .container .left .date {
2260 font-weight: 700;
2270 color: #444444;
2261 padding-bottom: 5px;
2271 f_ont-weight: 700;
2272 p_adding-bottom: 5px;
2262 }
2273 }
2263
2274
2264 #graph_content .container .left .date span {
2275 #graph_content .container .left .date span {
@@ -2272,7 +2283,6 b' h3.files_location {'
2272 #graph_content .container .left .author .user {
2283 #graph_content .container .left .author .user {
2273 color: #444444;
2284 color: #444444;
2274 float: left;
2285 float: left;
2275 font-size: 12px;
2276 margin-left: -4px;
2286 margin-left: -4px;
2277 margin-top: 4px;
2287 margin-top: 4px;
2278 }
2288 }
@@ -2281,6 +2291,11 b' h3.files_location {'
2281 font-size: 100%;
2291 font-size: 100%;
2282 padding-top: 3px;
2292 padding-top: 3px;
2283 white-space: pre-wrap;
2293 white-space: pre-wrap;
2294 border: 1px solid red;
2295 position: relative;
2296 top: -30px;
2297 left: 40%;
2298 width: 30%;
2284 }
2299 }
2285
2300
2286 #graph_content .container .left .message a:hover{
2301 #graph_content .container .left .message a:hover{
@@ -3449,9 +3464,9 b' div.form div.fields div.field div.highli'
3449 width: 600px;
3464 width: 600px;
3450 }
3465 }
3451
3466
3452 #changeset_content .container .left,#graph_content .container .left {
3467 #changeset_content .container .left {
3453 float: left;
3468 float: left;
3454 width: 70%;
3469 width: 75%;
3455 padding-left: 5px;
3470 padding-left: 5px;
3456 }
3471 }
3457
3472
@@ -48,7 +48,7 b''
48 <div class="left">
48 <div class="left">
49 <div class="date">
49 <div class="date">
50 ${h.checkbox(cs.short_id,class_="changeset_range")}
50 ${h.checkbox(cs.short_id,class_="changeset_range")}
51 <span>${_('commit')} ${cs.revision}: ${h.short_id(cs.raw_id)}@${cs.date}</span>
51 <span>${cs.revision}: ${h.short_id(cs.raw_id)}<br/>${cs.date}</span>
52 </div>
52 </div>
53 <div class="author">
53 <div class="author">
54 <div class="gravatar">
54 <div class="gravatar">
@@ -56,6 +56,8 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>
60 <div class="mid">
59 <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>
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>
60 </div>
62 </div>
61 <div class="right">
63 <div class="right">
General Comments 0
You need to be logged in to leave comments. Login now