Fix icon alignment; reduce side padding on table cells; add tag and fork icon for pipeline ref
This commit is contained in:
parent
7968484dfa
commit
dbd581112d
2 changed files with 27 additions and 15 deletions
|
@ -1,7 +1,7 @@
|
||||||
.pipelines {
|
.pipelines {
|
||||||
.stage {
|
.stage {
|
||||||
max-width: 80px;
|
max-width: 90px;
|
||||||
width: 80px;
|
width: 90px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
@ -30,13 +30,17 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.table.builds {
|
.table.builds {
|
||||||
min-width: 1100px;
|
min-width: 1200px;
|
||||||
|
|
||||||
tr {
|
tr {
|
||||||
th {
|
th {
|
||||||
padding: 16px;
|
padding: 16px 8px;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
td {
|
||||||
|
padding: 10px 8px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tbody {
|
tbody {
|
||||||
|
@ -46,9 +50,8 @@
|
||||||
.branch-commit {
|
.branch-commit {
|
||||||
|
|
||||||
.branch-name {
|
.branch-name {
|
||||||
margin-left: 8px;
|
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
max-width: 180px;
|
max-width: 150px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
@ -57,10 +60,15 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
margin: 0 6px;
|
|
||||||
height: 14px;
|
height: 14px;
|
||||||
width: auto;
|
width: auto;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
fill: $table-text-gray;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fa {
|
||||||
|
font-size: 12px;
|
||||||
|
color: $table-text-gray;
|
||||||
}
|
}
|
||||||
|
|
||||||
.commit-id {
|
.commit-id {
|
||||||
|
@ -88,6 +96,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.icon-container {
|
||||||
|
display: inline-block;
|
||||||
|
text-align: center;
|
||||||
|
width: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
.duration,
|
.duration,
|
||||||
.finished-at {
|
.finished-at {
|
||||||
color: $table-text-gray;
|
color: $table-text-gray;
|
||||||
|
@ -98,15 +112,10 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
height: 12px;
|
width: 12px;
|
||||||
width: auto;
|
height: auto;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fa,
|
|
||||||
svg {
|
|
||||||
margin-right: 5px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.pipeline-actions {
|
.pipeline-actions {
|
||||||
|
|
|
@ -10,8 +10,11 @@
|
||||||
= link_to namespace_project_pipeline_path(@project.namespace, @project, pipeline.id) do
|
= link_to namespace_project_pipeline_path(@project.namespace, @project, pipeline.id) do
|
||||||
%span ##{pipeline.id}
|
%span ##{pipeline.id}
|
||||||
- if pipeline.ref
|
- if pipeline.ref
|
||||||
|
.icon-container
|
||||||
|
= pipeline.tag? ? icon('tag') : icon('code-fork')
|
||||||
= link_to pipeline.ref, namespace_project_commits_path(@project.namespace, @project, pipeline.ref), class: "monospace branch-name"
|
= link_to pipeline.ref, namespace_project_commits_path(@project.namespace, @project, pipeline.ref), class: "monospace branch-name"
|
||||||
= custom_icon("icon_commit")
|
.icon-container
|
||||||
|
= custom_icon("icon_commit")
|
||||||
= link_to pipeline.short_sha, namespace_project_commit_path(@project.namespace, @project, pipeline.sha), class: "commit-id monospace"
|
= link_to pipeline.short_sha, namespace_project_commit_path(@project.namespace, @project, pipeline.sha), class: "commit-id monospace"
|
||||||
- if pipeline.tag?
|
- if pipeline.tag?
|
||||||
%span.label.label-primary tag
|
%span.label.label-primary tag
|
||||||
|
|
Loading…
Reference in a new issue