Commit d00725a1 authored by Rémy Coutable's avatar Rémy Coutable

Fix alignment issues after a fix on titles weight

parent b6ae2def
......@@ -2,7 +2,7 @@
display: block;
}
.commit-row-title .commit-title {
.commit-row-title .title {
font-weight: 600;
}
......
.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)
......
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