Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-31 04:50:36 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-12-31 04:50:36 +0400
commit010a770b3fa15119b40a994fde6ffdde3acf6d2d (patch)
treed0d90a2aefe78dae9db490f8b5ca168ce4809e28 /app/views/projects/deploy_keys
parent16eb3ac360df60469cc9b1a93870c0273c7fe78f (diff)
Migrate forms and inputs pt1
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app/views/projects/deploy_keys')
-rw-r--r--app/views/projects/deploy_keys/_form.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/deploy_keys/_form.html.haml b/app/views/projects/deploy_keys/_form.html.haml
index 388e297255d..5ee4aae54eb 100644
--- a/app/views/projects/deploy_keys/_form.html.haml
+++ b/app/views/projects/deploy_keys/_form.html.haml
@@ -8,14 +8,14 @@
.form-group
= f.label :title
- .col-sm-10= f.text_field :title, class: 'input-xlarge'
+ .col-sm-10= f.text_field :title, class: 'input-lg'
.form-group
= f.label :key
.col-sm-10
%p.light
Paste a machine public key here. Read more about how to generate it
= link_to "here", help_ssh_path
- = f.text_area :key, class: "input-xxlarge thin_area"
+ = f.text_area :key, class: "input-lg thin_area"
.form-actions
= f.submit 'Create', class: "btn-create btn"