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:
authorKamil Trzcinski <ayufan@ayufan.eu>2016-05-17 00:34:42 +0300
committerKamil Trzcinski <ayufan@ayufan.eu>2016-05-17 00:48:27 +0300
commitbf4dc75801176c95b49763ff6ab5e03305c91f73 (patch)
tree213e775f27af7534af0f0a5c2306e6f877779087 /app/views/projects/ci
parent003526e2ee408bc6be3596436288213cc57d1bcd (diff)
Improve the pipelines design
Diffstat (limited to 'app/views/projects/ci')
-rw-r--r--app/views/projects/ci/commits/_commit.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/projects/ci/commits/_commit.html.haml b/app/views/projects/ci/commits/_commit.html.haml
index 90ac41666d0..13162b41f9b 100644
--- a/app/views/projects/ci/commits/_commit.html.haml
+++ b/app/views/projects/ci/commits/_commit.html.haml
@@ -19,7 +19,7 @@
- if commit.triggered?
%span.label.label-primary triggered
- if commit.yaml_errors.present?
- %span.label.label-danger.has-tooltip(title="#{commit.yaml_errors}") yaml invalid
+ %span.label.label-danger.has-tooltip{ title: "#{commit.yaml_errors}" } yaml invalid
- if commit.builds.any?(&:stuck?)
%span.label.label-warning stuck
@@ -36,7 +36,7 @@
%td
- if status = stages_status[stage]
- tooltip = "#{stage.titleize}: #{status}"
- %span.has-tooltip(title="#{tooltip}"){class: "ci-status-icon-#{status}"}
+ %span.has-tooltip{ title: "#{tooltip}", class: "ci-status-icon-#{status}" }
= ci_icon_for_status(status)
%td
@@ -74,4 +74,4 @@
&nbsp;
- if commit.active?
= link_to cancel_namespace_project_pipeline_path(@project.namespace, @project, commit.id), class: 'btn btn-remove has-tooltip', title: "Cancel", method: :post do
- = icon("remove", class: "cred")
+ = icon("remove")