Commit 4c5d4a69 authored by Alexis Reigel's avatar Alexis Reigel

improve spacing / alignments in gpg popup

parent 8ccce9d5
...@@ -296,16 +296,16 @@ ...@@ -296,16 +296,16 @@
} }
} }
.gpg-popover-title { .gpg-popover-status {
display: inline; display: flex;
align-items: center;
font-weight: normal; font-weight: normal;
line-height: 1.5;
} }
.gpg-popover-icon { .gpg-popover-icon {
float: left;
font-size: 35px; font-size: 35px;
line-height: 35px; // same margin as .s32.avatar
width: 32px;
margin-right: $btn-side-margin; margin-right: $btn-side-margin;
&.valid { &.valid {
...@@ -318,23 +318,13 @@ ...@@ -318,23 +318,13 @@
} }
.gpg-popover-user-link { .gpg-popover-user-link {
display: flex;
align-items: center;
margin-bottom: $gl-padding / 2;
text-decoration: none; text-decoration: none;
color: $gl-text-color; color: $gl-text-color;
} }
.gpg-popover-avatar {
float: left;
margin-bottom: $gl-padding;
.avatar {
margin-left: 0;
}
}
.gpg-popover-username {
font-weight: bold;
}
.commit .gpg-popover-help-link { .commit .gpg-popover-help-link {
display: block; display: block;
color: $link-color; color: $link-color;
......
- title = capture do - title = capture do
%i{ class: 'fa fa-question-circle gpg-popover-icon invalid', 'aria-hidden' => 'true' } %i{ class: 'fa fa-question-circle gpg-popover-icon invalid', 'aria-hidden' => 'true' }
This commit was signed with an unverified signature. %div
This commit was signed with an <strong>unverified</strong> signature.
- locals = { signature: signature, title: title, label: 'Unverified', css_classes: ['invalid'] } - locals = { signature: signature, title: title, label: 'Unverified', css_classes: ['invalid'] }
......
- css_classes = %w(btn status-box gpg-status-box) + css_classes - css_classes = %w(btn status-box gpg-status-box) + css_classes
- title = capture do - title = capture do
.gpg-popover-title .gpg-popover-status
= title = title
- content = capture do - content = capture do
.clearfix .clearfix
= content = content
GPG key ID: GPG Key ID:
= signature.gpg_key_primary_keyid = signature.gpg_key_primary_keyid
= link_to('Learn about signing commits', help_page_path('workflow/gpg_signed_commits/index.md'), class: 'gpg-popover-help-link') = link_to('Learn more about signing commits', help_page_path('workflow/gpg_signed_commits/index.md'), class: 'gpg-popover-help-link')
%button{ class: css_classes, data: { toggle: 'popover', html: 'true', placement: 'auto bottom', title: title, content: content } } %button{ class: css_classes, data: { toggle: 'popover', html: 'true', placement: 'auto top', title: title, content: content } }
= label = label
- title = capture do - title = capture do
%i{ class: 'fa fa-check-circle gpg-popover-icon valid', 'aria-hidden' => 'true' } %i{ class: 'fa fa-check-circle gpg-popover-icon valid', 'aria-hidden' => 'true' }
This commit was signed with a verified signature. %div
This commit was signed with a <strong>verified</strong> signature.
- content = capture do - content = capture do
- gpg_key = signature.gpg_key - gpg_key = signature.gpg_key
= link_to user_path(gpg_key.user), class: 'gpg-popover-user-link' do = link_to user_path(gpg_key.user), class: 'gpg-popover-user-link' do
.gpg-popover-avatar %div
= user_avatar_without_link(user: signature.gpg_key.user, size: 32) = user_avatar_without_link(user: signature.gpg_key.user, size: 32)
.gpg-popover-username %div
= gpg_key.user.username %strong= gpg_key.user.username
%div= gpg_key.user.name
%div= gpg_key.user.name
- locals = { signature: signature, title: title, content: content, label: 'Verified', css_classes: ['valid'] } - locals = { signature: signature, title: title, content: content, label: 'Verified', css_classes: ['valid'] }
......
...@@ -272,18 +272,18 @@ describe 'Commits' do ...@@ -272,18 +272,18 @@ describe 'Commits' do
sign_in(user) sign_in(user)
visit namespace_project_commits_path(project.namespace, project, :'signed-commits') visit namespace_project_commits_path(project.namespace, project, :'signed-commits')
click_on 'Unverified', match: :first
within '.popover' do
expect(page).to have_content 'This commit was signed with an unverified signature.'
expect(page).to have_content "GPG Key ID: #{GpgHelpers::User2.primary_keyid}"
end
click_on 'Verified' click_on 'Verified'
within '.popover' do within '.popover' do
expect(page).to have_content 'This commit was signed with a verified signature.' expect(page).to have_content 'This commit was signed with a verified signature.'
expect(page).to have_content 'nannie.bernhard' expect(page).to have_content 'nannie.bernhard'
expect(page).to have_content 'Nannie Bernhard' expect(page).to have_content 'Nannie Bernhard'
expect(page).to have_content "GPG key ID: #{GpgHelpers::User1.primary_keyid}" expect(page).to have_content "GPG Key ID: #{GpgHelpers::User1.primary_keyid}"
end
click_on 'Unverified', match: :first
within '.popover' do
expect(page).to have_content 'This commit was signed with an unverified signature.'
expect(page).to have_content "GPG key ID: #{GpgHelpers::User2.primary_keyid}"
end end
end end
end end
......
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