Commit 80c3cbfb authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Make sure ci status colors are same and respected on most pages

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent 02b585e9
.ci-status { body .content {
.ci-status {
padding: 2px 7px; padding: 2px 7px;
margin-right: 5px; margin-right: 5px;
border: 1px solid #eee; border: 1px solid #eee;
...@@ -24,6 +25,8 @@ ...@@ -24,6 +25,8 @@
border-color: $gl-info; border-color: $gl-info;
} }
&.ci-canceled,
&.ci-skipped,
&.ci-disabled { &.ci-disabled {
color: $gl-gray; color: $gl-gray;
border-color: $gl-gray; border-color: $gl-gray;
...@@ -34,21 +37,22 @@ ...@@ -34,21 +37,22 @@
color: $gl-warning; color: $gl-warning;
border-color: $gl-warning; border-color: $gl-warning;
} }
} }
.ci-status-icon-success { .ci-status-icon-success {
color: $gl-text-green !important; color: $gl-success;
} }
.ci-status-icon-failed { .ci-status-icon-failed {
color: $gl-text-red !important; color: $gl-danger;
} }
.ci-status-icon-running, .ci-status-icon-running,
.ci-status-icon-pending { .ci-status-icon-pending {
color: $gl-text-orange !important; color: $gl-warning;
} }
.ci-status-icon-canceled, .ci-status-icon-canceled,
.ci-status-icon-disabled, .ci-status-icon-disabled,
.ci-status-icon-not-found, .ci-status-icon-not-found,
.ci-status-icon-skipped { .ci-status-icon-skipped {
color: $gl-gray !important; color: $gl-gray;
}
} }
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