Trigger updates
This commit is contained in:
parent
b24c57d03d
commit
094828d01d
4 changed files with 12 additions and 6 deletions
|
@ -26,6 +26,14 @@
|
|||
.pipeline-id {
|
||||
color: $black;
|
||||
}
|
||||
|
||||
.branch-commit {
|
||||
width: 30%;
|
||||
|
||||
.branch-name {
|
||||
width: 195px
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -86,7 +94,6 @@
|
|||
}
|
||||
|
||||
.branch-commit {
|
||||
width: 30%;
|
||||
|
||||
.branch-name {
|
||||
font-weight: bold;
|
||||
|
@ -112,7 +119,6 @@
|
|||
|
||||
.commit-id {
|
||||
color: $gl-link-color;
|
||||
margin-right: 8px;
|
||||
}
|
||||
|
||||
.commit-title {
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
= link_to build.ref, namespace_project_commits_path(build.project.namespace, build.project, build.ref), class: "monospace branch-name"
|
||||
- else
|
||||
.light none
|
||||
.icon-container
|
||||
.icon-container.commit-icon
|
||||
= custom_icon("icon_commit")
|
||||
|
||||
- if commit_sha
|
||||
|
|
|
@ -14,8 +14,8 @@
|
|||
= link_to namespace_project_pipeline_path(pipeline.project.namespace, pipeline.project, pipeline.id) do
|
||||
%span.pipeline-id ##{pipeline.id}
|
||||
%span by
|
||||
- if commit = pipeline.commit
|
||||
= author_avatar(commit, size: 20)
|
||||
- if pipeline.user
|
||||
= user_avatar(user: pipeline.user, size: 20)
|
||||
- if pipeline.latest?
|
||||
%span.label.label-success.has-tooltip{ title: 'Latest build for this branch' } latest
|
||||
- if pipeline.triggered?
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
.icon-container
|
||||
= deployment.tag? ? icon('tag') : icon('code-fork')
|
||||
= link_to deployment.ref, namespace_project_commits_path(@project.namespace, @project, deployment.ref), class: "monospace branch-name"
|
||||
.icon-container
|
||||
.icon-container.commit-icon
|
||||
= custom_icon("icon_commit")
|
||||
= link_to deployment.short_sha, namespace_project_commit_path(@project.namespace, @project, deployment.sha), class: "commit-id monospace"
|
||||
|
||||
|
|
Loading…
Reference in a new issue