Merge branch '36709-gpg-status' into 'master'
Fix alignment of gpg status Closes #36709 See merge request !13772
This commit is contained in:
commit
49b9968dc0
3 changed files with 7 additions and 6 deletions
|
@ -286,6 +286,9 @@
|
|||
|
||||
|
||||
.gpg-status-box {
|
||||
padding: 2px 10px;
|
||||
margin-right: $gl-padding;
|
||||
|
||||
&:empty {
|
||||
display: none;
|
||||
}
|
||||
|
@ -314,7 +317,6 @@
|
|||
&.valid {
|
||||
svg {
|
||||
border: 1px solid $brand-success;
|
||||
|
||||
fill: $brand-success;
|
||||
}
|
||||
}
|
||||
|
@ -322,7 +324,6 @@
|
|||
&.invalid {
|
||||
svg {
|
||||
border: 1px solid $common-gray-light;
|
||||
|
||||
fill: $common-gray-light;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -114,7 +114,7 @@ module CommitsHelper
|
|||
end
|
||||
|
||||
def commit_signature_badge_classes(additional_classes)
|
||||
%w(btn status-box gpg-status-box) + Array(additional_classes)
|
||||
%w(btn gpg-status-box) + Array(additional_classes)
|
||||
end
|
||||
|
||||
protected
|
||||
|
|
|
@ -37,14 +37,14 @@
|
|||
|
||||
|
||||
.commit-actions.hidden-xs
|
||||
- if commit.status(ref)
|
||||
= render_commit_status(commit, ref: ref)
|
||||
|
||||
- if request.xhr?
|
||||
= render partial: 'projects/commit/signature', object: commit.signature
|
||||
- else
|
||||
= render partial: 'projects/commit/ajax_signature', locals: { commit: commit }
|
||||
|
||||
- if commit.status(ref)
|
||||
= render_commit_status(commit, ref: ref)
|
||||
|
||||
= link_to commit.short_id, project_commit_path(project, commit), class: "commit-sha btn btn-transparent"
|
||||
= clipboard_button(text: commit.id, title: _("Copy commit SHA to clipboard"))
|
||||
= link_to_browse_code(project, commit)
|
||||
|
|
Loading…
Reference in a new issue