style the prometheus integration service page according to design

This commit is contained in:
Mike Greiling 2018-01-31 16:25:54 -06:00
parent 310ae68774
commit 06e7c15714
No known key found for this signature in database
GPG Key ID: 0303DF507FA67596
3 changed files with 33 additions and 10 deletions

View File

@ -135,6 +135,17 @@
padding-top: 0;
}
.integration-settings-form {
.well {
padding: $gl-padding / 2;
box-shadow: none;
}
.svg-container {
max-width: 150px;
}
}
.token-token-container {
#impersonation-token-token {
width: 80%;

View File

@ -9,7 +9,7 @@
%p= @service.description
.col-lg-9
= form_for(@service, as: :service, url: project_service_path(@project, @service.to_param), method: :put, html: { class: 'gl-show-field-errors form-horizontal js-integration-settings-form', data: { 'can-test' => @service.can_test?, 'test-url' => test_project_service_path(@project, @service) } }) do |form|
= form_for(@service, as: :service, url: project_service_path(@project, @service.to_param), method: :put, html: { class: 'gl-show-field-errors form-horizontal integration-settings-form js-integration-settings-form', data: { 'can-test' => @service.can_test?, 'test-url' => test_project_service_path(@project, @service) } }) do |form|
= render 'shared/service_settings', form: form, subject: @service
- if @service.editable?
.footer-block.row-content-block

View File

@ -1,15 +1,27 @@
%h4
Auto configuration
.prepend-top-default.append-bottom-default
- unless @service.manual_configuration?
- if @service.prometheus_installed?
= link_to 'Manage clusters', project_clusters_path(@project), class: 'btn'
- else
= link_to 'Install Prometheus on clusters', project_clusters_path(@project), class: 'btn btn-success'
- else
.well
To enable the installation of Prometheus on your clusters, deactivate the manual configuration below
- unless @service.manual_configuration?
.container-fluid
.row
- if @service.prometheus_installed?
.col-sm-2
.svg-container
= image_tag 'illustrations/monitoring/getting_started.svg'
.col-sm-10
%p.text-success.prepend-top-default
Prometheus is being automatically managed on your clusters
= link_to 'Manage clusters', project_clusters_path(@project), class: 'btn'
- else
.col-sm-2
= image_tag 'illustrations/monitoring/loading.svg'
.col-sm-10
%p.prepend-top-default
Automatically deploy and configure Prometheus on your clusters to monitor your projects environments
= link_to 'Install Prometheus on clusters', project_clusters_path(@project), class: 'btn btn-success'
- else
.well
To enable the installation of Prometheus on your clusters, deactivate the manual configuration below
%hr