Changeset - c8798599cf8d
[Not reviewed]
default
0 3 0
Marcin Kuzminski - 15 years ago 2010-10-05 01:58:53
marcin@python-works.com
fixed displaying multi line commit messages,
some templating updates
3 files changed with 7 insertions and 10 deletions:
0 comments (0 inline, 0 general)
pylons_app/public/css/style.css
Show inline comments
 
@@ -3060,7 +3060,7 @@ h3.files_location{
 
#changeset_content .container {
 
	min-height: 120px;
 
	font-size: 1.2em;
 
	
 
	overflow: hidden;
 
}
 
 
#changeset_content .container .left {
 
@@ -3086,6 +3086,7 @@ h3.files_location{
 
#changeset_content .container .left .message {
 
	font-style: italic;
 
	color: #556CB5;
 
	white-space: pre-wrap;
 
}
 
 
.cs_files {
 
@@ -3167,8 +3168,9 @@ h3.files_location{
 
 
#graph_content .container .right {
 
	float: right;
 
	width: 25%;
 
	width: 28%;
 
	text-align: right;
 
	padding-bottom: 5px;
 
}
 
 
#graph_content .container .left .date {
 
@@ -3182,6 +3184,7 @@ h3.files_location{
 
#graph_content .container .left .message {
 
	font-size: 100%;
 
	padding-top: 3px;
 
	white-space: pre-wrap;
 
}
 
 
.right div {
pylons_app/templates/changelog/changelog.html
Show inline comments
 
@@ -54,10 +54,7 @@
 
								<span>${h.person(cs.author)}</span><br/>
 
								<span><a href="mailto:${h.email_or_none(cs.author)}">${h.email_or_none(cs.author)}</a></span><br/>
 
							</div>
 
							<div class="message">
 
								${h.link_to(h.wrap_paragraphs(cs.message),
 
								h.url('changeset_home',repo_name=c.repo_name,revision=cs.short_id))}
 
							</div>
 
							<div class="message">${h.link_to(h.wrap_paragraphs(cs.message),h.url('changeset_home',repo_name=c.repo_name,revision=cs.short_id))}</div>
 
						</div>	
 
						<div class="right">
 
									<div class="changes">
pylons_app/templates/changeset/changeset.html
Show inline comments
 
@@ -45,10 +45,7 @@
 
	                     <span>${h.person(c.changeset.author)}</span><br/>
 
	                     <span><a href="mailto:${h.email_or_none(c.changeset.author)}">${h.email_or_none(c.changeset.author)}</a></span><br/>
 
	                 </div>
 
	                 <div class="message">
 
	                     ${h.link_to(h.wrap_paragraphs(c.changeset.message),
 
	                     h.url('changeset_home',repo_name=c.repo_name,revision=c.changeset.short_id))}
 
	                 </div>
 
	                 <div class="message">${h.link_to(h.wrap_paragraphs(c.changeset.message),h.url('changeset_home',repo_name=c.repo_name,revision=c.changeset.short_id))}</div>
 
	             </div>
 
	             <div class="right">
 
		             <div class="changes">
0 comments (0 inline, 0 general)