Commit 5b5cafe0 authored by Annabel Dunstone's avatar Annabel Dunstone

Add global style for running icon

parent 068f2f4f
...@@ -196,16 +196,6 @@ ...@@ -196,16 +196,6 @@
.merge-request-title { .merge-request-title {
margin-bottom: 2px; margin-bottom: 2px;
.ci-status-link {
svg {
height: 13px;
width: 13px;
position: relative;
top: 2px;
}
}
} }
} }
......
...@@ -49,6 +49,14 @@ ...@@ -49,6 +49,14 @@
.commit-link { .commit-link {
.ci-running {
svg {
top: 1px;
margin-right: 0;
}
}
a:hover { a:hover {
text-decoration: none; text-decoration: none;
} }
...@@ -123,7 +131,7 @@ ...@@ -123,7 +131,7 @@
right: 1px; right: 1px;
} }
} }
.stage-cell { .stage-cell {
svg { svg {
......
...@@ -536,13 +536,6 @@ pre.light-well { ...@@ -536,13 +536,6 @@ pre.light-well {
.ci-status { .ci-status {
margin-right: $gl-padding; margin-right: $gl-padding;
&.ci-running {
svg {
margin-right: 3px;
}
}
} }
.commit-row-message { .commit-row-message {
......
...@@ -41,14 +41,6 @@ ...@@ -41,14 +41,6 @@
color: $blue-normal; color: $blue-normal;
border-color: $blue-normal; border-color: $blue-normal;
} }
svg {
width: 13px;
height: 13px;
position: relative;
top: 1px;
margin-left: 3px;
}
} }
.ci-status-icon-success { .ci-status-icon-success {
...@@ -70,3 +62,18 @@ ...@@ -70,3 +62,18 @@
color: $gl-gray; color: $gl-gray;
} }
} }
.ci-running,
.ci-status-icon-running {
svg {
height: 13px;
width: 13px;
position: relative;
top: 2px;
margin: 0 3px;
}
&:hover {
text-decoration: none;
}
}
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
- stages_status = pipeline.statuses.latest.stages_status - stages_status = pipeline.statuses.latest.stages_status
- stages.each do |stage| - stages.each do |stage|
%td.stage-cell %td
- status = stages_status[stage] - status = stages_status[stage]
- tooltip = "#{stage.titleize}: #{status || 'not found'}" - tooltip = "#{stage.titleize}: #{status || 'not found'}"
- if status - if status
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment