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;
|
||||
}
|
||||
|
||||
.commit-row-title .commit-title {
|
||||
.commit-row-title .title {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
.tag-name{
|
||||
.tag-name {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
= cache(cache_key) do
|
||||
%li.commit.js-toggle-container{ id: "commit-#{commit.short_id}" }
|
||||
.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"
|
||||
- if commit.description?
|
||||
%a.text-expander.js-toggle-button ...
|
||||
|
|
|
@ -2,10 +2,9 @@
|
|||
- release = @releases.find { |release| release.tag == tag.name }
|
||||
%li
|
||||
%div
|
||||
= link_to namespace_project_tag_path(@project.namespace, @project, tag.name) do
|
||||
.tag-name
|
||||
= icon('tag')
|
||||
= tag.name
|
||||
= link_to namespace_project_tag_path(@project.namespace, @project, tag.name), class: 'tag-name' do
|
||||
= icon('tag')
|
||||
= tag.name
|
||||
- if tag.message.present?
|
||||
|
||||
= strip_gpg_signature(tag.message)
|
||||
|
|
Loading…
Reference in a new issue