Fix clickable area for checkboxes in email editing

This commit is contained in:
Daniel O'Connor
2015-08-11 13:45:47 +09:30
parent 367e298d48
commit 97cf1347d5

View File

@@ -9,24 +9,28 @@
%span.help-block If you change your email address you will have to reconfirm.
.form-group
.col-md-offset-2.col-md-8
= f.check_box :show_email
Show email publicly on your profile page.
.col-md-offset-2.col-md-8.checkbox
%label
= f.check_box :show_email
Show email publicly on your profile page.
.form-group
.col-md-offset-2.col-md-8
= f.check_box :send_notification_email
Receive emailed copies of Inbox notifications (eg. private messages).
.col-md-offset-2.col-md-8.checkbox
%label
= f.check_box :send_notification_email
Receive emailed copies of Inbox notifications (eg. private messages).
.form-group
.col-md-offset-2.col-md-8
= f.check_box :send_planting_reminder
Receive regular reminders to track your planting and harvesting.
.col-md-offset-2.col-md-8.checkbox
%label
= f.check_box :send_planting_reminder
Receive regular reminders to track your planting and harvesting.
.form-group
.col-md-offset-2.col-md-8
= f.check_box :newsletter
Subscribe to the #{ENV['GROWSTUFF_SITE_NAME']} newsletter
.col-md-offset-2.col-md-8.checkbox
%label
= f.check_box :newsletter
Subscribe to the #{ENV['GROWSTUFF_SITE_NAME']} newsletter
.help-block
= render :partial => 'newsletter_blurb'