Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <ClemMakesApps@gmail.com>2018-05-24 16:33:23 +0300
committerClement Ho <ClemMakesApps@gmail.com>2018-05-24 16:39:44 +0300
commit53965b8fc1f627e02bdd0654aae58a16a505bfec (patch)
tree84992282405b955b0fd8924c05745920c84d0801 /app/views/admin
parent0a947fb2616ac6759d3a016758ea35cf916c2bf0 (diff)
Replace remaining .radio and .checkbox with .form-check
Diffstat (limited to 'app/views/admin')
-rw-r--r--app/views/admin/application_settings/_repository_mirrors_form.html.haml2
-rw-r--r--app/views/admin/application_settings/_terms.html.haml2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/admin/application_settings/_repository_mirrors_form.html.haml b/app/views/admin/application_settings/_repository_mirrors_form.html.haml
index 09183ec6260..9d05a5aa234 100644
--- a/app/views/admin/application_settings/_repository_mirrors_form.html.haml
+++ b/app/views/admin/application_settings/_repository_mirrors_form.html.haml
@@ -5,7 +5,7 @@
.form-group
= f.label :mirror_available, 'Enable mirror configuration', class: 'control-label col-sm-2'
.col-sm-10
- .checkbox
+ .form-check
= f.label :mirror_available do
= f.check_box :mirror_available
Allow mirrors to be setup for projects
diff --git a/app/views/admin/application_settings/_terms.html.haml b/app/views/admin/application_settings/_terms.html.haml
index 724246ab7e7..32b060972ec 100644
--- a/app/views/admin/application_settings/_terms.html.haml
+++ b/app/views/admin/application_settings/_terms.html.haml
@@ -4,7 +4,7 @@
%fieldset
.form-group
.col-sm-12
- .checkbox
+ .form-check
= f.label :enforce_terms do
= f.check_box :enforce_terms
= _("Require all users to accept Terms of Service when they access GitLab.")