summaryrefslogtreecommitdiffstats
path: root/app/views/projects/add.rhtml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects/add.rhtml')
-rw-r--r--app/views/projects/add.rhtml12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/views/projects/add.rhtml b/app/views/projects/add.rhtml
index 4818cae4a..e3ee0b591 100644
--- a/app/views/projects/add.rhtml
+++ b/app/views/projects/add.rhtml
@@ -3,13 +3,13 @@
<% labelled_tabular_form_for :project, @project, :url => { :action => "add" } do |f| %>
<%= render :partial => 'form', :locals => { :f => f } %>
-<div class="box">
-<p><label><%= l(:label_module_plural) %></label>
+<fieldset class="box"><legend><%= l(:label_module_plural) %></legend>
<% Redmine::AccessControl.available_project_modules.each do |m| %>
-<%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) %> <%= m.to_s.humanize %>
-<% end %></p>
-</div>
-
+ <label class="floating">
+ <%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) %> <%= m.to_s.humanize %>
+ </label>
+<% end %>
+</fieldset>
<%= submit_tag l(:button_save) %>
<% end %>