Commit 0bb2e946 authored by Robert Speicher's avatar Robert Speicher

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

Fix CSS class for runner status

Fixes #3117 

See merge request !1665
parents ae9f81a9 337b6632
...@@ -13,6 +13,7 @@ v 8.1.0 ...@@ -13,6 +13,7 @@ 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)
- Fix duplicate repositories in GitHub import page (Stan Hu) - Fix duplicate repositories in GitHub import page (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;
&.runner-state-shared { &.runner-state-shared {
background: #32b186; background: #32b186;
}
&.runner-state-specific {
background: #3498db;
}
} }
&.runner-state-specific {
.runner-status-online { background: #3498db;
color: green;
} }
}
.runner-status-offline { .runner-status-online {
color: gray; color: green;
} }
.runner-status-paused { .runner-status-offline {
color: red; color: gray;
} }
.runner-status-paused {
color: red;
}
.runner { .runner {
.btn { .btn {
padding: 1px 6px; padding: 1px 6px;
} }
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