diff options
author | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2013-09-16 09:48:51 +0200 |
---|---|---|
committer | Jean-Baptiste Lievremont <jean-baptiste.lievremont@sonarsource.com> | 2013-09-16 09:50:02 +0200 |
commit | 8e53d6d6f07debed89bcdf92bb1ea63767794c0a (patch) | |
tree | ffe7aec1c985b724aa513c4802bcfc2c95b27721 /sonar-server | |
parent | 5abfd9d8cd8da8199883f5e9d584f641ab715ae6 (diff) | |
download | sonarqube-8e53d6d6f07debed89bcdf92bb1ea63767794c0a.tar.gz sonarqube-8e53d6d6f07debed89bcdf92bb1ea63767794c0a.zip |
Move settings help to its own div, under save button
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb index f41fb6c5663..707f44630e1 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_properties.html.erb @@ -75,19 +75,20 @@ </tbody> </table> - <% unless category_help(@category).blank? -%> - <div class="help marginbottom10" style="margin-left: -1px"> - <%= category_help(@category) -%> - </div> - <% end -%> - <% unless @definitions.empty? %> - <div style="padding-left: 5px;"> + <div class="marginbottom10" style="padding-left: 5px;"> <%= hidden_field_tag('page_version', (params[:page_version] || 0).to_i + 1) -%> <%= submit_tag(message('settings.save_category', :params => [subcategory_name(@category, @subcategory)]), :id => 'submit_settings') -%> <img src="<%= ApplicationController.root_context -%>/images/loading.gif" id="loading_settings" style="display:none;"> </div> <% end %> + + <% unless category_help(@category).blank? -%> + <div class="help marginbottom10" style="margin-left: -1px"> + <%= category_help(@category) -%> + </div> + <% end -%> + <% end %> </form> <% end -%> |