summaryrefslogtreecommitdiff
path: root/app/views/admin/application_settings/_ci_cd.html.haml
diff options
context:
space:
mode:
authorAnnabel Gray <annabel.m.gray@gmail.com>2018-05-31 19:20:46 +0000
committerAnnabel Gray <annabel.m.gray@gmail.com>2018-05-31 19:20:46 +0000
commit7e83211fc96db9530ff2053a17e4cd59f39357da (patch)
treec1464f90d03c3a5404023fbb922888c007d744bf /app/views/admin/application_settings/_ci_cd.html.haml
parente57ad62d488b15b9e65ea63f4ab78e51336318a5 (diff)
parent1a6d848db725e8db0595b4d8b71afba2153445ae (diff)
downloadgitlab-ce-7e83211fc96db9530ff2053a17e4cd59f39357da.tar.gz
Merge branch 'bootstrap-checkbox' into 'master'
Fix checkbox/radio button structure Closes #46766 and #46719 See merge request gitlab-org/gitlab-ce!19254
Diffstat (limited to 'app/views/admin/application_settings/_ci_cd.html.haml')
-rw-r--r--app/views/admin/application_settings/_ci_cd.html.haml8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/views/admin/application_settings/_ci_cd.html.haml b/app/views/admin/application_settings/_ci_cd.html.haml
index 6a06271de2a..233821818e6 100644
--- a/app/views/admin/application_settings/_ci_cd.html.haml
+++ b/app/views/admin/application_settings/_ci_cd.html.haml
@@ -5,8 +5,8 @@
.form-group.row
.offset-sm-2.col-sm-10
.form-check
- = f.label :auto_devops_enabled do
- = f.check_box :auto_devops_enabled
+ = f.check_box :auto_devops_enabled, class: 'form-check-input'
+ = f.label :auto_devops_enabled, class: 'form-check-label' do
Enabled Auto DevOps for projects by default
.form-text.text-muted
It will automatically build, test, and deploy applications based on a predefined CI/CD configuration
@@ -20,8 +20,8 @@
.form-group.row
.offset-sm-2.col-sm-10
.form-check
- = f.label :shared_runners_enabled do
- = f.check_box :shared_runners_enabled
+ = f.check_box :shared_runners_enabled, class: 'form-check-input'
+ = f.label :shared_runners_enabled, class: 'form-check-label' do
Enable shared runners for new projects
.form-group.row
= f.label :shared_runners_text, class: 'col-form-label col-sm-2'