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