Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2016-03-25 17:31:19 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2016-03-25 17:31:19 +0300
commitb5c9637c92864d81b4d7557f8e3b729de259a58a (patch)
tree0b51dd8a56fbf76f7c70ac2e69028010ce9495f9 /app
parent63c8a05bf7f18ac4093ece1f08b4b5fd8dba5fac (diff)
Make sure CI status icons have same color across all app
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app')
-rw-r--r--app/assets/stylesheets/pages/status.scss8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/assets/stylesheets/pages/status.scss b/app/assets/stylesheets/pages/status.scss
index 6f777d11641..aed898b34af 100644
--- a/app/assets/stylesheets/pages/status.scss
+++ b/app/assets/stylesheets/pages/status.scss
@@ -37,18 +37,18 @@
}
.ci-status-icon-success {
- @extend .cgreen;
+ color: $gl-text-green !important;
}
.ci-status-icon-failed {
- @extend .cred;
+ color: $gl-text-red !important;
}
.ci-status-icon-running,
.ci-status-icon-pending {
- // These are standard text color
+ color: $gl-text-orange !important;
}
.ci-status-icon-canceled,
.ci-status-icon-disabled,
.ci-status-icon-not-found,
.ci-status-icon-skipped {
- @extend .cgray;
+ color: $gl-gray !important;
}