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-08-08 12:57:34 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-08-08 12:57:34 +0400
commitacc21d30fb7a38e8ae069116a37d67b535da3996 (patch)
tree0f130d429a62f33095f5e2f8761ef9387bb07951 /app/views/projects/deploy_keys
parentf79b210061724fa1460fbb10853467182031c2c5 (diff)
Increase input padding. Minor ui fixes
Diffstat (limited to 'app/views/projects/deploy_keys')
-rw-r--r--app/views/projects/deploy_keys/_form.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/projects/deploy_keys/_form.html.haml b/app/views/projects/deploy_keys/_form.html.haml
index 84a81ac58b1..00b41e657b6 100644
--- a/app/views/projects/deploy_keys/_form.html.haml
+++ b/app/views/projects/deploy_keys/_form.html.haml
@@ -8,14 +8,14 @@
.control-group
= f.label :title
- .controls= f.text_field :title
+ .controls= f.text_field :title, class: 'input-xlarge'
.control-group
= f.label :key
.controls
- = f.text_area :key, class: [:xxlarge, :thin_area]
- %p.hint
+ %p.light
Paste a machine public key here. Read more about how generate it
= link_to "here", help_ssh_path
+ = f.text_area :key, class: "input-xxlarge thin_area"
.form-actions
= f.submit 'Create', class: "btn-create btn"