summaryrefslogtreecommitdiff
path: root/app/views/admin/groups
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/groups')
-rw-r--r--app/views/admin/groups/edit.html.haml6
-rw-r--r--app/views/admin/groups/new.html.haml4
2 files changed, 5 insertions, 5 deletions
diff --git a/app/views/admin/groups/edit.html.haml b/app/views/admin/groups/edit.html.haml
index e68c97e2c59..e9807d7473a 100644
--- a/app/views/admin/groups/edit.html.haml
+++ b/app/views/admin/groups/edit.html.haml
@@ -8,18 +8,18 @@
= f.label :name do
Group name
.col-sm-10
- = f.text_field :name, placeholder: "Example Group", class: "input-lg"
+ = f.text_field :name, placeholder: "Example Group", class: "form-control"
.form-group.group-description-holder
= f.label :description, "Details"
.col-sm-10
- = f.text_area :description, maxlength: 250, class: "input-lg js-gfm-input", rows: 4
+ = f.text_area :description, maxlength: 250, class: "form-control js-gfm-input", rows: 4
.form-group.group_name_holder
= f.label :path do
%span.cred Group path
.col-sm-10
- = f.text_field :path, placeholder: "example-group", class: "input-lg danger"
+ = f.text_field :path, placeholder: "example-group", class: "form-control danger"
%ul.cred
%li Changing group path can have unintended side effects.
%li Renaming group path will rename directory for all related projects
diff --git a/app/views/admin/groups/new.html.haml b/app/views/admin/groups/new.html.haml
index 644879c65e4..2689b47fbc5 100644
--- a/app/views/admin/groups/new.html.haml
+++ b/app/views/admin/groups/new.html.haml
@@ -8,11 +8,11 @@
= f.label :name do
Group name
.col-sm-10
- = f.text_field :name, placeholder: "Ex. OpenSource", class: "input-lg left"
+ = f.text_field :name, placeholder: "Ex. OpenSource", class: "form-control left"
.form-group.group-description-holder
= f.label :description, "Details"
.col-sm-10
- = f.text_area :description, maxlength: 250, class: "input-lg js-gfm-input", rows: 4
+ = f.text_area :description, maxlength: 250, class: "form-control js-gfm-input", rows: 4
.form-actions
= f.submit 'Create group', class: "btn btn-create"