summaryrefslogtreecommitdiff
path: root/app/views/admin/groups
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-01-01 22:11:18 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-01-01 22:11:18 +0200
commit5fa805a7ba9e6dd437a5bbda1ea28741d0d8b9ee (patch)
treee156f0730ccdba3aee242623b60401fa1cd563e6 /app/views/admin/groups
parenta9fba2cd0acf847bced02e5ff3673b41adca151a (diff)
downloadgitlab-ce-5fa805a7ba9e6dd437a5bbda1ea28741d0d8b9ee.tar.gz
Restyle issue form. Replace inputs
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
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"