summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-05-15 14:36:55 +0000
committerTimothy Andrew <mail@timothyandrew.net>2017-05-18 14:33:53 +0000
commitc94eb9e11275f2d77ce2e799299bbc03b5a1a83d (patch)
tree2a7622963cbd47ede6f2d40f7ed87e4325dcd05a
parent434c2517b18215e17d344e0a6b773178468e2b22 (diff)
downloadgitlab-ce-c94eb9e11275f2d77ce2e799299bbc03b5a1a83d.tar.gz
Merge branch '32184-retried-jobs' into 'master'
Use fa-refresh on retried jobs Closes #32184 See merge request !11337
-rw-r--r--app/assets/stylesheets/pages/builds.scss2
-rw-r--r--app/views/projects/builds/_sidebar.html.haml2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/stylesheets/pages/builds.scss b/app/assets/stylesheets/pages/builds.scss
index 724b4080ee0..14a62b6cbf0 100644
--- a/app/assets/stylesheets/pages/builds.scss
+++ b/app/assets/stylesheets/pages/builds.scss
@@ -378,7 +378,7 @@
background-color: $row-hover;
}
- .fa-spinner {
+ .fa-refresh {
font-size: 13px;
margin-left: 3px;
}
diff --git a/app/views/projects/builds/_sidebar.html.haml b/app/views/projects/builds/_sidebar.html.haml
index 43191fae9e6..26c892d0fd2 100644
--- a/app/views/projects/builds/_sidebar.html.haml
+++ b/app/views/projects/builds/_sidebar.html.haml
@@ -136,7 +136,7 @@
- else
= build.id
- if build.retried?
- %i.fa.fa-spinner.has-tooltip{ data: { container: 'body', placement: 'bottom' }, title: 'Job was retried' }
+ %i.fa.fa-refresh.has-tooltip{ data: { container: 'body', placement: 'bottom' }, title: 'Job was retried' }
:javascript
new Sidebar();