Changeset - 2a18192fbd1e
[Not reviewed]
default
0 5 0
Marcin Kuzminski - 15 years ago 2010-08-05 01:31:01
marcin@python-works.com
templating updates (font sizes)
5 files changed with 9 insertions and 9 deletions:
0 comments (0 inline, 0 general)
pylons_app/public/css/style.css
Show inline comments
 
@@ -2883,7 +2883,7 @@ div.options a:hover
 
}
 
 
#graph_content .container .left .message {
 
	font-size: 80%;
 
	font-size: 100%;
 
}
 
 
.right div {
pylons_app/templates/changeset/changeset.html
Show inline comments
 
@@ -69,11 +69,11 @@
 
						revision=filenode.changeset.raw_id,f_path=filenode.path))}
 
					</span>
 
					%if 1:
 
					&raquo; <span style="font-size:77%">${h.link_to(_('diff'),
 
					&raquo; <span>${h.link_to(_('diff'),
 
					h.url('files_diff_home',repo_name=c.repo_name,f_path=filenode.path,diff2=cs2,diff1=cs1,diff='diff'))}</span>
 
					&raquo; <span style="font-size:77%">${h.link_to(_('raw diff'),
 
					&raquo; <span>${h.link_to(_('raw diff'),
 
					h.url('files_diff_home',repo_name=c.repo_name,f_path=filenode.path,diff2=cs2,diff1=cs1,diff='raw'))}</span>
 
					&raquo; <span style="font-size:77%">${h.link_to(_('download diff'),
 
					&raquo; <span>${h.link_to(_('download diff'),
 
					h.url('files_diff_home',repo_name=c.repo_name,f_path=filenode.path,diff2=cs2,diff1=cs1,diff='download'))}</span>
 
					%endif
 
				</div>
pylons_app/templates/files/file_diff.html
Show inline comments
 
@@ -26,11 +26,11 @@
 
				<div>
 
				<span>${h.link_to(c.f_path,h.url('files_home',repo_name=c.repo_name,
 
				revision=c.diff2.split(':')[1],f_path=c.f_path))}</span>
 
				 &raquo; <span style="font-size:77%">${h.link_to(_('diff'),
 
				 &raquo; <span>${h.link_to(_('diff'),
 
				h.url.current(diff2=c.diff2.split(':')[-1],diff1=c.diff1.split(':')[-1],diff='diff'))}</span>
 
				 &raquo; <span style="font-size:77%">${h.link_to(_('raw diff'),
 
				 &raquo; <span>${h.link_to(_('raw diff'),
 
				h.url.current(diff2=c.diff2.split(':')[-1],diff1=c.diff1.split(':')[-1],diff='raw'))}</span>
 
				 &raquo; <span style="font-size:77%">${h.link_to(_('download diff'),
 
				 &raquo; <span>${h.link_to(_('download diff'),
 
				h.url.current(diff2=c.diff2.split(':')[-1],diff1=c.diff1.split(':')[-1],diff='download'))}</span>
 
				</div>
 
			</div>
pylons_app/templates/files/files_annotate.html
Show inline comments
 
@@ -39,7 +39,7 @@
 
			<div id="body" class="codeblock">
 
				<div class="code-header">
 
					<div class="revision">${c.file.name}@r${c.file.last_changeset.revision}:${c.file.last_changeset._short}</div>
 
					<div class="commit" style="font-size:70%">"${c.file_msg}"</div>
 
					<div class="commit">"${c.file_msg}"</div>
 
				</div>
 
				<div class="code-body">
 
					${h.pygmentize_annotation(c.file,linenos=True,anchorlinenos=True,lineanchors='S',cssclass="code-highlight")}
pylons_app/templates/files/files_source.html
Show inline comments
 
@@ -23,7 +23,7 @@
 
<div id="body" class="codeblock">
 
	<div class="code-header">
 
		<div class="revision">${c.files_list.name}@r${c.files_list.last_changeset.revision}:${c.files_list.last_changeset._short}</div>
 
		<div class="commit" style="font-size:70%">"${c.files_list.last_changeset.message}"</div>
 
		<div class="commit">"${c.files_list.last_changeset.message}"</div>
 
	</div>
 
	<div class="code-body">
 
		${h.pygmentize(c.files_list,linenos=True,anchorlinenos=True,lineanchors='S',cssclass="code-highlight")}
0 comments (0 inline, 0 general)