提交 7fc69a7e 编写于 作者: A Alexis Reigel

linkify the whole user badge part, not only avatar

上级 ee7468e7
......@@ -314,6 +314,11 @@
}
}
.gpg-badge-popover-user-link {
text-decoration: none;
color: $gl-text-color;
}
.gpg-badge-popover-avatar {
float: left;
margin-bottom: $gl-padding;
......
......@@ -228,23 +228,25 @@ module CommitsHelper
end
content = capture do
concat(
content_tag(:div, class: 'gpg-badge-popover-avatar') do
user_avatar(user: signature.gpg_key.user, size: 32)
end
)
concat(
content_tag(:div, class: 'gpg-badge-popover-username') do
signature.gpg_key.user.username
end
)
concat(
content_tag(:div) do
signature.gpg_key.user.name
end
)
link_to user_path(signature.gpg_key.user), class: 'gpg-badge-popover-user-link' do
concat(
content_tag(:div, class: 'gpg-badge-popover-avatar') do
user_avatar_without_link(user: signature.gpg_key.user, size: 32)
end
)
concat(
content_tag(:div, class: 'gpg-badge-popover-username') do
signature.gpg_key.user.username
end
)
concat(
content_tag(:div) do
signature.gpg_key.user.name
end
)
end
end
commit_gpg_signature_badge_with(signature, label: 'Verified', title: title, content: content, css_classes: ['valid'])
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册