diff --git a/app/views/projects/settings/_repository.rhtml b/app/views/projects/settings/_repository.rhtml index b91078645..3bd3b4338 100644 --- a/app/views/projects/settings/_repository.rhtml +++ b/app/views/projects/settings/_repository.rhtml @@ -9,9 +9,8 @@
<%= label_tag('repository_scm', l(:label_scm)) %><%= scm_select_tag(@repository) %>
<% if @repository && ! @repository.class.scm_available %>
-
-<%= image_tag((@repository.class.scm_available ? 'true.png' : 'exclamation.png'))%>
-<%= l(:text_scm_command_not_available) %>
+
+ <%= content_tag 'span', l(:text_scm_command_not_available), :class => 'error' %>
<% end %>
- | <%= l(:text_scm_command) %> | <%= l(:text_scm_command_version) %> | @@ -15,15 +13,13 @@ <% text, value = (choice.is_a?(Array) ? choice : [choice, choice]) %> <% setting = :enabled_scm %>|||
---|---|---|---|---|---|
+ | <%= check_box_tag( "settings[#{setting}][]", value, Setting.send(setting).include?(value)) %> - | -<%= text.to_s %> | @@ -33,8 +29,6 @@ :style => "vertical-align:bottom;" ) %> - | -<%= scm_class.scm_command %> | diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 0b6cc755e..d74cba136 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -434,8 +434,9 @@ input#time_entry_comments { width: 90%;} .tabular.settings label{ margin-left: -300px; width: 295px; } .tabular.settings textarea { width: 99%; } +.tabular.settings.enabled_scm table {width:100%} .tabular.settings.enabled_scm td.scm_name{ font-weight: bold; } -.tabular.settings.enabled_scm p.scm_config{ padding-left: 8px; } +.tabular.settings.enabled_scm p.scm_config{ padding-left: 8px; font-style:italic;} fieldset.settings label { display: block; } fieldset#notified_events .parent { padding-left: 20px; } @@ -508,6 +509,8 @@ div.flash.warning { color: #A6750C; } +span.error {padding-left:20px; background:url(../images/exclamation.png) no-repeat 0 50%;} + #errorExplanation ul { font-size: 0.9em;} #errorExplanation h2, #errorExplanation p { display: none; } |