Skip to content
Snippets Groups Projects

GPG signed commits

Merged Alexis Reigel requested to merge siemens/gitlab-ce:feature/gpg-signed-commits into master
Compare and Show latest version
35 files
+ 437
196
Compare changes
  • Side-by-side
  • Inline
Files
35
@@ -280,55 +280,62 @@
@@ -280,55 +280,62 @@
}
}
}
}
.gpg-badge {
.gpg-status-box {
&.valid {
&.valid {
color: $brand-success;
color: $brand-success;
 
border: 1px solid $brand-success;
}
}
&.invalid {
&.invalid {
color: $gray;
color: $gray;
 
border: 1px solid $common-gray-light;
}
}
}
}
.gpg-badge-popover-title {
.gpg-popover-status {
 
display: flex;
 
align-items: center;
font-weight: normal;
font-weight: normal;
 
line-height: 1.5;
}
}
.gpg-badge-popover-icon {
.gpg-popover-icon {
float: left;
// same margin as .s32.avatar
font-size: 35px;
line-height: 35px;
width: 32px;
margin-right: $btn-side-margin;
margin-right: $btn-side-margin;
&.valid {
&.valid {
color: $brand-success;
svg {
}
border: 1px solid $brand-success;
&.invalid {
fill: $brand-success;
color: $gray;
}
}
}
}
.gpg-badge-popover-user-link {
&.invalid {
text-decoration: none;
svg {
color: $gl-text-color;
border: 1px solid $common-gray-light;
}
.gpg-badge-popover-avatar {
fill: $common-gray-light;
float: left;
}
margin-bottom: $gl-padding;
}
.avatar {
svg {
margin-left: 0;
width: 32px;
 
height: 32px;
 
border-radius: 50%;
 
vertical-align: middle;
}
}
}
}
.gpg-badge-popover-username {
.gpg-popover-user-link {
font-weight: bold;
display: flex;
 
align-items: center;
 
margin-bottom: $gl-padding / 2;
 
text-decoration: none;
 
color: $gl-text-color;
}
}
.commit .gpg-badge-popover-help-link {
.commit .gpg-popover-help-link {
display: block;
display: block;
color: $link-color;
color: $link-color;
}
}
Loading