changeset 4855:02fadbd74483

font: fix missing icon-comment-color and icon-comment-alt We replace the font with our icon-comment one since we can color this with css.
author Sean Farley <sean.michael.farley@gmail.com>
date Thu, 19 Feb 2015 18:01:28 -0800
parents f2fe898a82a6
children e8ff151b3085
files kallithea/lib/helpers.py kallithea/templates/changelog/changelog_summary_data.html kallithea/templates/compare/compare_cs.html
diffstat 3 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/lib/helpers.py	Sun Feb 22 21:22:56 2015 -0800
+++ b/kallithea/lib/helpers.py	Thu Feb 19 18:01:28 2015 -0800
@@ -803,9 +803,9 @@
     'admin_updated_users_group':   (_('[updated] user group'),
                                     get_users_group, 'icon-pencil icon-pencil-colored'),
     'user_commented_revision':     (_('[commented] on revision in repository'),
-                                    get_cs_links, 'icon-comment icon-comment-colored'),
+                                    get_cs_links, 'icon-comment'),
     'user_commented_pull_request': (_('[commented] on pull request for'),
-                                    get_pull_request, 'icon-comment icon-comment-colored'),
+                                    get_pull_request, 'icon-comment'),
     'user_closed_pull_request':    (_('[closed] pull request for'),
                                     get_pull_request, 'icon-ok'),
     'push':                        (_('[pushed] into'),
--- a/kallithea/templates/changelog/changelog_summary_data.html	Sun Feb 22 21:22:56 2015 -0800
+++ b/kallithea/templates/changelog/changelog_summary_data.html	Thu Feb 19 18:01:28 2015 -0800
@@ -32,7 +32,7 @@
                <div class="comments-container">
                    <div title="${('comments')}">
                        <a href="${h.url('changeset_home',repo_name=c.repo_name,revision=cs.raw_id,anchor='comment-%s' % c.comments[cs.raw_id][0].comment_id)}">
-                          <i class="icon-comment-alt icon-comment-colored"></i>${len(c.comments[cs.raw_id])}
+                          <i class="icon-comment"></i>${len(c.comments[cs.raw_id])}
                        </a>
                    </div>
                </div>
--- a/kallithea/templates/compare/compare_cs.html	Sun Feb 22 21:22:56 2015 -0800
+++ b/kallithea/templates/compare/compare_cs.html	Thu Feb 19 18:01:28 2015 -0800
@@ -30,7 +30,7 @@
                   <div class="comments-cnt" title="${_('Changeset has comments')}">
                       <a href="${h.url('changeset_home',repo_name=c.cs_repo.repo_name,revision=cs.raw_id,anchor='comment-%s' % c.cs_comments[cs.raw_id][0].comment_id)}">
                           ${len(c.cs_comments[cs.raw_id])}
-                          <i class="icon-comment-alt icon-comment-colored"></i>
+                          <i class="icon-comment"></i>
                       </a>
                   </div>
               </div>