changeset 7004:89be46d1bfd0

less: remove .reviewer_ac It has nothing to do with reviewers or autocomplete and the 'padding: 10px' does not improve the style.
author domruf <dominikruf@gmail.com>
date Fri, 27 Oct 2017 22:13:34 +0200
parents 0b9db9c27399
children f56a7b14b221
files kallithea/public/css/style.css kallithea/public/less/style.less kallithea/templates/files/files_add.html
diffstat 3 files changed, 2 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/public/css/style.css	Fri Oct 27 21:59:10 2017 +0200
+++ b/kallithea/public/css/style.css	Fri Oct 27 22:13:34 2017 +0200
@@ -157,9 +157,6 @@
   border-bottom: 1px solid #DDD;
   clear: both;
 }
-.reviewer_ac {
-  padding: 10px;
-}
 #content div.panel table#permissions_manage {
   width: auto;
 }
--- a/kallithea/public/less/style.less	Fri Oct 27 21:59:10 2017 +0200
+++ b/kallithea/public/less/style.less	Fri Oct 27 22:13:34 2017 +0200
@@ -165,9 +165,6 @@
   border-bottom: 1px solid #DDD;
   clear: both;
 }
-.reviewer_ac {
-  padding: 10px;
-}
 #content div.panel table#permissions_manage {
   width: auto;
 }
--- a/kallithea/templates/files/files_add.html	Fri Oct 27 21:59:10 2017 +0200
+++ b/kallithea/templates/files/files_add.html	Fri Oct 27 22:13:34 2017 +0200
@@ -37,12 +37,12 @@
             ${h.form(h.url.current(),method='post',id='eform',enctype="multipart/form-data", class_="form-inline")}
             <h3 class="files_location">
               ${_('Location')}: ${h.files_breadcrumbs(c.repo_name,c.cs.raw_id,c.f_path)} /
-              <span id="filename_container" class="file reviewer_ac">
+              <span id="filename_container" class="file">
                   <input class="form-control input-small" type="text" value="" size="30" name="filename" id="filename" placeholder="${_('Enter filename...')}">
                   <input type="hidden" value="${c.f_path}" name="location" id="location">
                   ${_('or')} <button type="button" class="btn btn-default btn-sm" id="upload_file_enable">${_('Upload File')}</button>
               </span>
-              <span id="upload_file_container" class="reviewer_ac" style="display:none">
+              <span id="upload_file_container" style="display:none">
                   <input class="form-control" type="file" size="20" name="upload_file" id="upload_file">
                   ${_('or')} <button type="button" class="btn btn-default btn-sm" id="file_enable">${_('Create New File')}</button>
               </span>