changeset 4856:e8ff151b3085

font: rename icon-arrow-right to icon-right
author Sean Farley <sean.michael.farley@gmail.com>
date Sun, 22 Feb 2015 21:52:23 -0800
parents 02fadbd74483
children 0a2bed540afb
files kallithea/templates/changeset/changeset_range.html kallithea/templates/changeset/diff_block.html kallithea/templates/compare/compare_diff.html
diffstat 3 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/templates/changeset/changeset_range.html	Thu Feb 19 18:01:28 2015 -0800
+++ b/kallithea/templates/changeset/changeset_range.html	Sun Feb 22 21:52:23 2015 -0800
@@ -8,7 +8,7 @@
 <%def name="breadcrumbs_links()">
     ${_('Changesets')} -
     ${h.link_to(h.show_id(c.cs_ranges[0]),h.url('changeset_home',repo_name=c.repo_name,revision=c.cs_ranges[0]))}</td>
-    <i class="icon-arrow-right"></i>
+    <i class="icon-right"></i>
     ${h.link_to(h.show_id(c.cs_ranges[-1]),h.url('changeset_home',repo_name=c.repo_name,revision=c.cs_ranges[-1]))}</td>
 </%def>
 
@@ -28,7 +28,7 @@
             <div class="code-header">
                 <div>
                     ${h.show_id(c.cs_ranges[0])}
-                    <i class="icon-arrow-right"></i>
+                    <i class="icon-right"></i>
                     ${h.show_id(c.cs_ranges[-1])}
                     <a style="font-weight: bold" href="${h.url('compare_url',repo_name=c.repo_name,org_ref_type='rev',org_ref_name=getattr(c.cs_ranges[0].parents[0] if c.cs_ranges[0].parents else h.EmptyChangeset(),'raw_id'),other_ref_type='rev',other_ref_name=c.cs_ranges[-1].raw_id)}" class="btn btn-small"><i class="icon-git-compare"></i> Compare Revisions</a>
                 </div>
--- a/kallithea/templates/changeset/diff_block.html	Thu Feb 19 18:01:28 2015 -0800
+++ b/kallithea/templates/changeset/diff_block.html	Sun Feb 22 21:52:23 2015 -0800
@@ -81,7 +81,7 @@
                     <a class="spantag" href="${h.url('files_home', repo_name=c.cs_repo.repo_name, f_path=filenode_path, revision=c.cs_rev)}">${h.short_id(c.cs_ref_name) if c.cs_ref_type=='rev' else c.cs_ref_name}</a>
                   %elif op == 'M':
                     <a class="spantag" href="${h.url('files_home', repo_name=c.a_repo.repo_name, f_path=filenode_path, revision=c.a_rev)}">${h.short_id(c.a_ref_name) if c.a_ref_type=='rev' else c.a_ref_name}</a>
-                    <i class="icon-arrow-right"></i>
+                    <i class="icon-right"></i>
                     <a class="spantag" href="${h.url('files_home', repo_name=c.cs_repo.repo_name, f_path=filenode_path, revision=c.cs_rev)}">${h.short_id(c.cs_ref_name) if c.cs_ref_type=='rev' else c.cs_ref_name}</a>
                   %elif op == 'D':
                     ${_('Deleted')}
@@ -89,7 +89,7 @@
                   %elif op == 'R':
                     ${_('Renamed')}
                     <a class="spantag" href="${h.url('files_home', repo_name=c.a_repo.repo_name, f_path=filenode_path, revision=c.a_rev)}">${h.short_id(c.a_ref_name) if c.a_ref_type=='rev' else c.a_ref_name}</a>
-                    <i class="icon-arrow-right"></i>
+                    <i class="icon-right"></i>
                     <a class="spantag" href="${h.url('files_home', repo_name=c.cs_repo.repo_name, f_path=filenode_path, revision=c.cs_rev)}">${h.short_id(c.cs_ref_name) if c.cs_ref_type=='rev' else c.cs_ref_name}</a>
                   %else:
                     ${op}???
--- a/kallithea/templates/compare/compare_diff.html	Thu Feb 19 18:01:28 2015 -0800
+++ b/kallithea/templates/compare/compare_diff.html	Sun Feb 22 21:52:23 2015 -0800
@@ -28,7 +28,7 @@
         <div id="body" class="diffblock">
             <div class="code-header">
                 <div>
-                    ${h.hidden('compare_org')} <i class="icon-arrow-right"></i> ${h.hidden('compare_other')}
+                    ${h.hidden('compare_org')} <i class="icon-right"></i> ${h.hidden('compare_other')}
                     %if not c.compare_home:
                         <a class="btn btn-small" href="${c.swap_url}"><i class="icon-arrows-cw"></i> ${_('Swap')}</a>
                     %endif