frontend: fix gitlab icon spacing

fixes: #1888
This commit is contained in:
Lucas Serven 2016-09-28 14:06:10 -07:00
parent 0d805905dc
commit 10a44a9224
4 changed files with 8 additions and 8 deletions

View file

@ -21,7 +21,7 @@ EXTERNAL_JS = [
] ]
EXTERNAL_CSS = [ EXTERNAL_CSS = [
'netdna.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.css', 'netdna.bootstrapcdn.com/font-awesome/4.6.0/css/font-awesome.css',
'netdna.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css', 'netdna.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css',
'fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700', 'fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700',
's3.amazonaws.com/cdn.core-os.net/icons/core-icons.css', 's3.amazonaws.com/cdn.core-os.net/icons/core-icons.css',
@ -30,10 +30,10 @@ EXTERNAL_CSS = [
] ]
EXTERNAL_FONTS = [ EXTERNAL_FONTS = [
'netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.eot?v=4.2.0', 'netdna.bootstrapcdn.com/font-awesome/4.6.0/fonts/fontawesome-webfont.eot?v=4.6.0',
'netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.woff?v=4.2.0', 'netdna.bootstrapcdn.com/font-awesome/4.6.0/fonts/fontawesome-webfont.woff?v=4.6.0',
'netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.ttf?v=4.2.0', 'netdna.bootstrapcdn.com/font-awesome/4.6.0/fonts/fontawesome-webfont.ttf?v=4.6.0',
'netdna.bootstrapcdn.com/font-awesome/4.2.0/fonts/fontawesome-webfont.svg?v=4.2.0', 'netdna.bootstrapcdn.com/font-awesome/4.6.0/fonts/fontawesome-webfont.svg?v=4.6.0',
'netdna.bootstrapcdn.com/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.eot', 'netdna.bootstrapcdn.com/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.eot',
'netdna.bootstrapcdn.com/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.woff2', 'netdna.bootstrapcdn.com/bootstrap/3.3.2/fonts/glyphicons-halflings-regular.woff2',

View file

@ -969,7 +969,7 @@
<!-- GitLab Trigger --> <!-- GitLab Trigger -->
<div class="co-panel" ng-if="config.FEATURE_BUILD_SUPPORT" style="margin-top: 20px;"> <div class="co-panel" ng-if="config.FEATURE_BUILD_SUPPORT" style="margin-top: 20px;">
<div class="co-panel-heading"> <div class="co-panel-heading">
<i class="fa ci-gitlab"></i> GitLab Build Triggers <i class="fa fa-gitlab"></i> GitLab Build Triggers
</div> </div>
<div class="co-panel-body"> <div class="co-panel-body">
<div class="description"> <div class="description">

View file

@ -1,5 +1,5 @@
<span> <span>
<i class="fa ci-gitlab fa-lg" style="margin-right: 6px" data-title="GitLab" bs-tooltip="tooltip.title"></i> <i class="fa fa-gitlab fa-lg" style="margin-right: 6px" data-title="GitLab" bs-tooltip="tooltip.title"></i>
Push to GitLab repository Push to GitLab repository
<a ng-href="{{ trigger.repository_url }}" target="_new"> <a ng-href="{{ trigger.repository_url }}" target="_new">
{{ trigger.config.build_source }} {{ trigger.config.build_source }}

View file

@ -90,7 +90,7 @@ angular.module('quay').factory('TriggerService', ['UtilService', '$sanitize', 'K
'is_enabled': function() { 'is_enabled': function() {
return Features.GITLAB_BUILD; return Features.GITLAB_BUILD;
}, },
'icon': 'ci-gitlab', 'icon': 'fa-gitlab',
'title': function() { return 'GitLab Repository Push'; }, 'title': function() { return 'GitLab Repository Push'; },
'supports_full_directory_listing': false, 'supports_full_directory_listing': false,
'templates': { 'templates': {