use existing status-box css class for gpg badge
This commit is contained in:
parent
3729c3a7c7
commit
8ccce9d545
4 changed files with 17 additions and 15 deletions
|
@ -284,22 +284,24 @@
|
|||
}
|
||||
}
|
||||
|
||||
.gpg-badge {
|
||||
.gpg-status-box {
|
||||
&.valid {
|
||||
color: $brand-success;
|
||||
border: 1px solid $brand-success;
|
||||
}
|
||||
|
||||
&.invalid {
|
||||
color: $gray;
|
||||
border: 1px solid $gray;
|
||||
}
|
||||
}
|
||||
|
||||
.gpg-badge-popover-title {
|
||||
.gpg-popover-title {
|
||||
display: inline;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.gpg-badge-popover-icon {
|
||||
.gpg-popover-icon {
|
||||
float: left;
|
||||
font-size: 35px;
|
||||
line-height: 35px;
|
||||
|
@ -315,12 +317,12 @@
|
|||
}
|
||||
}
|
||||
|
||||
.gpg-badge-popover-user-link {
|
||||
.gpg-popover-user-link {
|
||||
text-decoration: none;
|
||||
color: $gl-text-color;
|
||||
}
|
||||
|
||||
.gpg-badge-popover-avatar {
|
||||
.gpg-popover-avatar {
|
||||
float: left;
|
||||
margin-bottom: $gl-padding;
|
||||
|
||||
|
@ -329,11 +331,11 @@
|
|||
}
|
||||
}
|
||||
|
||||
.gpg-badge-popover-username {
|
||||
.gpg-popover-username {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.commit .gpg-badge-popover-help-link {
|
||||
.commit .gpg-popover-help-link {
|
||||
display: block;
|
||||
color: $link-color;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
- title = capture do
|
||||
%i{ class: 'fa fa-question-circle gpg-badge-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.
|
||||
|
||||
- locals = { signature: signature, title: title, label: 'Unverified', css_classes: ['invalid'] }
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
- css_classes = %w(btn btn-xs gpg-badge) + css_classes
|
||||
- css_classes = %w(btn status-box gpg-status-box) + css_classes
|
||||
|
||||
- title = capture do
|
||||
.gpg-badge-popover-title
|
||||
.gpg-popover-title
|
||||
= title
|
||||
|
||||
- content = capture do
|
||||
|
@ -11,7 +11,7 @@
|
|||
GPG key ID:
|
||||
= signature.gpg_key_primary_keyid
|
||||
|
||||
= link_to('Learn about signing commits', help_page_path('workflow/gpg_signed_commits/index.md'), class: 'gpg-badge-popover-help-link')
|
||||
= link_to('Learn 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 } }
|
||||
= label
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
- title = capture do
|
||||
%i{ class: 'fa fa-check-circle gpg-badge-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.
|
||||
|
||||
- content = capture do
|
||||
- gpg_key = signature.gpg_key
|
||||
|
||||
= link_to user_path(gpg_key.user), class: 'gpg-badge-popover-user-link' do
|
||||
.gpg-badge-popover-avatar
|
||||
= link_to user_path(gpg_key.user), class: 'gpg-popover-user-link' do
|
||||
.gpg-popover-avatar
|
||||
= user_avatar_without_link(user: signature.gpg_key.user, size: 32)
|
||||
|
||||
.gpg-badge-popover-username
|
||||
.gpg-popover-username
|
||||
= gpg_key.user.username
|
||||
|
||||
%div= gpg_key.user.name
|
||||
|
|
Loading…
Reference in a new issue