Fix alignment issues after a fix on titles weight
This commit is contained in:
parent
b6ae2def2c
commit
d00725a175
4 changed files with 6 additions and 7 deletions
|
@ -2,7 +2,7 @@
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.commit-row-title .commit-title {
|
.commit-row-title .title {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
.tag-name{
|
.tag-name {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
= cache(cache_key) do
|
= cache(cache_key) do
|
||||||
%li.commit.js-toggle-container{ id: "commit-#{commit.short_id}" }
|
%li.commit.js-toggle-container{ id: "commit-#{commit.short_id}" }
|
||||||
.commit-row-title
|
.commit-row-title
|
||||||
.commit-title.str-truncated
|
.title.str-truncated
|
||||||
= link_to_gfm commit.title, namespace_project_commit_path(project.namespace, project, commit.id), class: "commit-row-message"
|
= link_to_gfm commit.title, namespace_project_commit_path(project.namespace, project, commit.id), class: "commit-row-message"
|
||||||
- if commit.description?
|
- if commit.description?
|
||||||
%a.text-expander.js-toggle-button ...
|
%a.text-expander.js-toggle-button ...
|
||||||
|
|
|
@ -2,10 +2,9 @@
|
||||||
- release = @releases.find { |release| release.tag == tag.name }
|
- release = @releases.find { |release| release.tag == tag.name }
|
||||||
%li
|
%li
|
||||||
%div
|
%div
|
||||||
= link_to namespace_project_tag_path(@project.namespace, @project, tag.name) do
|
= link_to namespace_project_tag_path(@project.namespace, @project, tag.name), class: 'tag-name' do
|
||||||
.tag-name
|
= icon('tag')
|
||||||
= icon('tag')
|
= tag.name
|
||||||
= tag.name
|
|
||||||
- if tag.message.present?
|
- if tag.message.present?
|
||||||
|
|
||||||
= strip_gpg_signature(tag.message)
|
= strip_gpg_signature(tag.message)
|
||||||
|
|
Loading…
Reference in a new issue