summaryrefslogtreecommitdiff
path: root/app/views/projects/deploy_keys
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2018-07-19 17:11:31 -0500
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2018-07-19 17:11:31 -0500
commit0deb8547af52ea1ccb147a07629705ec5e435bfb (patch)
tree6cb68e65d56a4438702e7bc3837dc5a40bc877c6 /app/views/projects/deploy_keys
parentbe2410ab18136df8ffc81d667879b4fefa61b732 (diff)
downloadgitlab-ce-0deb8547af52ea1ccb147a07629705ec5e435bfb.tar.gz
Replace label-light with label-bold. Because it's bold, not light
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 5ad8091a02b..f8ab0c1ec54 100644
--- a/app/views/projects/deploy_keys/_form.html.haml
+++ b/app/views/projects/deploy_keys/_form.html.haml
@@ -1,10 +1,10 @@
= form_for [@project.namespace.becomes(Namespace), @project, @deploy_keys.new_key], url: namespace_project_deploy_keys_path, html: { class: "js-requires-input container" } do |f|
= form_errors(@deploy_keys.new_key)
.form-group.row
- = f.label :title, class: "label-light"
+ = f.label :title, class: "label-bold"
= f.text_field :title, class: 'form-control', required: true
.form-group.row
- = f.label :key, class: "label-light"
+ = f.label :key, class: "label-bold"
= f.text_area :key, class: "form-control", rows: 5, required: true
.form-group.row
%p.light.append-bottom-0