Commit 5e52d9b3 authored by Clement Ho's avatar Clement Ho

Merge branch 'jivl-fix-card-class-for-integration-forms' into 'master'

Fix card class for integration forms

Closes gitlab-ce#47074

See merge request gitlab-org/gitlab-ee!5983
parents d8fb2f95 47023ffd
...@@ -127,12 +127,16 @@ ...@@ -127,12 +127,16 @@
color: $gl-danger; color: $gl-danger;
} }
.service-settings .form-control-label { .service-settings {
padding-top: 0; input[type="radio"],
input[type="checkbox"] {
margin-top: 10px;
}
} }
.integration-settings-form { .integration-settings-form {
.card.card-body { .card.card-body,
.info-well {
padding: $gl-padding / 2; padding: $gl-padding / 2;
box-shadow: none; box-shadow: none;
} }
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
= s_('PrometheusService|Auto configuration') = s_('PrometheusService|Auto configuration')
- if service.manual_configuration? - if service.manual_configuration?
.card .info-well
= s_('PrometheusService|To enable the installation of Prometheus on your clusters, deactivate the manual configuration below') = s_('PrometheusService|To enable the installation of Prometheus on your clusters, deactivate the manual configuration below')
- else - else
.container-fluid .container-fluid
......
...@@ -5,5 +5,5 @@ ...@@ -5,5 +5,5 @@
= s_('PrometheusService|Manual configuration') = s_('PrometheusService|Manual configuration')
- unless @service.editable? - unless @service.editable?
.card .info-well
= s_('PrometheusService|To enable manual configuration, uninstall Prometheus from your clusters') = s_('PrometheusService|To enable manual configuration, uninstall Prometheus from your clusters')
...@@ -9,11 +9,11 @@ ...@@ -9,11 +9,11 @@
- help = field[:help] - help = field[:help]
- disabled = disable_fields_service?(@service) - disabled = disable_fields_service?(@service)
.form-group .form-group.row
- if type == "password" && value.present? - if type == "password" && value.present?
= form.label name, "Enter new #{title.downcase}", class: "col-form-label" = form.label name, "Enter new #{title.downcase}", class: "col-form-label col-sm-2"
- else - else
= form.label name, title, class: "col-form-label" = form.label name, title, class: "col-form-label col-sm-2"
.col-sm-10 .col-sm-10
- if type == 'text' - if type == 'text'
= form.text_field name, class: "form-control", placeholder: placeholder, required: required, disabled: disabled = form.text_field name, class: "form-control", placeholder: placeholder, required: required, disabled: disabled
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment