summaryrefslogtreecommitdiff
path: root/app/views/shared/issuable/_form.html.haml
diff options
context:
space:
mode:
authorClement Ho <ClemMakesApps@gmail.com>2018-04-12 15:11:22 -0500
committerClement Ho <ClemMakesApps@gmail.com>2018-04-12 15:11:22 -0500
commitc552328617202bd1225abd3e84fc7f4a4b79e4fa (patch)
tree93b5f95af70561784bb29bd6f7dbd1ef12e69b29 /app/views/shared/issuable/_form.html.haml
parent705d7f703b10f5e1a066d0623bf32d07868d6668 (diff)
downloadgitlab-ce-c552328617202bd1225abd3e84fc7f4a4b79e4fa.tar.gz
[skip ci] .form-horizontal => .form-group.row
Diffstat (limited to 'app/views/shared/issuable/_form.html.haml')
-rw-r--r--app/views/shared/issuable/_form.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/shared/issuable/_form.html.haml b/app/views/shared/issuable/_form.html.haml
index e62fde003ce..3459e735bd9 100644
--- a/app/views/shared/issuable/_form.html.haml
+++ b/app/views/shared/issuable/_form.html.haml
@@ -11,7 +11,7 @@
= link_to "the #{issuable.class.model_name.human.downcase}", polymorphic_path([@project.namespace.becomes(Namespace), @project, issuable]), target: "_blank", rel: 'noopener noreferrer'
and make sure your changes will not unintentionally remove theirs
-.form-group
+.form-group.row
= form.label :title, class: 'col-form-label'
= render 'shared/issuable/form/template_selector', issuable: issuable
@@ -20,7 +20,7 @@
= render 'shared/form_elements/description', model: issuable, form: form, project: project
- if issuable.respond_to?(:confidential)
- .form-group
+ .form-group.row
.col-sm-offset-2.col-sm-10
.form-check
= form.label :confidential do
@@ -36,7 +36,7 @@
= render 'shared/issuable/form/contribution', issuable: issuable, form: form
- if @merge_request_to_resolve_discussions_of
- .form-group
+ .form-group.row
.col-sm-10.col-sm-offset-2
= icon('info-circle')
- if @merge_request_to_resolve_discussions_of.discussions_can_be_resolved_by?(current_user)