Commit 60e82ef8 authored by Robert Speicher's avatar Robert Speicher Committed by Robert Speicher

Merge branch 'fix-css-for-runner' into 'master'

Fix CSS class for runner status

Fixes #3117 

See merge request !1665
parent d8a9acde
...@@ -3,6 +3,7 @@ Please view this file on the master branch, on stable branches it's out of date. ...@@ -3,6 +3,7 @@ Please view this file on the master branch, on stable branches it's out of date.
v 8.1.0 v 8.1.0
- Ensure MySQL CI limits DB migrations occur after the fields have been created (Stan Hu) - Ensure MySQL CI limits DB migrations occur after the fields have been created (Stan Hu)
- Redirect to a default path if HTTP_REFERER is not set (Stan Hu) - Redirect to a default path if HTTP_REFERER is not set (Stan Hu)
- Fix CSS for runner status
- Send an email to admin email when a user is reported for spam (Jonathan Rochkind) - Send an email to admin email when a user is reported for spam (Jonathan Rochkind)
- Show notifications button when user is member of group rather than project (Grzegorz Bizon) - Show notifications button when user is member of group rather than project (Grzegorz Bizon)
- Fix bug preventing mentioned issued from being closed when MR is merged using fast-forward merge. - Fix bug preventing mentioned issued from being closed when MR is merged using fast-forward merge.
......
.ci-body { .runner-state {
.runner-state {
padding: 6px 12px; padding: 6px 12px;
margin-right: 10px; margin-right: 10px;
color: #FFF; color: #FFF;
...@@ -10,21 +9,21 @@ ...@@ -10,21 +9,21 @@
&.runner-state-specific { &.runner-state-specific {
background: #3498db; background: #3498db;
} }
} }
.runner-status-online { .runner-status-online {
color: green; color: green;
} }
.runner-status-offline { .runner-status-offline {
color: gray; color: gray;
} }
.runner-status-paused { .runner-status-paused {
color: red; color: red;
} }
.runner { .runner {
.btn { .btn {
padding: 1px 6px; padding: 1px 6px;
} }
...@@ -32,5 +31,4 @@ ...@@ -32,5 +31,4 @@
h4 { h4 {
font-weight: normal; font-weight: normal;
} }
}
} }
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