Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone <annabel.dunstone@gmail.com>2016-07-15 18:26:15 +0300
committerAnnabel Dunstone <annabel.dunstone@gmail.com>2016-07-19 16:03:22 +0300
commitda55496b6fc3ef1c65c4369cabb89b874dbc79e6 (patch)
treeec35cf589ab98ab4fbb95516784e3ed0bf208f3c /app/helpers
parentad14c1bf85f716ed698e8802161de74f462a106c (diff)
Add new running icon; add a bunch of styles to get svg to match existing fa icons
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/ci_status_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/ci_status_helper.rb b/app/helpers/ci_status_helper.rb
index e6c99c9959e..5219a0ff47b 100644
--- a/app/helpers/ci_status_helper.rb
+++ b/app/helpers/ci_status_helper.rb
@@ -32,12 +32,12 @@ module CiStatusHelper
when 'pending'
'clock-o'
when 'running'
- 'spinner'
+ 'icon_running'
else
'circle'
end
- icon(icon_name + ' fw')
+ status == 'running' ? custom_icon(icon_name) : icon(icon_name + ' fw')
end
def render_commit_status(commit, tooltip_placement: 'auto left', cssclass: '')