changeset 4801:882f300d652e

icons: fix typo of icon-remove to icon-minus and remove style color This patch helps unify some of the visual style at a very basic level. We will punt on doing a more in-depth edit of the visual style until later.
author Sean Farley <sean.michael.farley@gmail.com>
date Sat, 15 Nov 2014 04:23:31 -0800
parents 9ba99ad11b35
children b5d330604a9d
files kallithea/public/js/base.js kallithea/templates/admin/repos/repo_edit_advanced.html kallithea/templates/pullrequests/pullrequest.html kallithea/templates/pullrequests/pullrequest_show.html
diffstat 4 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/public/js/base.js	Thu Jan 29 21:35:38 2015 +0100
+++ b/kallithea/public/js/base.js	Sat Nov 15 04:23:31 2014 -0800
@@ -1481,7 +1481,7 @@
         '         <div style="float:left;">{1}</div>\n'+
         '         <input type="hidden" value="{2}" name="review_members" />\n'+
         '         <div class="reviewer_member_remove action_button" onclick="removeReviewMember({2})">\n'+
-        '             <i class="icon-minus-circled" style="color: #FF4444;"></i>\n'+
+        '             <i class="icon-minus-circled"></i>\n'+
         '         </div> (add not saved)\n'+
         '       </div>\n'+
         '     </li>\n'
--- a/kallithea/templates/admin/repos/repo_edit_advanced.html	Thu Jan 29 21:35:38 2015 +0100
+++ b/kallithea/templates/admin/repos/repo_edit_advanced.html	Sat Nov 15 04:23:31 2014 -0800
@@ -78,7 +78,7 @@
 <div class="form">
     <button class="btn btn-small btn-danger" type="submit"
             onclick="return confirm('${_('Confirm to delete this repository: %s') % c.repo_name}');">
-        <i class="icon-remove-circled"></i>
+        <i class="icon-minus-circled"></i>
         ${_('Delete this Repository')}
     </button>
     %if c.repo_info.forks.count():
--- a/kallithea/templates/pullrequests/pullrequest.html	Thu Jan 29 21:35:38 2015 +0100
+++ b/kallithea/templates/pullrequests/pullrequest.html	Sat Nov 15 04:23:31 2014 -0800
@@ -106,7 +106,7 @@
                       <div style="float:left">${member.firstname} ${member.lastname} (${_('owner')})</div>
                       <input type="hidden" value="${member.user_id}" name="review_members" />
                       <span class="action_button" style="padding: 3px" onclick="removeReviewMember(${member.user_id})" title="${_('Remove reviewer')}">
-                          <i class="icon-remove-circled" style="color: #FF4444;"></i>
+                          <i class="icon-minus-circled"></i>
                       </span>
                     </div>
                   </li>
--- a/kallithea/templates/pullrequests/pullrequest_show.html	Thu Jan 29 21:35:38 2015 +0100
+++ b/kallithea/templates/pullrequests/pullrequest_show.html	Sat Nov 15 04:23:31 2014 -0800
@@ -226,7 +226,7 @@
                   <input type="hidden" value="${member.user_id}" name="review_members" />
                   %if editable:
                   <div class="reviewer_member_remove action_button" onclick="removeReviewMember(${member.user_id})" title="${_('Remove reviewer')}">
-                      <i class="icon-minus-circled" style="color: #FF4444;"></i>
+                      <i class="icon-minus-circled"></i>
                   </div>
                   %endif
                 </div>