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:
authorAnnabel Dunstone <annabel.dunstone@gmail.com>2016-07-08 18:01:56 +0300
committerAnnabel Dunstone <annabel.dunstone@gmail.com>2016-07-12 22:50:57 +0300
commit1f67cc4a559e72bedf06f169343c504fcfdd3d49 (patch)
tree7f50e6be74cddeb475e72dcd299c39199fcf444f /app/views/projects/ci
parent446eecb85275352dcd4c3e2c6054461da2a51ca7 (diff)
Set width on stage columns; min width on table with scroll on mobile; add avatar to commit column
Diffstat (limited to 'app/views/projects/ci')
-rw-r--r--app/views/projects/ci/pipelines/_pipeline.html.haml10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/views/projects/ci/pipelines/_pipeline.html.haml b/app/views/projects/ci/pipelines/_pipeline.html.haml
index daeaf7f99eb..b8712b5dc45 100644
--- a/app/views/projects/ci/pipelines/_pipeline.html.haml
+++ b/app/views/projects/ci/pipelines/_pipeline.html.haml
@@ -10,9 +10,8 @@
%span ##{pipeline.id}
- if pipeline.ref
= link_to pipeline.ref, namespace_project_commits_path(@project.namespace, @project, pipeline.ref), class: "monospace branch-name"
- &middot;
+ = icon("code-fork")
= link_to pipeline.short_sha, namespace_project_commit_path(@project.namespace, @project, pipeline.sha), class: "commit-id monospace"
- &nbsp;
- if pipeline.tag?
%span.label.label-primary tag
- elsif pipeline.latest?
@@ -26,6 +25,7 @@
%p.commit-title
- if commit = pipeline.commit
+ = commit_author_avatar(commit, size: 20)
= link_to_gfm truncate(commit.title, length: 60), namespace_project_commit_path(@project.namespace, @project, commit.id), class: "commit-row-message"
- else
Cant find HEAD commit for this branch
@@ -46,14 +46,14 @@
%td
- if pipeline.started_at && pipeline.finished_at
%p.duration
- = icon("clock-o")
+ = icon("clock-o")
= duration_in_numbers(pipeline.finished_at, pipeline.started_at)
- if pipeline.finished_at
- %p.duration
+ %p.finished-at
= icon("calendar")
#{time_ago_with_tooltip(pipeline.finished_at)}
- %td
+ %td.pipeline-actions
.controls.hidden-xs.pull-right
- artifacts = pipeline.builds.latest.select { |b| b.artifacts? }
- if artifacts.present?