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-12 23:58:26 +0300
committerAnnabel Dunstone <annabel.dunstone@gmail.com>2016-07-13 00:34:00 +0300
commit3404e10fd003efdc44d9689eec120babd0513009 (patch)
tree5aca93ce804f9db5c12c2aa2006f436cd622f729 /app/helpers/ci_status_helper.rb
parent1005262c795c0ade9694c6e99d36a864e2bd38bc (diff)
Change running status color to blue; update icon to spinner
Diffstat (limited to 'app/helpers/ci_status_helper.rb')
-rw-r--r--app/helpers/ci_status_helper.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/helpers/ci_status_helper.rb b/app/helpers/ci_status_helper.rb
index 8e4ae1e6aec..e6c99c9959e 100644
--- a/app/helpers/ci_status_helper.rb
+++ b/app/helpers/ci_status_helper.rb
@@ -29,8 +29,10 @@ module CiStatusHelper
'check'
when 'failed'
'close'
- when 'running', 'pending'
+ when 'pending'
'clock-o'
+ when 'running'
+ 'spinner'
else
'circle'
end