Changeset - 8fe1a141de02
[Not reviewed]
beta
0 2 0
Aras Pranckevicius - 14 years ago 2012-01-06 20:08:09
aras@unity3d.com
changelog: more polish
2 files changed with 24 insertions and 22 deletions:
0 comments (0 inline, 0 general)
rhodecode/public/css/style.css
Show inline comments
 
@@ -2115,6 +2115,19 @@ h3.files_location {
 
	padding: 5px !important;
 
}
 
 
.tablerow1 {
 
	background-color: #F8F8F8;
 
}
 
 
.changeset_id {
 
	font-family: monospace;
 
	color: #666666;
 
}
 
 
.changeset_hash {
 
	color: #000000;
 
}
 
 
#changeset_content {
 
	border: 1px solid #CCC;
 
	padding: 5px;
 
@@ -2225,12 +2238,9 @@ h3.files_location {
 
}
 
 
#graph_content .container_header {
 
	border: 1px solid #CCC;
 
	border-bottom: 1px solid #DDD;
 
	padding: 10px;
 
	height: 25px;
 
    -webkit-border-radius: 6px 6px 0px 0px;
 
    -moz-border-radius: 6px 6px 0px 0px;
 
    border-radius: 6px 6px 0px 0px;	
 
}
 
 
#graph_content #rev_range_container {
 
@@ -2239,10 +2249,8 @@ h3.files_location {
 
}
 
 
#graph_content .container {
 
	border-bottom: 1px solid #CCC;
 
	border-left: 1px solid #CCC;
 
	border-right: 1px solid #CCC;
 
	height: 60px;
 
	border-bottom: 1px solid #DDD;
 
	height: 55px;
 
	overflow: hidden;
 
}
 
 
@@ -2266,12 +2274,6 @@ h3.files_location {
 
 
#graph_content .container .left .date {
 
	color: #444444;
 
	f_ont-weight: 700;
 
	p_adding-bottom: 5px;
 
}
 
 
#graph_content .container .left .date span {
 
	vertical-align: text-top;
 
}
 
 
#graph_content .container .left .author {
 
@@ -2357,9 +2359,7 @@ h3.files_location {
 
}
 
 
.right .parent {
 
	font-size: 90%;
 
	font-family: monospace;
 
	padding: 2px 2px 2px 2px;
 
	color: #666666;
 
}
 
.right .logtags{
 
	padding: 2px 2px 2px 2px;
rhodecode/templates/changelog/changelog.html
Show inline comments
 
@@ -44,11 +44,11 @@ ${c.repo_name} ${_('Changelog')} - ${c.r
 
					</div>
 
					
 
				%for cnt,cs in enumerate(c.pagination):
 
					<div id="chg_${cnt+1}" class="container">
 
					<div id="chg_${cnt+1}" class="container ${'tablerow1' if cnt%2==0 else 'tablerow2'}">
 
						<div class="left">
 
							<div class="date">
 
							<div>
 
							${h.checkbox(cs.short_id,class_="changeset_range")}
 
							<span>${cs.revision}: ${h.short_id(cs.raw_id)}<br/>${cs.date}</span>
 
							<span class="changeset_id">${cs.revision}:<span class="changeset_hash">${h.short_id(cs.raw_id)}</span></span>
 
							</div>
 
							<div class="author">
 
								<div class="gravatar">
 
@@ -56,6 +56,7 @@ ${c.repo_name} ${_('Changelog')} - ${c.r
 
								</div>
 
								<div title="${cs.author}" class="user">${h.person(cs.author)}</div>
 
							</div>
 
							<div class="date">${cs.date}</div>
 
						</div>
 
						<div class="mid">
 
							<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 @@ ${c.repo_name} ${_('Changelog')} - ${c.r
 
										%endif
 
								   %if cs.parents:							
 
									%for p_cs in reversed(cs.parents):
 
										<div class="parent">${_('Parent')} ${p_cs.revision}: ${h.link_to(h.short_id(p_cs.raw_id),
 
											h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}
 
										<div class="parent">${_('Parent')}
 
											<span class="changeset_id">${p_cs.revision}:<span class="changeset_hash">${h.link_to(h.short_id(p_cs.raw_id),
 
											h.url('changeset_home',repo_name=c.repo_name,revision=p_cs.raw_id),title=p_cs.message)}</span></span>
 
										</div>
 
									%endfor
 
								   %else:	
0 comments (0 inline, 0 general)