summaryrefslogtreecommitdiff
path: root/app/views/profiles/passwords
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/passwords
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/passwords')
-rw-r--r--app/views/profiles/passwords/edit.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/profiles/passwords/edit.html.haml b/app/views/profiles/passwords/edit.html.haml
index 8a51a30191a..9c8cc9c059b 100644
--- a/app/views/profiles/passwords/edit.html.haml
+++ b/app/views/profiles/passwords/edit.html.haml
@@ -18,15 +18,15 @@
- unless @user.password_automatically_set?
.form-group
- = f.label :current_password, class: 'label-light'
+ = f.label :current_password, class: 'label-bold'
= f.password_field :current_password, required: true, class: 'form-control'
%p.form-text.text-muted
You must provide your current password in order to change it.
.form-group
- = f.label :password, 'New password', class: 'label-light'
+ = f.label :password, 'New password', class: 'label-bold'
= f.password_field :password, required: true, class: 'form-control'
.form-group
- = f.label :password_confirmation, class: 'label-light'
+ = f.label :password_confirmation, class: 'label-bold'
= f.password_field :password_confirmation, required: true, class: 'form-control'
.prepend-top-default.append-bottom-default
= f.submit 'Save password', class: "btn btn-create append-right-10"