diff options
author | guntasgrewal <guntasgrewal@gmail.com> | 2014-04-27 20:47:31 -0400 |
---|---|---|
committer | guntasgrewal <guntasgrewal@gmail.com> | 2014-04-27 20:47:31 -0400 |
commit | df1cda1faab97f4c424efdcf8b6822f98b73adb8 (patch) | |
tree | c933cf5bd79cf71b84718a2dcd7e634c9c188cd1 /app/views/servers | |
parent | 6b2aca5d0eba38fff00d5922655c6d8cb9c2f7ea (diff) |
Made some CSS changes all over the website. Added an alert icon.still need ajax to work with it
Diffstat (limited to 'app/views/servers')
-rw-r--r-- | app/views/servers/_form.html.erb | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/app/views/servers/_form.html.erb b/app/views/servers/_form.html.erb index 1afde11..8853a80 100644 --- a/app/views/servers/_form.html.erb +++ b/app/views/servers/_form.html.erb @@ -1,18 +1,19 @@ <%= form_for(@server) do |f| %> <%= render "common/error_messages", :target => @server %> - <fieldset> - <legend>Default permissions for new users</legend> - <ul> + <fieldset style="color: rgb(221, 145, 37)"> + <legend style="color: rgb(221, 145, 37); border-color: rgb(221, 145, 37)">Default permissions for new users</legend> + <ul > <%= fields_for "server[default_user_abilities]", @server.default_user_abilities do |a| %> <% @server.default_user_abilities.keys.each do |ability| %> - <li><label><%= a.check_box(ability) %> <%= ability.to_s.humanize %></label></li> + <li ><label><%= a.check_box(ability) %> <%= ability.to_s.humanize %></label></li> <% end %> <% end %> </ul> </fieldset> - - <div class="actions"> - <%= f.submit %> - </div> + <p> + <div class="actions"> + <%= f.submit %> + </div> + </p> <% end %> |