Commit 8ed105bf authored by Annabel Dunstone's avatar Annabel Dunstone

Fix label alignment bug; re-add build-link

parent c57471dd
...@@ -81,9 +81,12 @@ ...@@ -81,9 +81,12 @@
} }
.label-container { .label-container {
.label {
margin-top: 5px; margin-top: 5px;
} }
} }
}
.duration, .duration,
.finished-at { .finished-at {
......
...@@ -7,9 +7,9 @@ ...@@ -7,9 +7,9 @@
.branch-commit .branch-commit
- if can?(current_user, :read_build, build.project) - if can?(current_user, :read_build, build.project)
= link_to namespace_project_build_url(build.project.namespace, build.project, build) do = link_to namespace_project_build_url(build.project.namespace, build.project, build) do
%span ##{build.id} %span.build-link ##{build.id}
- else - else
%span ##{build.id} %span.build-link ##{build.id}
- if build.stuck? - if build.stuck?
%i.fa.fa-warning.text-warning %i.fa.fa-warning.text-warning
...@@ -22,8 +22,8 @@ ...@@ -22,8 +22,8 @@
= link_to build.short_sha, namespace_project_commit_path(build.project.namespace, build.project, build.sha), class: "monospace commit-id" = link_to build.short_sha, namespace_project_commit_path(build.project.namespace, build.project, build.sha), class: "monospace commit-id"
- if build.tags.any?
.label-container .label-container
- if build.tags.any?
- build.tags.each do |tag| - build.tags.each do |tag|
%span.label.label-primary %span.label.label-primary
= tag = tag
......
...@@ -28,8 +28,8 @@ ...@@ -28,8 +28,8 @@
- if defined?(commit_sha) && commit_sha - if defined?(commit_sha) && commit_sha
= link_to build.short_sha, namespace_project_commit_path(build.project.namespace, build.project, build.sha), class: "commit-id monospace" = link_to build.short_sha, namespace_project_commit_path(build.project.namespace, build.project, build.sha), class: "commit-id monospace"
- if build.tags.any?
.label-container .label-container
- if build.tags.any?
- build.tags.each do |tag| - build.tags.each do |tag|
%span.label.label-primary %span.label.label-primary
= tag = tag
......
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