Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
8ccce9d5
Commit
8ccce9d5
authored
Jul 06, 2017
by
Alexis Reigel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use existing status-box css class for gpg badge
parent
3729c3a7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
15 deletions
+17
-15
app/assets/stylesheets/pages/commits.scss
app/assets/stylesheets/pages/commits.scss
+9
-7
app/views/projects/commit/_invalid_signature_badge.html.haml
app/views/projects/commit/_invalid_signature_badge.html.haml
+1
-1
app/views/projects/commit/_signature_badge.html.haml
app/views/projects/commit/_signature_badge.html.haml
+3
-3
app/views/projects/commit/_valid_signature_badge.html.haml
app/views/projects/commit/_valid_signature_badge.html.haml
+4
-4
No files found.
app/assets/stylesheets/pages/commits.scss
View file @
8ccce9d5
...
...
@@ -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
;
}
app/views/projects/commit/_invalid_signature_badge.html.haml
View file @
8ccce9d5
-
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'
]
}
...
...
app/views/projects/commit/_signature_badge.html.haml
View file @
8ccce9d5
-
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
app/views/projects/commit/_valid_signature_badge.html.haml
View file @
8ccce9d5
-
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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment