summaryrefslogtreecommitdiff
path: root/app/views/projects/tags/_tag.html.haml
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-01-15 11:10:55 +0100
committerRémy Coutable <remy@rymai.me>2016-01-15 11:10:55 +0100
commita69271374df0018b2bfa7cd96e183dedc903f36b (patch)
treecd07f7fb65fec1327b8d81bfddf7de77d8532cf6 /app/views/projects/tags/_tag.html.haml
parentd00725a17594bd4908d31397c6012b397ff1148d (diff)
downloadgitlab-ce-a69271374df0018b2bfa7cd96e183dedc903f36b.tar.gz
Streamline item titles to use a single class, and add back strong tags
Diffstat (limited to 'app/views/projects/tags/_tag.html.haml')
-rw-r--r--app/views/projects/tags/_tag.html.haml7
1 files changed, 4 insertions, 3 deletions
diff --git a/app/views/projects/tags/_tag.html.haml b/app/views/projects/tags/_tag.html.haml
index 94c75de2fdb..0010bda83fc 100644
--- a/app/views/projects/tags/_tag.html.haml
+++ b/app/views/projects/tags/_tag.html.haml
@@ -2,9 +2,10 @@
- release = @releases.find { |release| release.tag == tag.name }
%li
%div
- = link_to namespace_project_tag_path(@project.namespace, @project, tag.name), class: 'tag-name' do
- = icon('tag')
- = tag.name
+ = link_to namespace_project_tag_path(@project.namespace, @project, tag.name) do
+ %strong.item-title
+ = icon('tag')
+ = tag.name
- if tag.message.present?
&nbsp;
= strip_gpg_signature(tag.message)