summaryrefslogtreecommitdiff
path: root/app/views/profiles/keys/_form.html.haml
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/profiles/keys/_form.html.haml
parentbe2410ab18136df8ffc81d667879b4fefa61b732 (diff)
downloadgitlab-ce-0deb8547af52ea1ccb147a07629705ec5e435bfb.tar.gz
Replace label-light with label-bold. Because it's bold, not light
Diffstat (limited to 'app/views/profiles/keys/_form.html.haml')
-rw-r--r--app/views/profiles/keys/_form.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/profiles/keys/_form.html.haml b/app/views/profiles/keys/_form.html.haml
index 43a2d53b84d..5207921d6fe 100644
--- a/app/views/profiles/keys/_form.html.haml
+++ b/app/views/profiles/keys/_form.html.haml
@@ -3,11 +3,11 @@
= form_errors(@key)
.form-group
- = f.label :key, class: 'label-light'
+ = f.label :key, class: 'label-bold'
%p= _("Paste your public SSH key, which is usually contained in the file '~/.ssh/id_rsa.pub' and begins with 'ssh-rsa'. Don't use your private SSH key.")
= f.text_area :key, class: "form-control js-add-ssh-key-validation-input", rows: 8, required: true, placeholder: s_('Profiles|Typically starts with "ssh-rsa …"')
.form-group
- = f.label :title, class: 'label-light'
+ = f.label :title, class: 'label-bold'
= f.text_field :title, class: "form-control input-lg", required: true, placeholder: s_('Profiles|e.g. My MacBook key')
%p.form-text.text-muted= _('Name your individual key via a title')