changeset 5532:92220cd013b0

changeset: remove unused handling of inline-comments-button - probably left over from refactorings
author Mads Kiilerich <madski@unity3d.com>
date Thu, 08 Oct 2015 23:21:58 +0200
parents 4b647864075e
children aa1891074dd6
files kallithea/public/css/style.css kallithea/templates/changeset/changeset.html
diffstat 2 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/public/css/style.css	Thu Oct 08 23:21:58 2015 +0200
+++ b/kallithea/public/css/style.css	Thu Oct 08 23:21:58 2015 +0200
@@ -4346,9 +4346,6 @@
     color: #666;
     font-size: 16px;
 }
-.inline-comments-button .add-comment {
-    margin: 2px 0px 8px 5px !important
-}
 
 input.status_change_radio {
     margin: 2px 0 5px 15px;
--- a/kallithea/templates/changeset/changeset.html	Thu Oct 08 23:21:58 2015 +0200
+++ b/kallithea/templates/changeset/changeset.html	Thu Oct 08 23:21:58 2015 +0200
@@ -217,10 +217,8 @@
               var boxid = $(target).attr('id_for');
               if(target.checked){
                   $('#{0} .inline-comments'.format(boxid)).show();
-                  $('#{0} .inline-comments-button'.format(boxid)).show();
               }else{
                   $('#{0} .inline-comments'.format(boxid)).hide();
-                  $('#{0} .inline-comments-button'.format(boxid)).hide();
               }
           });