diff options
Diffstat (limited to 'app/views/roles')
-rw-r--r-- | app/views/roles/_form.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/roles/_form.rhtml b/app/views/roles/_form.rhtml index 8dab8129a..b77cbacdf 100644 --- a/app/views/roles/_form.rhtml +++ b/app/views/roles/_form.rhtml @@ -13,10 +13,10 @@ <% perms_by_module.keys.sort.each do |mod| %> <fieldset><legend><%= mod.blank? ? l(:label_project) : mod.humanize %></legend> <% perms_by_module[mod].each do |permission| %> - <div style="width:220px;float:left;"> + <label class="floating"> <%= check_box_tag 'role[permissions][]', permission.name, (@role.permissions.include? permission.name) %> <%= permission.name.to_s.humanize %> - </div> + </label> <% end %> </fieldset> <% end %> |