Changeset - 882f300d652e
[Not reviewed]
default
0 4 0
Sean Farley - 11 years ago 2014-11-15 13:23:31
sean.michael.farley@gmail.com
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.
4 files changed with 4 insertions and 4 deletions:
0 comments (0 inline, 0 general)
kallithea/public/js/base.js
Show inline comments
 
@@ -1481,7 +1481,7 @@ var addReviewMember = function(id,fname,
 
        '         <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'
kallithea/templates/admin/repos/repo_edit_advanced.html
Show inline comments
 
@@ -78,7 +78,7 @@ ${h.form(url('repo', repo_name=c.repo_na
 
<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():
kallithea/templates/pullrequests/pullrequest.html
Show inline comments
 
@@ -106,7 +106,7 @@ ${self.repo_context_bar('showpullrequest
 
                      <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>
kallithea/templates/pullrequests/pullrequest_show.html
Show inline comments
 
@@ -226,7 +226,7 @@ ${self.repo_context_bar('showpullrequest
 
                  <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>
0 comments (0 inline, 0 general)