# HG changeset patch # User Mads Kiilerich # Date 2015-10-08 23:21:58 # Node ID 92220cd013b04dc2e44e4b0852f6f68b77e8091e # Parent 4b647864075e01523b268375ac7d626afc3bdcea changeset: remove unused handling of inline-comments-button - probably left over from refactorings diff --git a/kallithea/public/css/style.css b/kallithea/public/css/style.css --- a/kallithea/public/css/style.css +++ b/kallithea/public/css/style.css @@ -4346,9 +4346,6 @@ form.comment-inline-form { 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; diff --git a/kallithea/templates/changeset/changeset.html b/kallithea/templates/changeset/changeset.html --- a/kallithea/templates/changeset/changeset.html +++ b/kallithea/templates/changeset/changeset.html @@ -217,10 +217,8 @@ ${self.repo_context_bar('changelog', c.c 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(); } });